. */ namespace Liuch\DmarcSrg; use Liuch\DmarcSrg\ErrorHandler; use Liuch\DmarcSrg\Exception\RuntimeException; require 'init.php'; if (Core::isJson()) { try { $core = Core::instance(); $core->auth()->isAllowed(); if (Core::method() == 'GET') { Core::sendJson($core->admin()->state()); return; } elseif (Core::method() == 'POST') { $data = Core::getJsonData(); if ($data) { $cmd = $data['cmd']; if (in_array($cmd, [ 'initdb', 'cleandb', 'upgradedb' ])) { if ($core->auth()->isEnabled()) { $pwd = isset($data['password']) ? $data['password'] : null; $core->auth()->checkAdminPassword($pwd); } } if ($cmd === 'initdb') { Core::sendJson($core->database()->initDb()); return; } elseif ($cmd === 'cleandb') { Core::sendJson($core->database()->cleanDb()); return; } elseif ($cmd === 'checksource') { if (isset($data['id']) && isset($data['type'])) { $id = $data['id']; $type = $data['type']; if (gettype($id) === 'integer' && gettype($type) === 'string') { Core::sendJson( $core->admin()->checkSource($id, $type) ); return; } } } elseif ($cmd === 'upgradedb') { $db = Core::instance()->database(); $db->getMapper('upgrader')->go($db::REQUIRED_VERSION); Core::sendJson( [ 'error_code' => 0, 'message' => 'Upgrated successfully' ] ); return; } } } Core::sendJson([ 'error_code' => -1, 'message' => 'Bad request' ]); } catch (RuntimeException $e) { Core::sendJson(ErrorHandler::exceptionResult($e)); } return; } elseif (Core::method() == 'GET') { Core::sendHtml(); return; } Core::sendBad();