@@ -11,19 +11,19 @@ discard block |
||
11 | 11 | */ |
12 | 12 | public function processHandler() |
13 | 13 | { |
14 | - return $this->errorHandler(function(){ |
|
14 | + return $this->errorHandler(function() { |
|
15 | 15 | |
16 | - foreach ($this->list as $table =>$datas){ |
|
16 | + foreach ($this->list as $table =>$datas) { |
|
17 | 17 | |
18 | - foreach ($datas as $data){ |
|
18 | + foreach ($datas as $data) { |
|
19 | 19 | |
20 | - $query = $this->queryBuilder($table,$data); |
|
20 | + $query = $this->queryBuilder($table, $data); |
|
21 | 21 | |
22 | 22 | $query = $query->handle(); |
23 | 23 | |
24 | - $status =($query['result']!==false) ? true : false; |
|
24 | + $status = ($query['result']!==false) ? true : false; |
|
25 | 25 | |
26 | - $results[]= [ |
|
26 | + $results[] = [ |
|
27 | 27 | 'success'=>$status, |
28 | 28 | 'file'=>$data->getFile(), |
29 | 29 | 'table'=>$table, |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | { |
51 | 51 | foreach ($objects as $object) |
52 | 52 | { |
53 | - if(count($object->getError())){ |
|
53 | + if (count($object->getError())) { |
|
54 | 54 | return 'error : '.$object->getFile().' -> '.$object->getError()[0].''; |
55 | 55 | } |
56 | 56 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param $credentials |
32 | 32 | * @param null|AuthLoginManager $manager |
33 | 33 | */ |
34 | - public function __construct($credentials,$manager) |
|
34 | + public function __construct($credentials, $manager) |
|
35 | 35 | { |
36 | 36 | //get credentials as default |
37 | 37 | $this->credentials = $credentials; |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | //get credential hash |
43 | 43 | $this->setCredentialHash(); |
44 | 44 | |
45 | - if($this->manager->getUsing()===false){ |
|
45 | + if ($this->manager->getUsing()===false) { |
|
46 | 46 | |
47 | 47 | // the request object will help you process |
48 | 48 | // the credentials and get them correctly. |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | { |
95 | 95 | $request = $this->manager->getAuth()->getRequest(); |
96 | 96 | |
97 | - if($request=='Default'){ |
|
97 | + if ($request=='Default') { |
|
98 | 98 | return new AuthenticateRequest($this); |
99 | 99 | } |
100 | 100 | |
@@ -122,8 +122,8 @@ discard block |
||
122 | 122 | private function setCredentialHash() |
123 | 123 | { |
124 | 124 | //set credential hash |
125 | - if(count($this->credentials)){ |
|
126 | - $this->credentialHash = md5(sha1(implode("|",$this->credentials))); |
|
125 | + if (count($this->credentials)) { |
|
126 | + $this->credentialHash = md5(sha1(implode("|", $this->credentials))); |
|
127 | 127 | } |
128 | 128 | } |
129 | 129 | } |
130 | 130 | \ No newline at end of file |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | { |
26 | 26 | // if the auth value does not carry |
27 | 27 | // the authenticateProvider instance value, an exception is thrown. |
28 | - if(!$auth instanceof AuthenticateProvider){ |
|
28 | + if (!$auth instanceof AuthenticateProvider) { |
|
29 | 29 | exception()->runtime('AuthenticateProvider instance is not valid'); |
30 | 30 | } |
31 | 31 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | // the imported builder object. |
41 | 41 | $this->driverBuilderInstance = new $driverBuilder($auth); |
42 | 42 | |
43 | - if(!$this->driverBuilderInstance instanceof BuilderContract){ |
|
43 | + if (!$this->driverBuilderInstance instanceof BuilderContract) { |
|
44 | 44 | exception()->runtime($driverBuilder.' is not instance of '.BuilderContract::class); |
45 | 45 | } |
46 | 46 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | protected function paramValues(...$params) |
14 | 14 | { |
15 | - [$type,$query] = $params; |
|
15 | + [$type, $query] = $params; |
|
16 | 16 | |
17 | 17 | // with query we bind the returned values to the params property of the auth object. |
18 | 18 | // and so the auth object will make a final return with these values. |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | |
23 | 23 | // if status is true, |
24 | 24 | // we add values for some user benefits to params global access. |
25 | - if($this->auth->params['status']){ |
|
25 | + if ($this->auth->params['status']) { |
|
26 | 26 | |
27 | 27 | $this->auth->params['auth'] = $query->get(); |
28 | 28 | $this->auth->params['data'] = $query->first(); |
@@ -7,12 +7,12 @@ discard block |
||
7 | 7 | /** |
8 | 8 | * @param callable $callback |
9 | 9 | */ |
10 | - protected function checkParamsViaAvailability($data,callable $callback) |
|
10 | + protected function checkParamsViaAvailability($data, callable $callback) |
|
11 | 11 | { |
12 | 12 | // if an authenticate is provided via the existing check method, |
13 | 13 | // then we return the value of the data that we are checking for with callback help. |
14 | - if($this->check() && isset($this->params[$data])){ |
|
15 | - return call_user_func_array($callback,[$this->params[$data]]); |
|
14 | + if ($this->check() && isset($this->params[$data])) { |
|
15 | + return call_user_func_array($callback, [$this->params[$data]]); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | return null; |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | // we will determine whether |
29 | 29 | // the http path is correct for this method. |
30 | - if(isset($getHttp[$type]) and $getHttp[$type]!==httpMethod()){ |
|
30 | + if (isset($getHttp[$type]) and $getHttp[$type]!==httpMethod()) { |
|
31 | 31 | $this->getExceptionForHttp($getHttp[$type]); |
32 | 32 | } |
33 | 33 | } |
@@ -41,12 +41,12 @@ discard block |
||
41 | 41 | $headers = headers(); |
42 | 42 | |
43 | 43 | //get token key from config |
44 | - $tokenKey=$this->getTokenKey(); |
|
44 | + $tokenKey = $this->getTokenKey(); |
|
45 | 45 | |
46 | 46 | // if there is a token in the headers, |
47 | 47 | // we return the callback. |
48 | - if(isset($headers[$tokenKey])){ |
|
49 | - return call_user_func_array($callback,[$headers[$tokenKey][0]]); |
|
48 | + if (isset($headers[$tokenKey])) { |
|
49 | + return call_user_func_array($callback, [$headers[$tokenKey][0]]); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | //token false |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | { |
39 | 39 | $this->config(); |
40 | 40 | |
41 | - if($this->guard=="default"){ |
|
41 | + if ($this->guard=="default") { |
|
42 | 42 | $this->setAuthenticateNeeds(); |
43 | 43 | } |
44 | 44 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public function getAddToWhere() |
64 | 64 | { |
65 | - if(isset($this->config['guard'][$this->guard]['addToWhere'])){ |
|
65 | + if (isset($this->config['guard'][$this->guard]['addToWhere'])) { |
|
66 | 66 | return $this->config['guard'][$this->guard]['addToWhere']; |
67 | 67 | } |
68 | 68 | return null; |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function getConfigToken() |
77 | 77 | { |
78 | - if(isset($this->config['guard'][$this->guard]['token'])){ |
|
78 | + if (isset($this->config['guard'][$this->guard]['token'])) { |
|
79 | 79 | return $this->config['guard'][$this->guard]['token']; |
80 | 80 | } |
81 | 81 | return null; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | { |
101 | 101 | $this->getModel(); |
102 | 102 | |
103 | - if($this->model=="Default"){ |
|
103 | + if ($this->model=="Default") { |
|
104 | 104 | |
105 | 105 | return $this->driverDefaultNamespace.'\\'.$this->getDriver().'\\UserBuilder'; |
106 | 106 | } |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | { |
128 | 128 | $this->getModel(); |
129 | 129 | |
130 | - if($this->model=="Default"){ |
|
130 | + if ($this->model=="Default") { |
|
131 | 131 | |
132 | 132 | return $this->driverDefaultNamespace.'\\'.$this->getDriver().'\\User'; |
133 | 133 | } |
@@ -19,16 +19,16 @@ discard block |
||
19 | 19 | * @param $credentials |
20 | 20 | * @param $auth |
21 | 21 | */ |
22 | - public function __construct($credentials,$auth) |
|
22 | + public function __construct($credentials, $auth) |
|
23 | 23 | { |
24 | 24 | parent::__construct($auth); |
25 | 25 | |
26 | 26 | // where the control mechanism of the credentials |
27 | 27 | // values received from the user-defined yada config setting is made. |
28 | - $this->credentials = new AuthLoginCredentialsManager($this->getCredentials($credentials),$this); |
|
28 | + $this->credentials = new AuthLoginCredentialsManager($this->getCredentials($credentials), $this); |
|
29 | 29 | |
30 | 30 | //query login |
31 | - if($this->auth->getModel()=="Default"){ |
|
31 | + if ($this->auth->getModel()=="Default") { |
|
32 | 32 | $this->loginProcess(); |
33 | 33 | } |
34 | 34 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | // if the user is not going to use the config setting, |
44 | 44 | // then in this case it can attempt to login by sending parameters |
45 | 45 | // as an array to the login method. |
46 | - if(is_array($credentials) && count($credentials)){ |
|
46 | + if (is_array($credentials) && count($credentials)) { |
|
47 | 47 | |
48 | 48 | $this->using = true; |
49 | 49 | return $credentials; |
@@ -44,7 +44,7 @@ |
||
44 | 44 | $this->credentials = $credentials; |
45 | 45 | |
46 | 46 | //credentials loop for expected property |
47 | - foreach ($this->credentials->get() as $credential){ |
|
47 | + foreach ($this->credentials->get() as $credential) { |
|
48 | 48 | $this->expected[] = $credential; |
49 | 49 | } |
50 | 50 |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | */ |
31 | 31 | protected function callbackQueryWithoutCredentials($driver) |
32 | 32 | { |
33 | - if($this->isCallableAddToWhere()){ |
|
33 | + if ($this->isCallableAddToWhere()) { |
|
34 | 34 | |
35 | 35 | return $driver::where(function($query) { |
36 | 36 | |
@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | return DeviceToken::where(function($query) use($token) { |
53 | 53 | |
54 | 54 | //where query for token |
55 | - $query->where('token_integer',crc32(md5($token))); |
|
56 | - $query->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT']))); |
|
55 | + $query->where('token_integer', crc32(md5($token))); |
|
56 | + $query->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT']))); |
|
57 | 57 | |
58 | 58 | // if the addToWhereClosure value is a closure, |
59 | 59 | // then in this case we actually run |
@@ -79,13 +79,13 @@ discard block |
||
79 | 79 | protected function logoutQuery($token) |
80 | 80 | { |
81 | 81 | //we get the model specified for the builder. |
82 | - $driver=$this->query['driver']; |
|
82 | + $driver = $this->query['driver']; |
|
83 | 83 | |
84 | 84 | //token query for builder |
85 | - $query=$driver::where(function($query) use($token) { |
|
85 | + $query = $driver::where(function($query) use($token) { |
|
86 | 86 | |
87 | 87 | //where query for token |
88 | - $query->where('token',$token); |
|
88 | + $query->where('token', $token); |
|
89 | 89 | |
90 | 90 | // if the addToWhereClosure value is a closure, |
91 | 91 | // then in this case we actually run |
@@ -104,13 +104,13 @@ discard block |
||
104 | 104 | * @param array $credentials |
105 | 105 | * @return mixed |
106 | 106 | */ |
107 | - protected function queryAddToWhere($query,$credentials=array()) |
|
107 | + protected function queryAddToWhere($query, $credentials = array()) |
|
108 | 108 | { |
109 | 109 | // if the addToWhereClosure value is a closure, |
110 | 110 | // then in this case we actually run |
111 | 111 | // the closure object and add it to the query value. |
112 | - if($this->isCallableAddToWhere()){ |
|
113 | - return $this->query['addToWhere']($query,$credentials); |
|
112 | + if ($this->isCallableAddToWhere()) { |
|
113 | + return $this->query['addToWhere']($query, $credentials); |
|
114 | 114 | } |
115 | 115 | } |
116 | 116 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | //we get the model specified for the builder. |
126 | 126 | $driver = $this->query['driver']; |
127 | 127 | |
128 | - if(count($credentials->get())==0){ |
|
128 | + if (count($credentials->get())==0) { |
|
129 | 129 | |
130 | 130 | // if the credential array is empty in the config section, |
131 | 131 | // then you must run the query with a callable value of addToWhere value. |
@@ -133,8 +133,8 @@ discard block |
||
133 | 133 | } |
134 | 134 | |
135 | 135 | // |
136 | - if($this->isCallableAddToWhere()){ |
|
137 | - return $this->queryAddToWhere($driver,$credentials->get()); |
|
136 | + if ($this->isCallableAddToWhere()) { |
|
137 | + return $this->queryAddToWhere($driver, $credentials->get()); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | // using the driver object we write the query builder statement. |
@@ -143,24 +143,24 @@ discard block |
||
143 | 143 | |
144 | 144 | // with the callback method (eloquent model) |
145 | 145 | // we write the where clause. |
146 | - foreach ($credentials->get() as $credential=>$credentialValue){ |
|
147 | - $query->where($credential,$credentialValue); |
|
146 | + foreach ($credentials->get() as $credential=>$credentialValue) { |
|
147 | + $query->where($credential, $credentialValue); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | // if the addToWhereClosure value is a closure, |
151 | 151 | // then in this case we actually run |
152 | 152 | // the closure object and add it to the query value. |
153 | - $this->queryAddToWhere($query,$credentials->get(),$credentials->get()); |
|
153 | + $this->queryAddToWhere($query, $credentials->get(), $credentials->get()); |
|
154 | 154 | }); |
155 | 155 | } |
156 | 156 | |
157 | 157 | /** |
158 | 158 | * @return void|mixed |
159 | 159 | */ |
160 | - protected function updateToken($token=null) |
|
160 | + protected function updateToken($token = null) |
|
161 | 161 | { |
162 | 162 | //if query status value is true |
163 | - if($this->auth->params['status']){ |
|
163 | + if ($this->auth->params['status']) { |
|
164 | 164 | |
165 | 165 | // we go to the method that produces |
166 | 166 | // the classical token value and get the token value. |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | // if there is no update, we reset the status value to 0. |
171 | 171 | $update = $this->auth->params['builder']->update(['token'=>$this->auth->params['token']]); |
172 | 172 | |
173 | - if(!$update){ |
|
173 | + if (!$update) { |
|
174 | 174 | $this->auth->params['status'] = 0; |
175 | 175 | $this->auth->params['exception'] = 'update'; |
176 | 176 | } |
@@ -186,9 +186,9 @@ discard block |
||
186 | 186 | { |
187 | 187 | $token_integer = crc32(md5($this->auth->params['token'])); |
188 | 188 | |
189 | - if(!is_null($token_integer)){ |
|
189 | + if (!is_null($token_integer)) { |
|
190 | 190 | |
191 | - if(DeviceToken::where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT'])))->count()==0){ |
|
191 | + if (DeviceToken::where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT'])))->count()==0) { |
|
192 | 192 | return DeviceToken::create([ |
193 | 193 | 'user_id' => $this->auth->params['authId'], |
194 | 194 | 'token' => $this->auth->params['token'], |
@@ -198,10 +198,10 @@ discard block |
||
198 | 198 | 'expire' => 0 |
199 | 199 | ]); |
200 | 200 | } |
201 | - else{ |
|
201 | + else { |
|
202 | 202 | |
203 | - return DeviceToken::where('user_id',$this->auth->params['authId']) |
|
204 | - ->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT']))) |
|
203 | + return DeviceToken::where('user_id', $this->auth->params['authId']) |
|
204 | + ->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT']))) |
|
205 | 205 | ->update([ |
206 | 206 | 'token' => $this->auth->params['token'], |
207 | 207 | 'token_integer' => $token_integer |
@@ -197,8 +197,7 @@ |
||
197 | 197 | 'device_agent_integer' => crc32(md5($_SERVER['HTTP_USER_AGENT'])), |
198 | 198 | 'expire' => 0 |
199 | 199 | ]); |
200 | - } |
|
201 | - else{ |
|
200 | + } else{ |
|
202 | 201 | |
203 | 202 | return DeviceToken::where('user_id',$this->auth->params['authId']) |
204 | 203 | ->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT']))) |