109 lines
4.4 KiB
PHP
109 lines
4.4 KiB
PHP
<?php
|
|
|
|
namespace App\Controllers\Admin\Cloudflare\API;
|
|
|
|
use App\Entities\Cloudflare\API\FirewallEntity;
|
|
use App\Models\Cloudflare\API\FirewallModel;
|
|
use CodeIgniter\HTTP\RequestInterface;
|
|
use CodeIgniter\HTTP\ResponseInterface;
|
|
use Psr\Log\LoggerInterface;
|
|
use App\Libraries\Cloudflare\API\Firewall;
|
|
|
|
class FirewallController extends APIController
|
|
{
|
|
private $_zone_uids = null;
|
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
|
{
|
|
parent::initController($request, $response, $logger);
|
|
$this->_className .= '/Firewall';
|
|
$this->_model = new FirewallModel();
|
|
$this->_defines = [
|
|
'index' => [
|
|
'fields' => ['zone_uid', 'description', 'action', 'paused', 'updated_at', 'created_at'],
|
|
'fieldFilters' => ['zone_uid', 'action', 'paused'],
|
|
'batchjobFilters' => ['action', 'paused'],
|
|
],
|
|
'excel' => [
|
|
'fields' => ['zone_uid', 'description', 'action', 'paused', 'updated_at', 'created_at'],
|
|
'fieldFilters' => ['zone_uid', 'action', 'paused',],
|
|
],
|
|
];
|
|
helper($this->_className);
|
|
$this->_viewPath = strtolower($this->_className);
|
|
$this->_viewDatas['title'] = lang($this->_className . '.title');
|
|
$this->_viewDatas['className'] = $this->_className;
|
|
}
|
|
|
|
//Field별 Form Option용
|
|
protected function getFieldFormOption(string $field): array
|
|
{
|
|
switch ($field) {
|
|
case 'zone_uid':
|
|
if (is_null($this->_zone_uids)) {
|
|
//모든 필요한 FormOption등 조기화작업 필요
|
|
$this->_zone_uids = [DEFAULT_EMPTY => lang($this->_className . '.label.' . $field) . ' 선택'];
|
|
foreach ($this->getZoneModel()->orderBy('domain', 'asc')->findAll() as $zone) {
|
|
$this->_zone_uids[$zone['uid']] = $zone['domain'];
|
|
}
|
|
}
|
|
return $this->_zone_uids;
|
|
break;
|
|
default:
|
|
return parent::getFieldFormOption($field);
|
|
break;
|
|
}
|
|
}
|
|
|
|
//Update관련
|
|
protected function update_process($entity)
|
|
{
|
|
$api = new Firewall($this->getZoneModel()->getEntity($entity->getParentFieldData()));
|
|
$entity = $api->update($entity, $this->_viewDatas['fieldDatas']);
|
|
return parent::update_process($entity);
|
|
}
|
|
//Toggle관련
|
|
protected function toggle_process($entity)
|
|
{
|
|
$api = new Firewall($this->getZoneModel()->getEntity($entity->getParentFieldData()));
|
|
$entity = $api->update($entity, $this->_viewDatas['fieldDatas']);
|
|
return parent::toggle_process($entity);
|
|
}
|
|
//Batchjob관련
|
|
protected function batchjob_process($entity)
|
|
{
|
|
$api = new Firewall($this->getZoneModel()->getEntity($entity->getParentFieldData()));
|
|
$entity = $api->update($entity, $this->_viewDatas['fieldDatas']);
|
|
return parent::batchjob_process($entity);
|
|
}
|
|
//Sync관련
|
|
protected function sync_process($entity)
|
|
{
|
|
$api = new Firewall($this->getZoneModel()->getEntity($entity->getParentFieldData()));
|
|
$entity = $api->sync($entity);
|
|
return parent::sync_process($entity);
|
|
}
|
|
//Index관련
|
|
protected function index_getRows(int $page = 0, int $per_page = 0): array
|
|
{
|
|
//모델 조건절 처리작업
|
|
$this->index_setCondition();
|
|
//모델 Join
|
|
$builder = $this->_model->builder();
|
|
$builder->select("cloudflarefirewall.*");
|
|
$builder->join("cloudflarezone", "cloudflarezone.uid = cloudflarefirewall.zone_uid");
|
|
//OrderBy
|
|
$order_field = $this->request->getVar('order_field') ? $this->request->getVar('order_field') : 'uid';
|
|
$order_value = $this->request->getVar('order_value') ? $this->request->getVar('order_value') : 'DESC';
|
|
$builder->orderBy("cloudflarezone.domain ASC, description ASC, {$order_field} {$order_value}");
|
|
//Limit
|
|
$builder->limit($page * $per_page - $per_page, $per_page);
|
|
// log_message("debug", __METHOD__ . "에서 호출\n" . $builder->getCompiledSelect(false));
|
|
$rows = $builder->get()->getResultArray();
|
|
// foreach ($builder->get()->getResultArray() as $row) {
|
|
// array_push($rows, new FirewallEntity($row));
|
|
// }
|
|
// throw new \Exception(var_export($rows, true));
|
|
return $rows;
|
|
}
|
|
}
|