1234567891011121314151617181920212223 |
- <?php
- require "router.php";
- $authData = json_decode(file_get_contents("php://input"), true);
- if (userExist($authData['username']) === true AND 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);
- }
|