-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.php
88 lines (74 loc) · 2.53 KB
/
server.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
$dsn = 'mysql:host=0.0.0.0;dbname=%s';
$pdoOptions = [
PDO::ATTR_EMULATE_PREPARES => 1,
PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => false,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
];
if ($_SERVER['REQUEST_URI'] == '/_health') {
$health = ['status' => 'ok'];
try {
new PDO(sprintf($dsn, getenv('BUFFER_DATABASE')), getenv('BUFFER_USER'), getenv('BUFFER_PASSWORD'), $pdoOptions);
} catch (\PDOException $exception) {
http_response_code(503);
$health['status'] = 'error';
$health['message'] = $exception->getMessage();
}
die(json_encode($health).PHP_EOL);
}
$headers = getallheaders();
$sql = file_get_contents('php://input');
$tokenError = 'Authorization token is not valid.'.PHP_EOL;
$accessToken = null;
$options = filter_input(INPUT_GET, 'options');
if (isset($headers['Authorization'])) {
$authorizationHeader = $headers['Authorization'];
$matches = array();
if (preg_match('/Bearer (.+)/', $authorizationHeader, $matches)) {
if (isset($matches[1])) {
$accessToken = json_decode(base64_decode($matches[1]), true);
}
}
}
if (empty($accessToken) || empty($accessToken['password'])) {
http_response_code(401);
die($tokenError);
}
$database = $accessToken['database'] ?? getenv('BUFFER_DATABASE');
$username = $accessToken['username'] ?? getenv('BUFFER_USER');
$password = $accessToken['password'];
try {
$pdo = new PDO(sprintf($dsn, $database), $username, $password, $pdoOptions);
} catch (\PDOException $exception) {
http_response_code(401);
die($tokenError);
}
$output = array();
$queries = preg_split('/;\s*(?=(?:[^\'\\\']*\'[^\'\\\']*\')*[^\'\\\']*$)/', $sql);
try {
foreach ($queries as $query) {
$query = trim($query);
if (empty($query)) {
continue;
}
$unbufferedResult = $pdo->query($query);
$header = [];
for ($index = 0; $index < $unbufferedResult->columnCount(); $index++) {
$columnMeta = $unbufferedResult->getColumnMeta($index);
$header[] = $columnMeta['name'];
}
$output[] = $header;
$dataset = $unbufferedResult->fetchAll(PDO::FETCH_ASSOC);
foreach ($dataset as $row) {
$outputRow = array();
foreach ($row as $cell) {
$outputRow[] = $cell;
}
$output[] = $outputRow;
}
}
} catch (\PDOException $exception) {
http_response_code(422);
die($exception->getMessage().PHP_EOL);
}
echo json_encode($output, JSON_PRETTY_PRINT).PHP_EOL;