165 lines
6.6 KiB
PHP
165 lines
6.6 KiB
PHP
<?php
|
|
|
|
namespace App\Helpers\Equipment;
|
|
|
|
use App\Models\Equipment\ServerModel;
|
|
|
|
class ServerHelper extends EquipmentHelper
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->setTitleField(field: ServerModel::TITLE);
|
|
}
|
|
public function getFieldForm(string $field, mixed $value, array $viewDatas, array $extras = []): string
|
|
{
|
|
switch ($field) {
|
|
case 'manufactur_at':
|
|
case 'format_at':
|
|
$extras['class'] = array_key_exists('class', $extras) ? $extras['class'] . ' calender' : 'calender';
|
|
$form = form_input($field, $value ?? "", $extras);
|
|
break;
|
|
case 'CPU':
|
|
case 'RAM':
|
|
case 'DISK':
|
|
case 'OS':
|
|
case 'SOFTWARE':
|
|
case 'DB':
|
|
$form = $this->form_dropdown_custom(
|
|
$field,
|
|
old($field) ?? (array_key_exists('entity', $viewDatas) ? $viewDatas['entity']->getServerPartEntity($field)->getPartInfoUID() : null),
|
|
$viewDatas,
|
|
$extras
|
|
);
|
|
$cntValue = old("{$field}_cnt");
|
|
if ($cntValue === null) {
|
|
$cntValue = isset($viewDatas['entity'])
|
|
? ($viewDatas['entity']->getServerPartEntity($field)?->getCnt() ?? 1)
|
|
: 1;
|
|
}
|
|
$form .= " " . form_dropdown(
|
|
"{$field}_cnt",
|
|
$viewDatas['serverpartinfo_cnt_range'],
|
|
$cntValue
|
|
) . "개";
|
|
if (in_array($field, ['DISK'])) {
|
|
$extraValue = old("{$field}_extra");
|
|
|
|
if ($extraValue === null) {
|
|
$extraValue = isset($viewDatas['entity'])
|
|
? ($viewDatas['entity']->getServerPartEntity($field)?->getExtra() ?? 1)
|
|
: 1;
|
|
}
|
|
|
|
$form .= form_dropdown(
|
|
"{$field}_extra",
|
|
$viewDatas['serverpartinfo_extra_options'],
|
|
$extraValue
|
|
);
|
|
}
|
|
break;
|
|
case 'ipinfo_uid':
|
|
case 'csinfo_uid':
|
|
$extras['class'] = array_key_exists('class', $extras) ? $extras['class'] . ' select-field' : 'select-field';
|
|
$form = $this->form_dropdown_custom($field, $value, $viewDatas, $extras);
|
|
break;
|
|
default:
|
|
$form = parent::getFieldForm($field, $value, $viewDatas, $extras);
|
|
break;
|
|
}
|
|
return $form;
|
|
}
|
|
public function getFieldView(string $field, mixed $value, array $viewDatas, array $extras = []): string|null
|
|
{
|
|
switch ($field) {
|
|
case 'manufactur_at':
|
|
case 'format_at':
|
|
$value = $value ? date("Y-m-d", strtotime($value)) : "";
|
|
break;
|
|
case 'serverpartinfo':
|
|
$value = "";
|
|
foreach (SERVER['PARTTYPES'] as $partType) {
|
|
$serverPartEntity = $viewDatas['entity']->getServerPartEntity($partType);
|
|
$value .= sprintf(
|
|
"<div>%s : %s%s %s</div>",
|
|
$serverPartEntity->getType(),
|
|
$serverPartEntity->getTitle(),
|
|
$serverPartEntity->getCnt() > 1 ? "*" . $serverPartEntity->getCnt() . "개" : "",
|
|
$serverPartEntity->getExtra() ?? ""
|
|
);
|
|
}
|
|
break;
|
|
case 'ipinfo_uid':
|
|
$value = "";
|
|
foreach ($viewDatas['entity']->getIPEntities() as $ipEntity) {
|
|
$value .= sprintf("<div>%s%s %s</div>", $ipEntity->getTitle(), $ipEntity->getAmount());
|
|
}
|
|
break;
|
|
case 'csinfo_uid':
|
|
$value = "";
|
|
foreach ($viewDatas['entity']->getCSEntities() as $csEntity) {
|
|
$value .= sprintf("<div>%s%s %s</div>", $csEntity->getTitle(), $csEntity->getAmount());
|
|
}
|
|
break;
|
|
default:
|
|
$value = parent::getFieldView($field, $value, $viewDatas, $extras);
|
|
break;
|
|
}
|
|
if (is_array($value)) {
|
|
echo __METHOD__ . "에서 오류: {$field}의 값이 Array형태입니다";
|
|
exit;
|
|
}
|
|
return $value;
|
|
}
|
|
public function getListFilter(string $field, mixed $value, array $viewDatas, array $extras = []): string
|
|
{
|
|
switch ($field) {
|
|
case 'csinfo_uid':
|
|
case 'ipinfo_uid':
|
|
$extras['class'] = array_key_exists('class', $extras) ? $extras['class'] . ' select-field' : 'select-field';
|
|
$form = parent::getListFilter($field, $value, $viewDatas, $extras);
|
|
break;
|
|
default:
|
|
$form = parent::getListFilter($field, $value, $viewDatas, $extras);
|
|
break;
|
|
}
|
|
return $form;
|
|
}
|
|
|
|
public function getListButton(string $action, string $label, array $viewDatas, array $extras = []): string
|
|
{
|
|
switch ($action) {
|
|
case 'modify':
|
|
if (!$this->getMyAuth()->isAccessRole(['security'])) {
|
|
$action = $viewDatas['entity']->getCode();
|
|
} else {
|
|
$action = parent::getListButton($action, $viewDatas['entity']->getCode(), $viewDatas, $extras);
|
|
}
|
|
break;
|
|
case 'create':
|
|
case 'delete':
|
|
case 'batchjob':
|
|
case 'batchjob_delete':
|
|
$action = !$this->getMyAuth()->isAccessRole(['security']) ? "" : parent::getListButton($action, $label, $viewDatas, $extras);
|
|
break;
|
|
case 'history':
|
|
$extras = ["class" => "btn btn-outline btn-primary btn-circle", "target" => "_self", ...$extras];
|
|
$action = form_label(
|
|
ICONS['HISTORY'],
|
|
$action,
|
|
[
|
|
"data-src" => "/admin/customer/clienthistory?clientinfo_uid={$viewDatas['entity']->getPK()}",
|
|
"data-bs-toggle" => "modal",
|
|
"data-bs-target" => "#index_action_form",
|
|
...$extras
|
|
]
|
|
);
|
|
break;
|
|
default:
|
|
$action = parent::getListButton($action, $label, $viewDatas, $extras);
|
|
break;
|
|
}
|
|
return $action;
|
|
}
|
|
}
|