-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
32 lines (25 loc) · 996 Bytes
/
Copy pathindex.php
File metadata and controls
32 lines (25 loc) · 996 Bytes
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
<?php
use Api\Api;
header("Content-Type: application/json charset=utf-8");
if (!isset($_SERVER['HTTP_ORIGIN']) && !isset($_GET)) {
echo json_encode(['message' => 'Cant access the api']);
die;
}
header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}");
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Max-Age: 86400');
// Access-Control headers are received during OPTIONS requests
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD']))
// may also be using PUT, PATCH, HEAD etc
header("Access-Control-Allow-Methods: GET, OPTIONS");
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))
header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
exit(0);
}
$parts = explode('/', $_SERVER['REQUEST_URI']);
if (isset($parts[1]) && $parts[1] == 'api') {
include __DIR__ . '/Api.php';
$api = new Api($parts);
die;
}