2019-12-30 14:15:35 +00:00
|
|
|
<?php
|
2020-01-18 12:12:21 +00:00
|
|
|
include 'vendor/autoload.php';
|
2019-12-30 14:15:35 +00:00
|
|
|
include 'conststr.php';
|
2020-01-18 12:12:21 +00:00
|
|
|
include 'function/common.php';
|
2019-12-30 14:15:35 +00:00
|
|
|
|
2020-01-18 12:12:21 +00:00
|
|
|
//echo '<pre>'. json_encode($_SERVER, JSON_PRETTY_PRINT).'</pre>';
|
2020-03-13 12:35:28 +00:00
|
|
|
if (isset($_SERVER['USER'])&&$_SERVER['USER']==='qcloud') {
|
2020-01-18 12:12:21 +00:00
|
|
|
include 'function/scf.php';
|
2020-03-13 12:35:28 +00:00
|
|
|
} elseif (isset($_SERVER['HEROKU_APP_DIR'])&&$_SERVER['HEROKU_APP_DIR']==='/app') {
|
2020-01-18 12:12:21 +00:00
|
|
|
include 'function/heroku.php';
|
|
|
|
$path = getpath();
|
|
|
|
//echo 'path:'. $path;
|
|
|
|
$_GET = getGET();
|
|
|
|
//echo '<pre>'. json_encode($_GET, JSON_PRETTY_PRINT).'</pre>';
|
|
|
|
$re = main($path);
|
|
|
|
$sendHeaders = array();
|
|
|
|
foreach ($re['headers'] as $headerName => $headerVal) {
|
|
|
|
header($headerName . ': ' . $headerVal, true);
|
|
|
|
}
|
|
|
|
http_response_code($re['statusCode']);
|
|
|
|
echo $re['body'];
|
|
|
|
} else {
|
|
|
|
include 'function/normal.php';
|
|
|
|
$path = getpath();
|
|
|
|
//echo 'path:'. $path;
|
|
|
|
$_GET = getGET();
|
|
|
|
//echo '<pre>'. json_encode($_GET, JSON_PRETTY_PRINT).'</pre>';
|
2019-12-30 14:15:35 +00:00
|
|
|
|
2020-01-18 12:12:21 +00:00
|
|
|
$re = main($path);
|
|
|
|
$sendHeaders = array();
|
|
|
|
foreach ($re['headers'] as $headerName => $headerVal) {
|
|
|
|
header($headerName . ': ' . $headerVal, true);
|
2019-12-30 14:15:35 +00:00
|
|
|
}
|
2020-01-18 12:12:21 +00:00
|
|
|
http_response_code($re['statusCode']);
|
|
|
|
echo $re['body'];
|
|
|
|
}
|
|
|
|
|
|
|
|
function main_handler($event, $context)
|
|
|
|
{
|
|
|
|
$event = json_decode(json_encode($event), true);
|
|
|
|
$context = json_decode(json_encode($context), true);
|
|
|
|
printInput($event, $context);
|
|
|
|
unset($_POST);
|
|
|
|
unset($_GET);
|
|
|
|
unset($_COOKIE);
|
|
|
|
unset($_SERVER);
|
|
|
|
GetGlobalVariable($event);
|
2020-01-20 04:49:55 +00:00
|
|
|
//echo '<pre>'. json_encode($_COOKIE, JSON_PRETTY_PRINT).'</pre>';
|
2020-01-18 12:12:21 +00:00
|
|
|
$path = GetPathSetting($event, $context);
|
2020-02-20 03:59:58 +00:00
|
|
|
|
2020-01-18 12:12:21 +00:00
|
|
|
return main($path);
|
|
|
|
}
|