88 lines
2.2 KiB
PHP
88 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Equipment;
|
|
|
|
use App\Helpers\Equipment\IPHelper;
|
|
use App\Models\Equipment\IPModel;
|
|
use App\Services\Equipment\EquipmentService;
|
|
use App\Services\Equipment\LineService;
|
|
|
|
class IPService extends EquipmentService
|
|
{
|
|
private ?LineService $_lineService = null;
|
|
public function __construct()
|
|
{
|
|
parent::__construct(new IPModel(), new IPHelper());
|
|
$this->addClassName('IP');
|
|
}
|
|
public function getFormFields(): array
|
|
{
|
|
return [
|
|
"lineinfo_uid",
|
|
"serverinfo_uid",
|
|
"ip",
|
|
"price",
|
|
"status",
|
|
];
|
|
}
|
|
public function getFormFilters(): array
|
|
{
|
|
return [
|
|
'old_clientinfo_uid',
|
|
'clientinfo_uid',
|
|
'serverinfo_uid',
|
|
"lineinfo_uid",
|
|
'status'
|
|
];
|
|
}
|
|
public function getIndexFields(): array
|
|
{
|
|
return [
|
|
'lineinfo_uid',
|
|
'ip',
|
|
'price',
|
|
'status',
|
|
'clientinfo_uid',
|
|
'serverinfo_uid',
|
|
'old_clientinfo_uid'
|
|
];
|
|
}
|
|
public function getBatchjobFields(): array
|
|
{
|
|
return ['status'];
|
|
}
|
|
final public function getLineService(): LineService
|
|
{
|
|
if (!$this->_lineService) {
|
|
$this->_lineService = new LineService();
|
|
}
|
|
return $this->_lineService;
|
|
}
|
|
//기본기능
|
|
//FieldForm관련용
|
|
public function getFormOption(string $field, $options = []): array
|
|
{
|
|
switch ($field) {
|
|
case 'lineinfo_uid':
|
|
$options = $this->getLineService()->getEntities();
|
|
break;
|
|
case 'old_clientinfo_uid':
|
|
$options = $this->getClientService()->getEntities();
|
|
break;
|
|
default:
|
|
$options = parent::getFormOption($field, $options);
|
|
break;
|
|
}
|
|
return $options;
|
|
}
|
|
//서비스 설정
|
|
|
|
//List 검색용
|
|
//OrderBy 처리
|
|
public function setOrderBy(mixed $field = null, mixed $value = null): void
|
|
{
|
|
$this->getModel()->orderBy('INET_ATON(ip)', 'ASC');
|
|
parent::setOrderBy($field, $value);
|
|
}
|
|
}
|