-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAuthorizer.php
124 lines (111 loc) · 4.39 KB
/
Authorizer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
/**
* APIShift Engine v1.0.0
*
* Copyright 2020-present Sapir Shemer, DevShift (devshift.biz)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author Sapir Shemer
*/
namespace APIShift\Core;
/**
* An interface containing functions to manage and trigger authorization processes when a certain architectural
* configuration is requested.
*/
class Authorizer {
/**
* Indicates that request comes from code
*/
const REQUEST_AS_CODE = 0;
/**
* Indicates that request come from a task in the DB
*/
const REQUEST_AS_TASK = 1;
/**
* Indicates that the request couldn't be found
*/
const REQUEST_INVALID = 2;
/**
* Validate the request - check if controller exists as core file, controller or as a task
*
* @param $controller Name of the controller
* @param $method Name of the method
*
* @return int Representing either as controller (REQUEST_AS_CODE), as core file (REQUEST_AS_CORE), as task (REQUEST_AS_TASK) or invalid (REQUEST_INVALID)
*/
public static function validateRequest($controller, $method) {
// Check if controller exists
if(class_exists("APIShift\\Controllers\\" . $controller) && is_callable(["APIShift\\Controllers\\" . $controller, $method]))
{
return self::REQUEST_AS_CODE;
}
// Check if task exists
else {
if(Task::requestAsTaskExists($controller, $method)) return self::REQUEST_AS_TASK;
return self::REQUEST_INVALID;
}
}
/**
* Runs a authorization process defined in the system before calling a controller/core/task.
* Also places a "BeforeRun" and "AfterRun" task triggers that a developer can attach his own tasks to.
*
* @param $controller Name of the controller
* @param $method Name of the method
*
* @return void
*/
public static function authorizeAndRun($controller, $method)
{
// Step 1: Find controller & method
$request_type = Authorizer::validateRequest($controller, $method);
if($request_type == self::REQUEST_INVALID)
Status::message(Status::ERROR, "Invalid Request Form: Please check controller or method name");
// Step 2: Call authorization tasks
if(!Task::validateResult(Task::runAuthorizationTasks($controller, $method)))
Status::message(Status::NO_AUTH, "You have no authorization to access this request");
// Step 3: Tasks triggered before request
Task::placeTrigger("BeforeRun");
// Step 4: Run request
if($request_type == self::REQUEST_AS_CODE) ("APIShift\\Controllers\\" . $controller)::$method();
else if($request_type == self::REQUEST_AS_TASK) Task::runRequestTask($controller, $method);
// Step 5: Tasks triggered after request
Task::placeTrigger("AfterRun");
}
/**
* Exit if not in a certain state
*
* @param int $state State ID to check
*
* @return void
*/
public static function authorizeByState($state = null) {
if($state == null) $state = SessionState::getStateID("ADMIN_STATE"); // Get admin state ID by default
if(SessionState::getSessionState() != $state) Status::message(Status::ERROR, "Unauthorized state for this request");
}
/**
* Validates if user and password matches the admin state
*
* @param string $user User name to login with
* @param string $pass Password entered
*
* @return bool If the test passed or not
*/
public static function adminState($user, $pass) {
$credentials = [];
DatabaseManager::fetchInto("main", $credentials, "SELECT password FROM admin_users WHERE username = :username", [ 'username' => $user ]);
if(!is_array($credentials) || count($credentials) == 0 || !password_verify($pass, $credentials[0]['password'])) return false;
return true;
}
}
?>