diff options
author | Philip Häusler <msquare@notrademark.de> | 2015-06-07 20:11:50 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2015-06-07 20:11:50 +0200 |
commit | 1da5604f4773322d214cd95f3bb790d6d1f0418b (patch) | |
tree | 4295ba6ed75e888663d5b9a2ce794e08bf2ccf80 | |
parent | bb53c6a20cef886213ba6416658c77e75c96a581 (diff) |
remove json auth feature (will be covered by api)
-rw-r--r-- | includes/sys_auth.php | 38 | ||||
-rw-r--r-- | public/index.php | 4 |
2 files changed, 0 insertions, 42 deletions
diff --git a/includes/sys_auth.php b/includes/sys_auth.php index 3e5cd109..d4f35fa6 100644 --- a/includes/sys_auth.php +++ b/includes/sys_auth.php @@ -53,44 +53,6 @@ function verify_password($password, $salt, $uid = false) { return $correct; } -// JSON Authorisierungs-Schnittstelle -function json_auth_service() { - global $api_key; - - header("Content-Type: application/json"); - - $User = $_REQUEST['user']; - $Pass = $_REQUEST['pw']; - $SourceOuth = $_REQUEST['so']; - - if (isset($api_key) && $SourceOuth == $api_key) { - $sql = "SELECT `UID`, `Passwort` FROM `User` WHERE `Nick`='" . sql_escape($User) . "'"; - $Erg = sql_select($sql); - - if (count($Erg) == 1) { - $Erg = $Erg[0]; - if (verify_password($Pass, $Erg["Passwort"], $Erg["UID"])) { - $user_privs = sql_select("SELECT `Privileges`.`name` FROM `User` JOIN `UserGroups` ON (`User`.`UID` = `UserGroups`.`uid`) JOIN `GroupPrivileges` ON (`UserGroups`.`group_id` = `GroupPrivileges`.`group_id`) JOIN `Privileges` ON (`GroupPrivileges`.`privilege_id` = `Privileges`.`id`) WHERE `User`.`UID`='" . sql_escape($UID) . "'"); - foreach ($user_privs as $user_priv) - $privileges[] = $user_priv['name']; - - $msg = array ( - 'status' => 'success', - 'rights' => $privileges - ); - echo json_encode($msg); - die(); - } - } - } - - echo json_encode(array ( - 'status' => 'failed', - 'error' => "JSON Service GET syntax: https://engelsystem.de/?auth&user=<user>&pw=<password>&so=<key>, POST is possible too" - )); - die(); -} - function privileges_for_user($user_id) { $privileges = array (); $user_privs = sql_select("SELECT `Privileges`.`name` FROM `User` JOIN `UserGroups` ON (`User`.`UID` = `UserGroups`.`uid`) JOIN `GroupPrivileges` ON (`UserGroups`.`group_id` = `GroupPrivileges`.`group_id`) JOIN `Privileges` ON (`GroupPrivileges`.`privilege_id` = `Privileges`.`id`) WHERE `User`.`UID`='" . sql_escape($user_id) . "'"); diff --git a/public/index.php b/public/index.php index c625c386..34e5eeba 100644 --- a/public/index.php +++ b/public/index.php @@ -1,10 +1,6 @@ <?php require_once realpath(__DIR__ . '/../includes/engelsystem_provider.php'); -// JSON Authorisierung gewünscht? -if (isset($_REQUEST['auth'])) - json_auth_service(); - $free_pages = array( 'stats', 'shifts_json_export_all', |