e3af4c946d
The webservers now need to send every request to router.php, which will call appropriate files. Forms will be treated before being displayed.
23 lines
411 B
PHP
23 lines
411 B
PHP
<?php
|
|
|
|
require "router.php";
|
|
|
|
$authData = json_decode(file_get_contents("php://input"), true);
|
|
|
|
if (checkPassword($authData['username'], $authData['password']) === true) {
|
|
echo '
|
|
{
|
|
"status": 1,
|
|
"username": "' . $authData['username'] . '",
|
|
"quota_size": ' . CONF['ht']['user_quota'] . ',
|
|
"permissions": {
|
|
"/": [
|
|
"*"
|
|
]
|
|
}
|
|
}
|
|
';
|
|
http_response_code(200);
|
|
} else {
|
|
http_response_code(403);
|
|
}
|