芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/status.pulsehost.co.uk/app/controllers/admin-api/AdminApiDomains.php
verify_request(); /* Decide what to continue with */ switch($_SERVER['REQUEST_METHOD']) { case 'GET': /* Detect if we only need an object, or the whole list */ if(isset($this->params[0])) { $this->get(); } else { $this->get_all(); } break; case 'POST': /* Detect what method to use */ if(isset($this->params[0])) { $this->patch(); } else { $this->post(); } break; case 'DELETE': $this->delete(); break; } $this->return_404(); } private function get_all() { /* Prepare the filtering system */ $filters = (new \Altum\Filters([], [], [])); $filters->set_default_order_by('domain_id', $this->api_user->preferences->default_order_type ?? settings()->main->default_order_type); $filters->set_default_results_per_page($this->api_user->preferences->default_results_per_page ?? settings()->main->default_results_per_page); $filters->process(); /* Prepare the paginator */ $total_rows = database()->query("SELECT COUNT(*) AS `total` FROM `domains`")->fetch_object()->total ?? 0; $paginator = (new \Altum\Paginator($total_rows, $filters->get_results_per_page(), $_GET['page'] ?? 1, url('api/domains?' . $filters->get_get() . '&page=%d'))); /* Get the data */ $data = []; $data_result = database()->query(" SELECT * FROM `domains` WHERE {$filters->get_sql_where()} {$filters->get_sql_order_by()} {$paginator->get_sql_limit()} "); while($row = $data_result->fetch_object()) { /* Prepare the data */ $row = [ 'id' => (int) $row->domain_id, 'user_id' => (int) $row->user_id, 'scheme' => $row->scheme, 'host' => $row->host, 'custom_index_url' => $row->custom_index_url, 'custom_not_found_url' => $row->custom_not_found_url, 'is_enabled' => (bool) $row->is_enabled, 'last_datetime' => $row->last_datetime, 'datetime' => $row->datetime, ]; $data[] = $row; } /* Prepare the data */ $meta = [ 'page' => $_GET['page'] ?? 1, 'total_pages' => $paginator->getNumPages(), 'results_per_page' => $filters->get_results_per_page(), 'total_results' => (int) $total_rows, ]; /* Prepare the pagination links */ $others = ['links' => [ 'first' => $paginator->getPageUrl(1), 'last' => $paginator->getNumPages() ? $paginator->getPageUrl($paginator->getNumPages()) : null, 'next' => $paginator->getNextUrl(), 'prev' => $paginator->getPrevUrl(), 'self' => $paginator->getPageUrl($_GET['page'] ?? 1) ]]; Response::jsonapi_success($data, $meta, 200, $others); } private function get() { $domain_id = isset($this->params[0]) ? (int) $this->params[0] : null; /* Try to get details about the resource id */ $domain = db()->where('domain_id', $domain_id)->getOne('domains'); /* We haven't found the resource */ if(!$domain) { $this->return_404(); } /* Prepare the data */ $data = [ 'id' => (int) $domain->domain_id, 'user_id' => (int) $domain->user_id, 'scheme' => $domain->scheme, 'host' => $domain->host, 'custom_index_url' => $domain->custom_index_url, 'custom_not_found_url' => $domain->custom_not_found_url, 'is_enabled' => (bool) $domain->is_enabled, 'last_datetime' => $domain->last_datetime, 'datetime' => $domain->datetime, ]; Response::jsonapi_success($data); } private function post() { /* Check for any errors */ $required_fields = ['host']; foreach($required_fields as $field) { if(!isset($_POST[$field]) || (isset($_POST[$field]) && empty($_POST[$field]) && $_POST[$field] != '0')) { $this->response_error(l('global.error_message.empty_fields'), 401); break 1; } } if(db()->where('host', $_POST['host'])->where('is_enabled', 1)->has('domains')) { $this->response_error(l('domains.error_message.host_exists'), 401); } $_POST['scheme'] = isset($_POST['scheme']) && in_array($_POST['scheme'], ['http://', 'https://']) ? $_POST['scheme'] : 'https://'; $_POST['host'] = mb_strtolower(trim($_POST['host'] ?? null)); $_POST['custom_index_url'] = get_url($_POST['custom_index_url'] ?? null, 256); $_POST['custom_not_found_url'] = get_url($_POST['custom_not_found_url'] ?? null, 256); $_POST['is_enabled'] = isset($_POST['is_enabled']) ? (int) $_POST['is_enabled'] : 1; $type = 1; /* Database query */ $domain_id = db()->insert('domains', [ 'user_id' => $this->api_user->user_id, 'scheme' => $_POST['scheme'], 'host' => $_POST['host'], 'custom_index_url' => $_POST['custom_index_url'], 'custom_not_found_url' => $_POST['custom_not_found_url'], 'is_enabled' => $_POST['is_enabled'], 'type' => $type, 'datetime' => get_date(), ]); /* Clear the cache */ cache()->deleteItems([ 'domains?user_id=' . $this->api_user->user_id, 'domains_total?user_id=' . $this->api_user->user_id ]); cache()->deleteItem('available_additional_domains'); /* Prepare the data */ $data = [ 'id' => $domain_id ]; Response::jsonapi_success($data, null, 201); } private function patch() { $domain_id = isset($this->params[0]) ? (int) $this->params[0] : null; /* Try to get details about the resource id */ $domain = db()->where('domain_id', $domain_id)->where('user_id', $this->api_user->user_id)->getOne('domains'); /* We haven't found the resource */ if(!$domain) { $this->return_404(); } if($domain->host != $_POST['host'] && db()->where('host', $_POST['host'])->where('is_enabled', 1)->has('domains')) { $this->response_error(l('domains.error_message.host_exists'), 401); } $_POST['scheme'] = isset($_POST['scheme']) && in_array($_POST['scheme'], ['http://', 'https://']) ? $_POST['scheme'] : $domain->scheme; $_POST['host'] = mb_strtolower(trim($_POST['host'] ?? null)); $_POST['custom_index_url'] = get_url($_POST['custom_index_url'] ?? $domain->custom_index_url, 256); $_POST['custom_not_found_url'] = get_url($_POST['custom_not_found_url'] ?? $domain->custom_not_found_url, 256); $_POST['is_enabled'] = isset($_POST['is_enabled']) ? (int) $_POST['is_enabled'] : $domain->is_enabled; /* Database query */ db()->where('domain_id', $domain->domain_id)->update('domains', [ 'scheme' => $_POST['scheme'], 'host' => $_POST['host'], 'custom_index_url' => $_POST['custom_index_url'], 'custom_not_found_url' => $_POST['custom_not_found_url'], 'is_enabled' => $_POST['is_enabled'], 'last_datetime' => get_date(), ]); /* Clear the cache */ cache()->deleteItems([ 'domains?user_id=' . $domain->user_id, 'domain?domain_id=' . $domain->domain_id, 'domain?host=' . md5($domain->host) ]); cache()->deleteItem('available_additional_domains'); /* Prepare the data */ $data = [ 'id' => $domain->domain_id ]; Response::jsonapi_success($data, null, 200); } private function delete() { $domain_id = isset($this->params[0]) ? (int) $this->params[0] : null; /* Try to get details about the resource id */ $domain = db()->where('domain_id', $domain_id)->getOne('domains'); /* We haven't found the resource */ if(!$domain) { $this->return_404(); } (new Domain())->delete($domain->domain_id); http_response_code(200); die(); } }