1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00
appwrite/public/index.php
2020-05-14 08:42:13 +03:00

43 lines
1.2 KiB
PHP

<?php
/**
* “Programming today is a race between software engineers striving to build bigger and better idiot-proof programs,
* and the Universe trying to produce bigger and better idiots.
* So far, the Universe is winning.”
*
* ― Rick Cook, The Wizardry Compiled
*/
// tideways_xhprof_enable(TIDEWAYS_XHPROF_FLAGS_MEMORY | TIDEWAYS_XHPROF_FLAGS_CPU);
error_reporting(0);
ini_set('display_errors', 0);
// ini_set('display_errors', 1);
// ini_set('display_startup_errors', 1);
// error_reporting(E_ALL);
$path = (isset($_GET['q'])) ? explode('/', $_GET['q']) : [];
$domain = (isset($_SERVER['HTTP_HOST'])) ? $_SERVER['HTTP_HOST'] : '';
array_shift($path);
$version = array_shift($path);
switch ($version) { // Switch between API version
case 'v1':
$service = $version . '/' . array_shift($path);
include __DIR__ . '/../app/app.php';
break;
case 'console':
default:
$service = $version . '/';
include __DIR__ . '/../app/app.php';
break;
}
// $data = tideways_xhprof_disable();
// $key = str_replace(['/', '.'], '_', $_GET['q']);
// file_put_contents(
// "./{$key}-appwrite.xhprof",
// serialize($data)
// );