2022-05-19 14:59:32 +00:00
|
|
|
<?php
|
|
|
|
|
2022-11-20 14:11:54 +00:00
|
|
|
require 'router.php';
|
2022-05-19 14:59:32 +00:00
|
|
|
|
2022-11-26 20:45:48 +00:00
|
|
|
$auth_data = json_decode(file_get_contents('php://input'), true);
|
2022-05-19 14:59:32 +00:00
|
|
|
|
2022-11-26 20:45:48 +00:00
|
|
|
$internal_username = hash('sha256', $auth_data['username']);
|
|
|
|
|
|
|
|
if (userExist($internal_username) === true AND checkPassword($internal_username, $auth_data['password']) === true) {
|
2022-06-28 20:08:34 +00:00
|
|
|
echo '
|
|
|
|
{
|
|
|
|
"status": 1,
|
2022-11-26 20:45:48 +00:00
|
|
|
"username": ' . json_encode($auth_data['username']) . ',
|
|
|
|
"home_dir": "' . CONF['ht']['ht_path'] . '/' . $internal_username . '",
|
|
|
|
"quota_size": ' . ((query('select', 'users', ['username' => $internal_username], 'type')[0] === 'trusted') ? CONF['ht']['user_quota_trusted'] : CONF['ht']['user_quota_testing']) . ',
|
2022-06-28 20:08:34 +00:00
|
|
|
"permissions": {
|
|
|
|
"/": [
|
|
|
|
"*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
';
|
2022-05-19 14:59:32 +00:00
|
|
|
http_response_code(200);
|
|
|
|
} else {
|
|
|
|
http_response_code(403);
|
|
|
|
}
|