-
-
Notifications
You must be signed in to change notification settings - Fork 522
/
index.php
54 lines (40 loc) · 1.76 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* This file is part of the Cockpit project.
*
* (c) Artur Heinze - 🅰🅶🅴🅽🆃🅴🅹🅾, http://agentejo.com
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
define('COCKPIT_ADMIN', 1);
// set default timezone
date_default_timezone_set('UTC');
// handle php webserver
if (PHP_SAPI == 'cli-server' && is_file(__DIR__.parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH))) {
return false;
}
// bootstrap cockpit
require(__DIR__.'/bootstrap.php');
# admin route
if (COCKPIT_ADMIN && !defined('COCKPIT_ADMIN_ROUTE')) {
$route = preg_replace('#'.preg_quote(COCKPIT_BASE_URL, '#').'#', '', parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH), 1);
if ($route == '') {
$route = '/';
}
define('COCKPIT_ADMIN_ROUTE', $route);
}
if (COCKPIT_API_REQUEST) {
$_cors = $cockpit->retrieve('config/cors', []);
header('Access-Control-Allow-Origin: ' .($_cors['allowedOrigins'] ?? '*'));
header('Access-Control-Allow-Credentials: ' .($_cors['allowCredentials'] ?? 'true'));
header('Access-Control-Max-Age: ' .($_cors['maxAge'] ?? '1000'));
header('Access-Control-Allow-Headers: ' .($_cors['allowedHeaders'] ?? 'X-Requested-With, Content-Type, Origin, Cache-Control, Pragma, Authorization, Accept, Accept-Encoding, Cockpit-Token'));
header('Access-Control-Allow-Methods: ' .($_cors['allowedMethods'] ?? 'PUT, POST, GET, OPTIONS, DELETE'));
header('Access-Control-Expose-Headers: ' .($_cors['exposedHeaders'] ?? 'true'));
if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
exit(0);
}
}
// run backend
$cockpit->set('route', COCKPIT_ADMIN_ROUTE)->trigger('admin.init')->run();