@@ -42,8 +42,7 @@ discard block |
||
42 | 42 | if(!file_exists($makeDirectory)){ |
43 | 43 | files()->makeDirectory($makeDirectory,0755,true); |
44 | 44 | $exist=false; |
45 | - } |
|
46 | - else{ |
|
45 | + } else{ |
|
47 | 46 | $exist=true; |
48 | 47 | } |
49 | 48 | |
@@ -61,18 +60,15 @@ discard block |
||
61 | 60 | |
62 | 61 | if(substr($dbtable,-1)=='s'){ |
63 | 62 | app()->command('model create','model:'.strtolower(substr($dbtable,0,-1)).' table:'.$dbtable); |
64 | - } |
|
65 | - else{ |
|
63 | + } else{ |
|
66 | 64 | app()->command('model create','model:'.strtolower($dbtable).' table:'.$dbtable); |
67 | 65 | } |
68 | 66 | |
69 | 67 | if(isset($contentResult) && $contentResult!==false){ |
70 | 68 | echo $dbtablekey.'- '.$migrationName.' ---> Ok'; |
71 | - } |
|
72 | - elseif($exist){ |
|
69 | + } elseif($exist){ |
|
73 | 70 | echo $dbtablekey.'- '.$migrationName.' ---> (Already Exist)'; |
74 | - } |
|
75 | - else{ |
|
71 | + } else{ |
|
76 | 72 | echo $dbtablekey.'- '.$migrationName.' ---> Fail'; |
77 | 73 | } |
78 | 74 | |
@@ -199,41 +195,29 @@ discard block |
||
199 | 195 | { |
200 | 196 | if($column=='datetime'){ |
201 | 197 | return 'datetime()'; |
202 | - } |
|
203 | - elseif($column=='longtext'){ |
|
198 | + } elseif($column=='longtext'){ |
|
204 | 199 | return 'longtext()'; |
205 | - } |
|
206 | - elseif($column=='date'){ |
|
200 | + } elseif($column=='date'){ |
|
207 | 201 | return 'date()'; |
208 | - } |
|
209 | - elseif($column=='text'){ |
|
202 | + } elseif($column=='text'){ |
|
210 | 203 | return 'text()'; |
211 | - } |
|
212 | - elseif($column=='timestamp'){ |
|
204 | + } elseif($column=='timestamp'){ |
|
213 | 205 | return 'timestamp()'; |
214 | - } |
|
215 | - elseif($column=='mediumint'){ |
|
206 | + } elseif($column=='mediumint'){ |
|
216 | 207 | return 'mediumint()'; |
217 | - } |
|
218 | - elseif($column=='tinyint'){ |
|
208 | + } elseif($column=='tinyint'){ |
|
219 | 209 | return 'tinyint()'; |
220 | - } |
|
221 | - elseif($column=='float'){ |
|
210 | + } elseif($column=='float'){ |
|
222 | 211 | return 'float()'; |
223 | - } |
|
224 | - elseif($column=='mediumtext'){ |
|
212 | + } elseif($column=='mediumtext'){ |
|
225 | 213 | return 'mediumtext()'; |
226 | - } |
|
227 | - elseif($column=='mediumblob'){ |
|
214 | + } elseif($column=='mediumblob'){ |
|
228 | 215 | return 'mediumblob()'; |
229 | - } |
|
230 | - elseif($column=='blob'){ |
|
216 | + } elseif($column=='blob'){ |
|
231 | 217 | return 'blob()'; |
232 | - } |
|
233 | - elseif(preg_match('@enum.*\((.*?)\)@',$column,$enum)){ |
|
218 | + } elseif(preg_match('@enum.*\((.*?)\)@',$column,$enum)){ |
|
234 | 219 | return 'enum(['.$enum[1].'])'; |
235 | - } |
|
236 | - else{ |
|
220 | + } else{ |
|
237 | 221 | return $column; |
238 | 222 | } |
239 | 223 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | */ |
15 | 15 | public function get() |
16 | 16 | { |
17 | - if(!isset($this->config['paths'][0])){ |
|
17 | + if (!isset($this->config['paths'][0])) { |
|
18 | 18 | exit(); |
19 | 19 | } |
20 | 20 | |
@@ -27,11 +27,11 @@ discard block |
||
27 | 27 | |
28 | 28 | $list = []; |
29 | 29 | |
30 | - foreach ($migrations as $table=>$item){ |
|
30 | + foreach ($migrations as $table=>$item) { |
|
31 | 31 | $list[] = strtolower($table); |
32 | 32 | } |
33 | 33 | |
34 | - if(isset($arguments['only'])){ |
|
34 | + if (isset($arguments['only'])) { |
|
35 | 35 | $dbtables = $this->getOnly($dbtables); |
36 | 36 | } |
37 | 37 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | echo 'Toplam : '.count($dbtables).' Table'; |
41 | 41 | echo PHP_EOL; |
42 | 42 | |
43 | - foreach ($dbtables as $dbtablekey=>$dbtable){ |
|
43 | + foreach ($dbtables as $dbtablekey=>$dbtable) { |
|
44 | 44 | |
45 | 45 | $dbtablekey = $dbtablekey+1; |
46 | 46 | |
@@ -49,40 +49,40 @@ discard block |
||
49 | 49 | $dbtable = ucfirst($dbtable); |
50 | 50 | $makeDirectory = $directory.''.DIRECTORY_SEPARATOR.''.$dbtable; |
51 | 51 | |
52 | - if(!file_exists($makeDirectory)){ |
|
53 | - files()->makeDirectory($makeDirectory,0755,true); |
|
54 | - $exist=false; |
|
52 | + if (!file_exists($makeDirectory)) { |
|
53 | + files()->makeDirectory($makeDirectory, 0755, true); |
|
54 | + $exist = false; |
|
55 | 55 | } |
56 | - else{ |
|
57 | - $exist=true; |
|
56 | + else { |
|
57 | + $exist = true; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | $migrationName = time().'_'.$dbtable.''; |
61 | 61 | |
62 | - if($exist===false){ |
|
62 | + if ($exist===false) { |
|
63 | 63 | |
64 | - $content = $this->getContentFile($this->getStubPath().''.DIRECTORY_SEPARATOR.'pullCreate.stub',[ |
|
64 | + $content = $this->getContentFile($this->getStubPath().''.DIRECTORY_SEPARATOR.'pullCreate.stub', [ |
|
65 | 65 | 'className' => $dbtable, |
66 | 66 | 'informations' => $informations |
67 | 67 | ]); |
68 | 68 | |
69 | - $contentResult = files()->put($makeDirectory.''.DIRECTORY_SEPARATOR.''.$migrationName.'.php',$content); |
|
69 | + $contentResult = files()->put($makeDirectory.''.DIRECTORY_SEPARATOR.''.$migrationName.'.php', $content); |
|
70 | 70 | } |
71 | 71 | |
72 | - if(substr($dbtable,-1)=='s'){ |
|
73 | - app()->command('model create','model:'.strtolower(substr($dbtable,0,-1)).' table:'.$dbtable); |
|
72 | + if (substr($dbtable, -1)=='s') { |
|
73 | + app()->command('model create', 'model:'.strtolower(substr($dbtable, 0, -1)).' table:'.$dbtable); |
|
74 | 74 | } |
75 | - else{ |
|
76 | - app()->command('model create','model:'.strtolower($dbtable).' table:'.$dbtable); |
|
75 | + else { |
|
76 | + app()->command('model create', 'model:'.strtolower($dbtable).' table:'.$dbtable); |
|
77 | 77 | } |
78 | 78 | |
79 | - if(isset($contentResult) && $contentResult!==false){ |
|
79 | + if (isset($contentResult) && $contentResult!==false) { |
|
80 | 80 | echo $dbtablekey.'- '.$migrationName.' ---> Ok'; |
81 | 81 | } |
82 | - elseif($exist){ |
|
82 | + elseif ($exist) { |
|
83 | 83 | echo $dbtablekey.'- '.$migrationName.' ---> (Already Exist)'; |
84 | 84 | } |
85 | - else{ |
|
85 | + else { |
|
86 | 86 | echo $dbtablekey.'- '.$migrationName.' ---> Fail'; |
87 | 87 | } |
88 | 88 | |
@@ -110,46 +110,46 @@ discard block |
||
110 | 110 | |
111 | 111 | $list = []; |
112 | 112 | |
113 | - foreach ($columns as $key=>$data){ |
|
113 | + foreach ($columns as $key=>$data) { |
|
114 | 114 | |
115 | - $data['Type'] = rtrim(str_replace('unsigned','',$data['Type'])); |
|
115 | + $data['Type'] = rtrim(str_replace('unsigned', '', $data['Type'])); |
|
116 | 116 | |
117 | 117 | $field = $data['Field']; |
118 | 118 | $list[] = '$wizard->name(\''.$field.'\')'; |
119 | 119 | $list[] = '->'.$this->getColumnTransformers($data['Type']).''; |
120 | 120 | |
121 | 121 | //default block |
122 | - if(!is_null($data['Default'])){ |
|
122 | + if (!is_null($data['Default'])) { |
|
123 | 123 | $default = $data['Default']; |
124 | - $list[] = '->default(\''.$default.'\')'; |
|
124 | + $list[] = '->default(\''.$default.'\')'; |
|
125 | 125 | } |
126 | 126 | |
127 | - $getIndex = $this->getIndexInformation($indexes,$data['Field']); |
|
127 | + $getIndex = $this->getIndexInformation($indexes, $data['Field']); |
|
128 | 128 | |
129 | 129 | //unique block |
130 | - if($getIndex['Non_unique']=='0' && $getIndex['Key_name']!=='PRIMARY'){ |
|
130 | + if ($getIndex['Non_unique']=='0' && $getIndex['Key_name']!=='PRIMARY') { |
|
131 | 131 | $indexName = $getIndex['Key_name']; |
132 | - $list[] = '->unique(\''.$indexName.'\')'; |
|
132 | + $list[] = '->unique(\''.$indexName.'\')'; |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | //index block |
136 | - if($getIndex['Non_unique']=='1' && $getIndex['Key_name']!=='PRIMARY'){ |
|
136 | + if ($getIndex['Non_unique']=='1' && $getIndex['Key_name']!=='PRIMARY') { |
|
137 | 137 | $columnName = $getIndex['Column_name']; |
138 | 138 | $indexName = $getIndex['Key_name']; |
139 | 139 | |
140 | - if(count($multipleIndexes[$indexName])==1){ |
|
140 | + if (count($multipleIndexes[$indexName])==1) { |
|
141 | 141 | $list[] = '->index(\''.$indexName.'\')'; |
142 | 142 | } |
143 | 143 | } |
144 | 144 | |
145 | 145 | //comment block |
146 | - if(strlen($data['Comment'])>0){ |
|
146 | + if (strlen($data['Comment'])>0) { |
|
147 | 147 | $comment = $data['Comment']; |
148 | 148 | $list[] = '->comment(\''.$comment.'\')'; |
149 | 149 | } |
150 | 150 | |
151 | 151 | //auto increment block |
152 | - if($data['Extra']=='auto_increment'){ |
|
152 | + if ($data['Extra']=='auto_increment') { |
|
153 | 153 | $list[] = '->auto_increment()'; |
154 | 154 | } |
155 | 155 | |
@@ -164,39 +164,39 @@ discard block |
||
164 | 164 | |
165 | 165 | //table indexes |
166 | 166 | foreach ($multipleIndexes as $indexName=>$values) { |
167 | - if(count($values)>1){ |
|
168 | - $values = '\''.implode('\',\'',$values).'\''; |
|
167 | + if (count($values)>1) { |
|
168 | + $values = '\''.implode('\',\'', $values).'\''; |
|
169 | 169 | $list[] = ' $wizard->table()->indexes(\''.$indexName.'\',['.$values.']); |
170 | 170 | '; |
171 | 171 | } |
172 | 172 | } |
173 | 173 | |
174 | - if(count($foreignKeys)){ |
|
174 | + if (count($foreignKeys)) { |
|
175 | 175 | |
176 | 176 | $constraintName = $foreignKeys['CONSTRAINT_NAME']; |
177 | 177 | $key = $foreignKeys['COLUMN_NAME']; |
178 | 178 | $referenceTable = $foreignKeys['REFERENCED_TABLE_NAME']; |
179 | 179 | $referenceColumn = $foreignKeys['REFERENCED_COLUMN_NAME']; |
180 | 180 | |
181 | - if($foreignKeys['UPDATE_RULE']=='RESTRICT' && $foreignKeys['DELETE_RULE']=='RESTRICT'){ |
|
181 | + if ($foreignKeys['UPDATE_RULE']=='RESTRICT' && $foreignKeys['DELETE_RULE']=='RESTRICT') { |
|
182 | 182 | $list[] = ' $wizard->table()->foreign()->constraint(\''.$constraintName.'\')->key(\''.$key.'\')->references(\''.$referenceTable.'\',\''.$referenceColumn.'\'); |
183 | 183 | '; |
184 | 184 | } |
185 | 185 | |
186 | - if($foreignKeys['UPDATE_RULE']!=='RESTRICT' && $foreignKeys['DELETE_RULE']=='RESTRICT'){ |
|
186 | + if ($foreignKeys['UPDATE_RULE']!=='RESTRICT' && $foreignKeys['DELETE_RULE']=='RESTRICT') { |
|
187 | 187 | $rule = $foreignKeys['UPDATE_RULE']; |
188 | 188 | $list[] = ' $wizard->table()->foreign()->constraint(\''.$constraintName.'\')->key(\''.$key.'\')->references(\''.$referenceTable.'\',\''.$referenceColumn.'\')->onUpdate()->'.strtolower($rule).'(); |
189 | 189 | '; |
190 | 190 | } |
191 | 191 | |
192 | - if($foreignKeys['UPDATE_RULE']=='RESTRICT' && $foreignKeys['DELETE_RULE']!=='RESTRICT'){ |
|
192 | + if ($foreignKeys['UPDATE_RULE']=='RESTRICT' && $foreignKeys['DELETE_RULE']!=='RESTRICT') { |
|
193 | 193 | $rule = $foreignKeys['DELETE_RULE']; |
194 | 194 | $list[] = ' $wizard->table()->foreign()->constraint(\''.$constraintName.'\')->key(\''.$key.'\')->references(\''.$referenceTable.'\',\''.$referenceColumn.'\')->onDelete()->'.strtolower($rule).'(); |
195 | 195 | '; |
196 | 196 | } |
197 | 197 | } |
198 | 198 | |
199 | - return implode('',$list); |
|
199 | + return implode('', $list); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | /** |
@@ -207,43 +207,43 @@ discard block |
||
207 | 207 | */ |
208 | 208 | private function getColumnTransformers($column) |
209 | 209 | { |
210 | - if($column=='datetime'){ |
|
210 | + if ($column=='datetime') { |
|
211 | 211 | return 'datetime()'; |
212 | 212 | } |
213 | - elseif($column=='longtext'){ |
|
213 | + elseif ($column=='longtext') { |
|
214 | 214 | return 'longtext()'; |
215 | 215 | } |
216 | - elseif($column=='date'){ |
|
216 | + elseif ($column=='date') { |
|
217 | 217 | return 'date()'; |
218 | 218 | } |
219 | - elseif($column=='text'){ |
|
219 | + elseif ($column=='text') { |
|
220 | 220 | return 'text()'; |
221 | 221 | } |
222 | - elseif($column=='timestamp'){ |
|
222 | + elseif ($column=='timestamp') { |
|
223 | 223 | return 'timestamp()'; |
224 | 224 | } |
225 | - elseif($column=='mediumint'){ |
|
225 | + elseif ($column=='mediumint') { |
|
226 | 226 | return 'mediumint()'; |
227 | 227 | } |
228 | - elseif($column=='tinyint'){ |
|
228 | + elseif ($column=='tinyint') { |
|
229 | 229 | return 'tinyint()'; |
230 | 230 | } |
231 | - elseif($column=='float'){ |
|
231 | + elseif ($column=='float') { |
|
232 | 232 | return 'float()'; |
233 | 233 | } |
234 | - elseif($column=='mediumtext'){ |
|
234 | + elseif ($column=='mediumtext') { |
|
235 | 235 | return 'mediumtext()'; |
236 | 236 | } |
237 | - elseif($column=='mediumblob'){ |
|
237 | + elseif ($column=='mediumblob') { |
|
238 | 238 | return 'mediumblob()'; |
239 | 239 | } |
240 | - elseif($column=='blob'){ |
|
240 | + elseif ($column=='blob') { |
|
241 | 241 | return 'blob()'; |
242 | 242 | } |
243 | - elseif(preg_match('@enum.*\((.*?)\)@',$column,$enum)){ |
|
243 | + elseif (preg_match('@enum.*\((.*?)\)@', $column, $enum)) { |
|
244 | 244 | return 'enum(['.$enum[1].'])'; |
245 | 245 | } |
246 | - else{ |
|
246 | + else { |
|
247 | 247 | return $column; |
248 | 248 | } |
249 | 249 | } |
@@ -255,11 +255,11 @@ discard block |
||
255 | 255 | * @param $field |
256 | 256 | * @return void|mixed |
257 | 257 | */ |
258 | - private function getIndexInformation($index,$field) |
|
258 | + private function getIndexInformation($index, $field) |
|
259 | 259 | { |
260 | 260 | foreach ($index as $key=>$item) { |
261 | 261 | |
262 | - if($item['Column_name'] == $field){ |
|
262 | + if ($item['Column_name']==$field) { |
|
263 | 263 | return $index[$key]; |
264 | 264 | } |
265 | 265 | } |
@@ -277,13 +277,13 @@ discard block |
||
277 | 277 | { |
278 | 278 | $arguments = $this->schema->getArguments(); |
279 | 279 | |
280 | - $only = explode(',',$arguments['only']); |
|
280 | + $only = explode(',', $arguments['only']); |
|
281 | 281 | |
282 | 282 | $list = []; |
283 | 283 | |
284 | - foreach($only as $table){ |
|
284 | + foreach ($only as $table) { |
|
285 | 285 | |
286 | - if(in_array($table,$tables) || in_array($table = strtolower($table),$tables)){ |
|
286 | + if (in_array($table, $tables) || in_array($table = strtolower($table), $tables)) { |
|
287 | 287 | $list[] = $table; |
288 | 288 | } |
289 | 289 | } |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | { |
303 | 303 | $list = []; |
304 | 304 | foreach ($index as $key=>$item) { |
305 | - if($item['Non_unique']==1 && $item['Key_name']!=='PRIMARY'){ |
|
305 | + if ($item['Non_unique']==1 && $item['Key_name']!=='PRIMARY') { |
|
306 | 306 | $list[$item['Key_name']][] = $item['Column_name']; |
307 | 307 | } |
308 | 308 | } |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * @param ApplicationContracts $app |
19 | 19 | * @param null|object $route |
20 | 20 | */ |
21 | - public function __construct(ApplicationContracts $app, $route=null) |
|
21 | + public function __construct(ApplicationContracts $app, $route = null) |
|
22 | 22 | { |
23 | 23 | parent::__construct($app); |
24 | 24 | |
@@ -34,53 +34,53 @@ discard block |
||
34 | 34 | { |
35 | 35 | $routes = $this->route->getRoutes(); |
36 | 36 | |
37 | - if(!isset($routes['pattern'])){ |
|
37 | + if (!isset($routes['pattern'])) { |
|
38 | 38 | return []; |
39 | 39 | } |
40 | 40 | |
41 | 41 | $patterns = $routes['pattern']; |
42 | - $urlRoute = array_filter(route(),'strlen'); |
|
42 | + $urlRoute = array_filter(route(), 'strlen'); |
|
43 | 43 | |
44 | 44 | $patternList = []; |
45 | 45 | |
46 | - foreach($routes['data'] as $patternKey=>$routeData){ |
|
47 | - if($routeData['http']==httpMethod()){ |
|
48 | - $patternList[$patternKey]=$patterns[$patternKey]; |
|
46 | + foreach ($routes['data'] as $patternKey=>$routeData) { |
|
47 | + if ($routeData['http']==httpMethod()) { |
|
48 | + $patternList[$patternKey] = $patterns[$patternKey]; |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 | |
52 | 52 | $scoredList = []; |
53 | 53 | |
54 | - foreach ($patternList as $key=>$pattern){ |
|
54 | + foreach ($patternList as $key=>$pattern) { |
|
55 | 55 | |
56 | 56 | $patternCount = $this->getPatternRealCount($pattern); |
57 | 57 | |
58 | - if(count($urlRoute)==0 && count($urlRoute)==0) return array_key_first($patternList); |
|
58 | + if (count($urlRoute)==0 && count($urlRoute)==0) return array_key_first($patternList); |
|
59 | 59 | |
60 | - if(isset($patternCount['optional'])){ |
|
61 | - $optionalCount = count($patternCount['default']) + count($patternCount['optional']); |
|
60 | + if (isset($patternCount['optional'])) { |
|
61 | + $optionalCount = count($patternCount['default'])+count($patternCount['optional']); |
|
62 | 62 | } |
63 | 63 | |
64 | - if(count($urlRoute) == count($patternCount['default']) || |
|
64 | + if (count($urlRoute)==count($patternCount['default']) || |
|
65 | 65 | (isset($optionalCount) && count($urlRoute)>count($patternCount['default']) && $optionalCount>=count($urlRoute)) |
66 | - ){ |
|
66 | + ) { |
|
67 | 67 | |
68 | - foreach ($pattern as $pkey=>$item){ |
|
68 | + foreach ($pattern as $pkey=>$item) { |
|
69 | 69 | |
70 | - if($this->route->isMatchVaribleRegexPattern($item)===false){ |
|
71 | - if(isset($urlRoute[$pkey]) && $urlRoute[$pkey]==$item){ |
|
70 | + if ($this->route->isMatchVaribleRegexPattern($item)===false) { |
|
71 | + if (isset($urlRoute[$pkey]) && $urlRoute[$pkey]==$item) { |
|
72 | 72 | $scoredList[$key][] = 3; |
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
76 | - if($this->route->isMatchVaribleRegexPattern($item) && !$this->route->isOptionalVaribleRegexPattern($item)){ |
|
77 | - if(isset($urlRoute[$pkey])){ |
|
76 | + if ($this->route->isMatchVaribleRegexPattern($item) && !$this->route->isOptionalVaribleRegexPattern($item)) { |
|
77 | + if (isset($urlRoute[$pkey])) { |
|
78 | 78 | $scoredList[$key][] = 2; |
79 | 79 | } |
80 | 80 | } |
81 | 81 | |
82 | - if($this->route->isMatchVaribleRegexPattern($item) && $this->route->isOptionalVaribleRegexPattern($item)){ |
|
83 | - if(isset($urlRoute[$pkey])){ |
|
82 | + if ($this->route->isMatchVaribleRegexPattern($item) && $this->route->isOptionalVaribleRegexPattern($item)) { |
|
83 | + if (isset($urlRoute[$pkey])) { |
|
84 | 84 | $scoredList[$key][] = 1; |
85 | 85 | } |
86 | 86 | } |
@@ -104,14 +104,14 @@ discard block |
||
104 | 104 | $list = []; |
105 | 105 | $list['default'] = []; |
106 | 106 | |
107 | - foreach ($pattern as $key=>$value){ |
|
108 | - if(($this->route->isMatchVaribleRegexPattern($value)===false) || ($this->route->isMatchVaribleRegexPattern($value) |
|
109 | - && !$this->route->isOptionalVaribleRegexPattern($value))){ |
|
107 | + foreach ($pattern as $key=>$value) { |
|
108 | + if (($this->route->isMatchVaribleRegexPattern($value)===false) || ($this->route->isMatchVaribleRegexPattern($value) |
|
109 | + && !$this->route->isOptionalVaribleRegexPattern($value))) { |
|
110 | 110 | $list['default'][$key] = $value; |
111 | 111 | } |
112 | 112 | |
113 | - if(($this->route->isMatchVaribleRegexPattern($value) |
|
114 | - && $this->route->isOptionalVaribleRegexPattern($value))){ |
|
113 | + if (($this->route->isMatchVaribleRegexPattern($value) |
|
114 | + && $this->route->isOptionalVaribleRegexPattern($value))) { |
|
115 | 115 | $list['optional'][] = true; |
116 | 116 | } |
117 | 117 | } |
@@ -125,16 +125,16 @@ discard block |
||
125 | 125 | * @param array $scoredList |
126 | 126 | * @return false|int|string |
127 | 127 | */ |
128 | - private function showKeyAccordingToScoredList($scoredList=array()) |
|
128 | + private function showKeyAccordingToScoredList($scoredList = array()) |
|
129 | 129 | { |
130 | 130 | $scored = []; |
131 | 131 | |
132 | - foreach($scoredList as $key=>$item){ |
|
132 | + foreach ($scoredList as $key=>$item) { |
|
133 | 133 | $scored[$key] = array_sum($item); |
134 | 134 | } |
135 | 135 | |
136 | - if(count($scored)){ |
|
137 | - return array_search(max($scored),$scored); |
|
136 | + if (count($scored)) { |
|
137 | + return array_search(max($scored), $scored); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | return null; |
@@ -152,8 +152,8 @@ discard block |
||
152 | 152 | $route = route(); |
153 | 153 | |
154 | 154 | foreach ($pattern as $key=>$item) { |
155 | - if($this->route->isMatchVaribleRegexPattern($item)===false){ |
|
156 | - if(isset($route[$key]) && $item!==$route[$key]){ |
|
155 | + if ($this->route->isMatchVaribleRegexPattern($item)===false) { |
|
156 | + if (isset($route[$key]) && $item!==$route[$key]) { |
|
157 | 157 | return false; |
158 | 158 | } |
159 | 159 | } |
@@ -55,7 +55,9 @@ |
||
55 | 55 | |
56 | 56 | $patternCount = $this->getPatternRealCount($pattern); |
57 | 57 | |
58 | - if(count($urlRoute)==0 && count($urlRoute)==0) return array_key_first($patternList); |
|
58 | + if(count($urlRoute)==0 && count($urlRoute)==0) { |
|
59 | + return array_key_first($patternList); |
|
60 | + } |
|
59 | 61 | |
60 | 62 | if(isset($patternCount['optional'])){ |
61 | 63 | $optionalCount = count($patternCount['default']) + count($patternCount['optional']); |
@@ -36,11 +36,11 @@ discard block |
||
36 | 36 | * @param null|string $method |
37 | 37 | * @return array |
38 | 38 | */ |
39 | - public static function getRoutes($method=null) : array |
|
39 | + public static function getRoutes($method = null) : array |
|
40 | 40 | { |
41 | 41 | // it collects and |
42 | 42 | // executes route data in an array. |
43 | - if(is_null($method)){ |
|
43 | + if (is_null($method)) { |
|
44 | 44 | return static::$routes; |
45 | 45 | } |
46 | 46 | |
@@ -48,16 +48,16 @@ discard block |
||
48 | 48 | |
49 | 49 | $routes = self::getRoutes(); |
50 | 50 | |
51 | - if(isset($routes['data'])){ |
|
52 | - foreach ($routes['data'] as $key=>$item){ |
|
53 | - if($item['http']==httpMethod()){ |
|
51 | + if (isset($routes['data'])) { |
|
52 | + foreach ($routes['data'] as $key=>$item) { |
|
53 | + if ($item['http']==httpMethod()) { |
|
54 | 54 | $httpRouteList['data'][$key] = $item; |
55 | 55 | } |
56 | 56 | } |
57 | 57 | } |
58 | 58 | |
59 | - if(isset($routes['pattern'],$httpRouteList['data'])){ |
|
60 | - foreach ($httpRouteList['data'] as $key=>$item){ |
|
59 | + if (isset($routes['pattern'], $httpRouteList['data'])) { |
|
60 | + foreach ($httpRouteList['data'] as $key=>$item) { |
|
61 | 61 | $httpRouteList['pattern'][$key] = $routes['pattern'][$key]; |
62 | 62 | } |
63 | 63 | } |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | { |
75 | 75 | // detects where the route path is coming from |
76 | 76 | // and returns this data in the static path. |
77 | - $trace = Utils::trace(2,'file'); |
|
77 | + $trace = Utils::trace(2, 'file'); |
|
78 | 78 | |
79 | 79 | // the trace is returned if the variable is available |
80 | 80 | // in the path data, otherwise it returns null. |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | /** |
15 | 15 | * @var $type |
16 | 16 | */ |
17 | - public $type='model'; |
|
17 | + public $type = 'model'; |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * @var array |
@@ -31,27 +31,27 @@ discard block |
||
31 | 31 | /** |
32 | 32 | * @var $commandRule |
33 | 33 | */ |
34 | - public $commandRule=['model','?table']; |
|
34 | + public $commandRule = ['model', '?table']; |
|
35 | 35 | |
36 | 36 | /** |
37 | 37 | * @method create |
38 | 38 | * @return mixed |
39 | 39 | */ |
40 | - public function create(){ |
|
40 | + public function create() { |
|
41 | 41 | |
42 | - $this->argument['file']=$this->argument['model']; |
|
42 | + $this->argument['file'] = $this->argument['model']; |
|
43 | 43 | |
44 | - if(!isset($this->argument['table'])){ |
|
45 | - $this->argument['table']=$this->argument['file'].'s'; |
|
44 | + if (!isset($this->argument['table'])) { |
|
45 | + $this->argument['table'] = $this->argument['file'].'s'; |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | //lower case for table |
49 | - $this->argument['table']=strtolower($this->argument['table']); |
|
49 | + $this->argument['table'] = strtolower($this->argument['table']); |
|
50 | 50 | |
51 | - $this->directory['modelDir']=$this->version().'/Model'; |
|
52 | - $this->directory['builderDir']=$this->directory['modelDir'].'/Builder'; |
|
53 | - $this->directory['contract']=$this->directory['modelDir'].'/Contract'; |
|
54 | - $this->directory['helper']=$this->directory['modelDir'].'/Helper'; |
|
51 | + $this->directory['modelDir'] = $this->version().'/Model'; |
|
52 | + $this->directory['builderDir'] = $this->directory['modelDir'].'/Builder'; |
|
53 | + $this->directory['contract'] = $this->directory['modelDir'].'/Contract'; |
|
54 | + $this->directory['helper'] = $this->directory['modelDir'].'/Helper'; |
|
55 | 55 | |
56 | 56 | //set project directory |
57 | 57 | $this->file->makeDirectory($this); |
@@ -61,12 +61,12 @@ discard block |
||
61 | 61 | $this->touch['model/builder'] = $this->model().'/Builder/'.$this->argument['file'].'Builder.php'; |
62 | 62 | $this->touch['model/contract'] = $this->model().'/Contract/'.$this->argument['file'].'Contract.php'; |
63 | 63 | |
64 | - if(!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php')){ |
|
65 | - $this->touch['model/scope'] = $this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php'; |
|
64 | + if (!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php')) { |
|
65 | + $this->touch['model/scope'] = $this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php'; |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | //set project touch |
69 | - $this->file->touch($this,[ |
|
69 | + $this->file->touch($this, [ |
|
70 | 70 | 'stub'=>'Model_Create' |
71 | 71 | ]); |
72 | 72 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | /** |
79 | 79 | * @return bool |
80 | 80 | */ |
81 | - private function setAnnotations(){ |
|
81 | + private function setAnnotations() { |
|
82 | 82 | |
83 | 83 | return Utils::changeClass(path()->serviceAnnotations().'.php', |
84 | 84 | ['Trait ServiceAnnotationsManager'=>'Trait ServiceAnnotationsManager'.PHP_EOL.' * @method \\'.app()->namespace()->builder().'\\'.$this->argument['file'].'Builder '.strtolower($this->argument['file']).'Builder' |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | foreach ($array as $values) { |
46 | 46 | if ($values instanceof Collection) { |
47 | 47 | $values = $values->all(); |
48 | - } elseif (! is_array($values)) { |
|
48 | + } elseif (!is_array($values)) { |
|
49 | 49 | continue; |
50 | 50 | } |
51 | 51 | $results = array_merge($results, $values); |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | { |
95 | 95 | $results = []; |
96 | 96 | foreach ($array as $key => $value) { |
97 | - if (is_array($value) && ! empty($value)) { |
|
97 | + if (is_array($value) && !empty($value)) { |
|
98 | 98 | $results = array_merge($results, static::dot($value, $prepend.$key.'.')); |
99 | 99 | } else { |
100 | 100 | $results[$prepend.$key] = $value; |
@@ -180,12 +180,12 @@ discard block |
||
180 | 180 | $result = []; |
181 | 181 | foreach ($array as $item) { |
182 | 182 | $item = $item instanceof Collection ? $item->all() : $item; |
183 | - if (! is_array($item)) { |
|
183 | + if (!is_array($item)) { |
|
184 | 184 | $result[] = $item; |
185 | - } elseif ($depth === 1) { |
|
185 | + } elseif ($depth===1) { |
|
186 | 186 | $result = array_merge($result, array_values($item)); |
187 | 187 | } else { |
188 | - $result = array_merge($result, static::flatten($item, $depth - 1)); |
|
188 | + $result = array_merge($result, static::flatten($item, $depth-1)); |
|
189 | 189 | } |
190 | 190 | } |
191 | 191 | return $result; |
@@ -200,8 +200,8 @@ discard block |
||
200 | 200 | public static function forget(&$array, $keys) |
201 | 201 | { |
202 | 202 | $original = &$array; |
203 | - $keys = (array) $keys; |
|
204 | - if (count($keys) === 0) { |
|
203 | + $keys = (array)$keys; |
|
204 | + if (count($keys)===0) { |
|
205 | 205 | return; |
206 | 206 | } |
207 | 207 | foreach ($keys as $key) { |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | $parts = explode('.', $key); |
214 | 214 | // clean up before each pass |
215 | 215 | $array = &$original; |
216 | - while (count($parts) > 1) { |
|
216 | + while (count($parts)>1) { |
|
217 | 217 | $part = array_shift($parts); |
218 | 218 | if (isset($array[$part]) && is_array($array[$part])) { |
219 | 219 | $array = &$array[$part]; |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | */ |
235 | 235 | public static function get($array, $key, $default = null) |
236 | 236 | { |
237 | - if (! static::accessible($array)) { |
|
237 | + if (!static::accessible($array)) { |
|
238 | 238 | return value($default); |
239 | 239 | } |
240 | 240 | if (is_null($key)) { |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | if (static::exists($array, $key)) { |
244 | 244 | return $array[$key]; |
245 | 245 | } |
246 | - if (strpos($key, '.') === false) { |
|
246 | + if (strpos($key, '.')===false) { |
|
247 | 247 | return $array[$key] ?? value($default); |
248 | 248 | } |
249 | 249 | foreach (explode('.', $key) as $segment) { |
@@ -267,11 +267,11 @@ discard block |
||
267 | 267 | if (is_null($keys)) { |
268 | 268 | return false; |
269 | 269 | } |
270 | - $keys = (array) $keys; |
|
271 | - if (! $array) { |
|
270 | + $keys = (array)$keys; |
|
271 | + if (!$array) { |
|
272 | 272 | return false; |
273 | 273 | } |
274 | - if ($keys === []) { |
|
274 | + if ($keys===[]) { |
|
275 | 275 | return false; |
276 | 276 | } |
277 | 277 | foreach ($keys as $key) { |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | public static function isAssoc(array $array) |
301 | 301 | { |
302 | 302 | $keys = array_keys($array); |
303 | - return array_keys($keys) !== $keys; |
|
303 | + return array_keys($keys)!==$keys; |
|
304 | 304 | } |
305 | 305 | /** |
306 | 306 | * Get a subset of the items from the given array. |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | */ |
312 | 312 | public static function only($array, $keys) |
313 | 313 | { |
314 | - return array_intersect_key($array, array_flip((array) $keys)); |
|
314 | + return array_intersect_key($array, array_flip((array)$keys)); |
|
315 | 315 | } |
316 | 316 | /** |
317 | 317 | * Pluck an array of values from an array. |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | } else { |
336 | 336 | $itemKey = data_get($item, $key); |
337 | 337 | if (is_object($itemKey) && method_exists($itemKey, '__toString')) { |
338 | - $itemKey = (string) $itemKey; |
|
338 | + $itemKey = (string)$itemKey; |
|
339 | 339 | } |
340 | 340 | $results[$itemKey] = $itemValue; |
341 | 341 | } |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | if (is_null($key)) { |
369 | 369 | array_unshift($array, $value); |
370 | 370 | } else { |
371 | - $array = [$key => $value] + $array; |
|
371 | + $array = [$key => $value]+$array; |
|
372 | 372 | } |
373 | 373 | return $array; |
374 | 374 | } |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | { |
400 | 400 | $requested = is_null($number) ? 1 : $number; |
401 | 401 | $count = count($array); |
402 | - if ($requested > $count) { |
|
402 | + if ($requested>$count) { |
|
403 | 403 | throw new InvalidArgumentException( |
404 | 404 | "You requested {$requested} items, but there are only {$count} items available." |
405 | 405 | ); |
@@ -407,12 +407,12 @@ discard block |
||
407 | 407 | if (is_null($number)) { |
408 | 408 | return $array[array_rand($array)]; |
409 | 409 | } |
410 | - if ((int) $number === 0) { |
|
410 | + if ((int)$number===0) { |
|
411 | 411 | return []; |
412 | 412 | } |
413 | 413 | $keys = array_rand($array, $number); |
414 | 414 | $results = []; |
415 | - foreach ((array) $keys as $key) { |
|
415 | + foreach ((array)$keys as $key) { |
|
416 | 416 | $results[] = $array[$key]; |
417 | 417 | } |
418 | 418 | return $results; |
@@ -433,12 +433,12 @@ discard block |
||
433 | 433 | return $array = $value; |
434 | 434 | } |
435 | 435 | $keys = explode('.', $key); |
436 | - while (count($keys) > 1) { |
|
436 | + while (count($keys)>1) { |
|
437 | 437 | $key = array_shift($keys); |
438 | 438 | // If the key doesn't exist at this depth, we will just create an empty array |
439 | 439 | // to hold the next value, allowing us to create the arrays to hold final |
440 | 440 | // values at the correct depth. Then we'll keep digging into the array. |
441 | - if (! isset($array[$key]) || ! is_array($array[$key])) { |
|
441 | + if (!isset($array[$key]) || !is_array($array[$key])) { |
|
442 | 442 | $array[$key] = []; |
443 | 443 | } |
444 | 444 | $array = &$array[$key]; |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | shuffle($array); |
460 | 460 | } else { |
461 | 461 | srand($seed); |
462 | - usort($array, function () { |
|
462 | + usort($array, function() { |
|
463 | 463 | return rand(-1, 1); |
464 | 464 | }); |
465 | 465 | } |
@@ -536,16 +536,16 @@ discard block |
||
536 | 536 | * @param array $referenceArray |
537 | 537 | * @return array |
538 | 538 | */ |
539 | - public static function removeSameValues($removeArray=array(),$referenceArray=array()) |
|
539 | + public static function removeSameValues($removeArray = array(), $referenceArray = array()) |
|
540 | 540 | { |
541 | 541 | $list = []; |
542 | 542 | |
543 | - foreach ($removeArray as $remove){ |
|
544 | - if(!in_array($remove,$referenceArray)){ |
|
545 | - $list[]=$remove; |
|
543 | + foreach ($removeArray as $remove) { |
|
544 | + if (!in_array($remove, $referenceArray)) { |
|
545 | + $list[] = $remove; |
|
546 | 546 | } |
547 | 547 | } |
548 | - return array_merge($referenceArray,$list); |
|
548 | + return array_merge($referenceArray, $list); |
|
549 | 549 | } |
550 | 550 | |
551 | 551 | /** |
@@ -553,9 +553,9 @@ discard block |
||
553 | 553 | * @param $key |
554 | 554 | * @return null |
555 | 555 | */ |
556 | - public static function isset($array,$key) |
|
556 | + public static function isset($array, $key) |
|
557 | 557 | { |
558 | - if(isset($array[$key])){ |
|
558 | + if (isset($array[$key])) { |
|
559 | 559 | return $array[$key]; |
560 | 560 | } |
561 | 561 | return null; |
@@ -566,13 +566,13 @@ discard block |
||
566 | 566 | * @param null $withKey |
567 | 567 | * @return bool |
568 | 568 | */ |
569 | - public static function isArrayWithCount($array,$withKey=null) |
|
569 | + public static function isArrayWithCount($array, $withKey = null) |
|
570 | 570 | { |
571 | - if($withKey===null){ |
|
571 | + if ($withKey===null) { |
|
572 | 572 | return is_array($array) && count($array); |
573 | 573 | } |
574 | 574 | |
575 | - return isset($array[$withKey]) && self::isArrayWithCount($array[$withKey],null); |
|
575 | + return isset($array[$withKey]) && self::isArrayWithCount($array[$withKey], null); |
|
576 | 576 | } |
577 | 577 | |
578 | 578 | /** |
@@ -580,12 +580,12 @@ discard block |
||
580 | 580 | * @param $array2 |
581 | 581 | * @return int |
582 | 582 | */ |
583 | - public static function arrayDiffKey($array1,$array2) |
|
583 | + public static function arrayDiffKey($array1, $array2) |
|
584 | 584 | { |
585 | - $forArray1 = array_diff_key($array1,$array2); |
|
586 | - $forArray2 = array_diff_key($array2,$array1); |
|
585 | + $forArray1 = array_diff_key($array1, $array2); |
|
586 | + $forArray2 = array_diff_key($array2, $array1); |
|
587 | 587 | |
588 | - if(count($forArray1)=="0" && count($forArray2)=="0"){ |
|
588 | + if (count($forArray1)=="0" && count($forArray2)=="0") { |
|
589 | 589 | return true; |
590 | 590 | } |
591 | 591 | return false; |
@@ -597,12 +597,12 @@ discard block |
||
597 | 597 | * @param $original |
598 | 598 | * @param array $overwrite |
599 | 599 | */ |
600 | - public static function overwriteWith($original,$overwrite=array()) |
|
600 | + public static function overwriteWith($original, $overwrite = array()) |
|
601 | 601 | { |
602 | - foreach ($original as $key=>$item){ |
|
602 | + foreach ($original as $key=>$item) { |
|
603 | 603 | |
604 | - if(array_key_exists($key,$overwrite)){ |
|
605 | - array_splice($original,$key,0,$overwrite[$key]); |
|
604 | + if (array_key_exists($key, $overwrite)) { |
|
605 | + array_splice($original, $key, 0, $overwrite[$key]); |
|
606 | 606 | } |
607 | 607 | } |
608 | 608 | |
@@ -616,12 +616,12 @@ discard block |
||
616 | 616 | * @param array $remove |
617 | 617 | * @return array |
618 | 618 | */ |
619 | - public static function removeKey($data,$remove=array()) |
|
619 | + public static function removeKey($data, $remove = array()) |
|
620 | 620 | { |
621 | 621 | $list = []; |
622 | 622 | |
623 | - foreach($data as $key=>$value){ |
|
624 | - if(!in_array($key,$remove)){ |
|
623 | + foreach ($data as $key=>$value) { |
|
624 | + if (!in_array($key, $remove)) { |
|
625 | 625 | $list[$key] = $value; |
626 | 626 | } |
627 | 627 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | // with query we bind the returned values to the params property of the auth object. |
55 | 55 | // and so the auth object will make a final return with these values. |
56 | - $this->paramValues('check',$query); |
|
56 | + $this->paramValues('check', $query); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -66,16 +66,16 @@ discard block |
||
66 | 66 | { |
67 | 67 | // using the driver object we write the query builder statement. |
68 | 68 | // we do the values of the query with the credentials that are sent. |
69 | - if(!is_null($provider = $this->auth->provider('login'))){ |
|
69 | + if (!is_null($provider = $this->auth->provider('login'))) { |
|
70 | 70 | $query = $provider($credentials->get()); |
71 | 71 | } |
72 | - else{ |
|
72 | + else { |
|
73 | 73 | $query = $this->setQuery($credentials); |
74 | 74 | } |
75 | 75 | |
76 | 76 | // with query we bind the returned values to the params property of the auth object. |
77 | 77 | // and so the auth object will make a final return with these values. |
78 | - $this->paramValues('login',$query); |
|
78 | + $this->paramValues('login', $query); |
|
79 | 79 | |
80 | 80 | // we assign the credential hash value |
81 | 81 | // to the global of the authenticate object. |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | // we update the token value. |
86 | 86 | $this->updateToken(); |
87 | 87 | |
88 | - if(isset($this->auth->params['authToken'])){ |
|
88 | + if (isset($this->auth->params['authToken'])) { |
|
89 | 89 | $this->saveDeviceToken(); |
90 | 90 | } |
91 | 91 | } |
@@ -104,18 +104,18 @@ discard block |
||
104 | 104 | |
105 | 105 | // with query we bind the returned values to the params property of the auth object. |
106 | 106 | // and so the auth object will make a final return with these values. |
107 | - $this->paramValues('logout',$query); |
|
107 | + $this->paramValues('logout', $query); |
|
108 | 108 | |
109 | 109 | //token updating as null |
110 | - if(isset($this->auth->params['authToken'])){ |
|
111 | - if(!$this->deleteDeviceToken()){ |
|
110 | + if (isset($this->auth->params['authToken'])) { |
|
111 | + if (!$this->deleteDeviceToken()) { |
|
112 | 112 | $this->auth->params['status'] = 0; |
113 | 113 | $this->auth->params['exception'] = 'logoutInternal'; |
114 | 114 | return false; |
115 | 115 | } |
116 | 116 | } |
117 | 117 | |
118 | - if($this->auth->params['status']===0){ |
|
118 | + if ($this->auth->params['status']===0) { |
|
119 | 119 | $this->auth->params['exception'] = 'logoutException'; |
120 | 120 | } |
121 | 121 | } |
@@ -68,8 +68,7 @@ |
||
68 | 68 | // we do the values of the query with the credentials that are sent. |
69 | 69 | if(!is_null($provider = $this->auth->provider('login'))){ |
70 | 70 | $query = $provider($credentials->get()); |
71 | - } |
|
72 | - else{ |
|
71 | + } else{ |
|
73 | 72 | $query = $this->setQuery($credentials); |
74 | 73 | } |
75 | 74 |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | { |
52 | 52 | $userId = $manager->getAuth()->params['userId']; |
53 | 53 | |
54 | - return DeviceToken::where('user_id',$userId)->get(); |
|
54 | + return DeviceToken::where('user_id', $userId)->get(); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -64,8 +64,8 @@ discard block |
||
64 | 64 | return DeviceToken::where(function($query) use($token) { |
65 | 65 | |
66 | 66 | //where query for token |
67 | - $query->where('token_integer',crc32(md5($token))); |
|
68 | - $query->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT']))); |
|
67 | + $query->where('token_integer', crc32(md5($token))); |
|
68 | + $query->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT']))); |
|
69 | 69 | }); |
70 | 70 | } |
71 | 71 | |
@@ -79,8 +79,8 @@ discard block |
||
79 | 79 | return DeviceToken::where(function($query) use($token) { |
80 | 80 | |
81 | 81 | //where query for token |
82 | - $query->where('token_integer',crc32(md5($token))); |
|
83 | - $query->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT']))); |
|
82 | + $query->where('token_integer', crc32(md5($token))); |
|
83 | + $query->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT']))); |
|
84 | 84 | |
85 | 85 | }); |
86 | 86 | } |
@@ -91,23 +91,23 @@ discard block |
||
91 | 91 | * @param null|object $query |
92 | 92 | * @return mixed |
93 | 93 | */ |
94 | - protected function checkPasswordVerify($query=null) |
|
94 | + protected function checkPasswordVerify($query = null) |
|
95 | 95 | { |
96 | - if(is_null($query) && isset($this->credentials['password'])){ |
|
97 | - if(!is_null($password = $this->auth->provider('password')) |
|
98 | - && $password($this->credentials['password'])=='verify'){ |
|
96 | + if (is_null($query) && isset($this->credentials['password'])) { |
|
97 | + if (!is_null($password = $this->auth->provider('password')) |
|
98 | + && $password($this->credentials['password'])=='verify') { |
|
99 | 99 | |
100 | 100 | $this->password = $this->credentials['password']; |
101 | 101 | $this->passwordVerify = true; |
102 | - $this->credentials = Arr::removeKey($this->credentials,['password']); |
|
102 | + $this->credentials = Arr::removeKey($this->credentials, ['password']); |
|
103 | 103 | |
104 | 104 | return null; |
105 | 105 | } |
106 | 106 | } |
107 | 107 | |
108 | - if(is_object($query) && $query->count()){ |
|
108 | + if (is_object($query) && $query->count()) { |
|
109 | 109 | $password = $query->first()->password; |
110 | - if(password_verify($this->password,$password)){ |
|
110 | + if (password_verify($this->password, $password)) { |
|
111 | 111 | return $query; |
112 | 112 | } |
113 | 113 | } |
@@ -137,24 +137,24 @@ discard block |
||
137 | 137 | |
138 | 138 | // with the callback method (eloquent model) |
139 | 139 | // we write the where clause. |
140 | - foreach ($this->credentials as $credential=>$credentialValue){ |
|
140 | + foreach ($this->credentials as $credential=>$credentialValue) { |
|
141 | 141 | |
142 | - if(!is_null($provider = $this->auth->provider($credential))){ |
|
143 | - $query->where($credential,$provider($credentialValue)); |
|
142 | + if (!is_null($provider = $this->auth->provider($credential))) { |
|
143 | + $query->where($credential, $provider($credentialValue)); |
|
144 | 144 | } |
145 | - else{ |
|
146 | - $query->where($credential,$credentialValue); |
|
145 | + else { |
|
146 | + $query->where($credential, $credentialValue); |
|
147 | 147 | } |
148 | 148 | } |
149 | 149 | |
150 | 150 | // for the authenticate query, |
151 | 151 | // the user can add additional queries by the service provider. |
152 | - if(!is_null($addQuery = $this->auth->provider('addQuery'))){ |
|
152 | + if (!is_null($addQuery = $this->auth->provider('addQuery'))) { |
|
153 | 153 | $addQuery($query); |
154 | 154 | } |
155 | 155 | }); |
156 | 156 | |
157 | - if(false === $this->passwordVerify){ |
|
157 | + if (false===$this->passwordVerify) { |
|
158 | 158 | return $query; |
159 | 159 | } |
160 | 160 | |
@@ -164,10 +164,10 @@ discard block |
||
164 | 164 | /** |
165 | 165 | * @return void|mixed |
166 | 166 | */ |
167 | - protected function updateToken($token=null) |
|
167 | + protected function updateToken($token = null) |
|
168 | 168 | { |
169 | 169 | //if query status value is true |
170 | - if($this->auth->params['status']){ |
|
170 | + if ($this->auth->params['status']) { |
|
171 | 171 | |
172 | 172 | // we go to the method that produces |
173 | 173 | // the classical token value and get the token value. |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | // if there is no update, we reset the status value to 0. |
178 | 178 | $update = $this->auth->params['builder']->update(['token'=>$this->auth->params['token']]); |
179 | 179 | |
180 | - if(!$update){ |
|
180 | + if (!$update) { |
|
181 | 181 | $this->auth->params['status'] = 0; |
182 | 182 | $this->auth->params['exception'] = 'update'; |
183 | 183 | } |
@@ -193,10 +193,10 @@ discard block |
||
193 | 193 | { |
194 | 194 | $token_integer = crc32(md5($this->auth->params['token'])); |
195 | 195 | |
196 | - if(!is_null($token_integer)){ |
|
196 | + if (!is_null($token_integer)) { |
|
197 | 197 | |
198 | - if(DeviceToken::where('user_id',$this->auth->params['authId']) |
|
199 | - ->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT'])))->count()==0){ |
|
198 | + if (DeviceToken::where('user_id', $this->auth->params['authId']) |
|
199 | + ->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT'])))->count()==0) { |
|
200 | 200 | |
201 | 201 | return DeviceToken::create([ |
202 | 202 | 'user_id' => $this->auth->params['authId'], |
@@ -207,10 +207,10 @@ discard block |
||
207 | 207 | 'expire' => $this->auth->getExpire(), |
208 | 208 | ]); |
209 | 209 | } |
210 | - else{ |
|
210 | + else { |
|
211 | 211 | |
212 | - return DeviceToken::where('user_id',$this->auth->params['authId']) |
|
213 | - ->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT']))) |
|
212 | + return DeviceToken::where('user_id', $this->auth->params['authId']) |
|
213 | + ->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT']))) |
|
214 | 214 | ->update([ |
215 | 215 | 'token' => $this->auth->params['token'], |
216 | 216 | 'token_integer' => $token_integer |
@@ -230,11 +230,11 @@ discard block |
||
230 | 230 | { |
231 | 231 | $token_integer = crc32(md5($this->auth->getTokenSentByUser())); |
232 | 232 | |
233 | - if(!is_null($token_integer)){ |
|
233 | + if (!is_null($token_integer)) { |
|
234 | 234 | |
235 | - DeviceToken::where('token_integer',$token_integer)->delete(); |
|
235 | + DeviceToken::where('token_integer', $token_integer)->delete(); |
|
236 | 236 | |
237 | - return (DeviceToken::where('token_integer',$token_integer)->count()) ? false : true; |
|
237 | + return (DeviceToken::where('token_integer', $token_integer)->count()) ? false : true; |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | } |
@@ -141,8 +141,7 @@ discard block |
||
141 | 141 | |
142 | 142 | if(!is_null($provider = $this->auth->provider($credential))){ |
143 | 143 | $query->where($credential,$provider($credentialValue)); |
144 | - } |
|
145 | - else{ |
|
144 | + } else{ |
|
146 | 145 | $query->where($credential,$credentialValue); |
147 | 146 | } |
148 | 147 | } |
@@ -206,8 +205,7 @@ discard block |
||
206 | 205 | 'device_agent_integer' => crc32(md5($_SERVER['HTTP_USER_AGENT'])), |
207 | 206 | 'expire' => $this->auth->getExpire(), |
208 | 207 | ]); |
209 | - } |
|
210 | - else{ |
|
208 | + } else{ |
|
211 | 209 | |
212 | 210 | return DeviceToken::where('user_id',$this->auth->params['authId']) |
213 | 211 | ->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT']))) |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | { |
37 | 37 | $this->config(); |
38 | 38 | |
39 | - if($this->guard=="default"){ |
|
39 | + if ($this->guard=="default") { |
|
40 | 40 | $this->setAuthenticateNeeds(); |
41 | 41 | } |
42 | 42 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function getAddToWhere() |
62 | 62 | { |
63 | - if(isset($this->config['guard'][$this->guard]['addToWhere'])){ |
|
63 | + if (isset($this->config['guard'][$this->guard]['addToWhere'])) { |
|
64 | 64 | return $this->config['guard'][$this->guard]['addToWhere']; |
65 | 65 | } |
66 | 66 | return null; |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public function getConfigToken() |
75 | 75 | { |
76 | - if(isset($this->config['guard'][$this->guard]['token'])){ |
|
76 | + if (isset($this->config['guard'][$this->guard]['token'])) { |
|
77 | 77 | return $this->config['guard'][$this->guard]['token']; |
78 | 78 | } |
79 | 79 | return null; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | { |
99 | 99 | $this->getModel(); |
100 | 100 | |
101 | - if($this->model=="Default"){ |
|
101 | + if ($this->model=="Default") { |
|
102 | 102 | |
103 | 103 | return $this->driverDefaultNamespace.'\\'.$this->getDriver().'\\UserBuilder'; |
104 | 104 | } |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | { |
126 | 126 | $this->getModel(); |
127 | 127 | |
128 | - if($this->model=="Default"){ |
|
128 | + if ($this->model=="Default") { |
|
129 | 129 | |
130 | 130 | return $this->driverDefaultNamespace.'\\'.$this->getDriver().'\\User'; |
131 | 131 | } |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | */ |
194 | 194 | public function provider($key) |
195 | 195 | { |
196 | - if(app()->has('authenticate.'.$key) && is_callable($provider = app()->get('authenticate.'.$key))){ |
|
196 | + if (app()->has('authenticate.'.$key) && is_callable($provider = app()->get('authenticate.'.$key))) { |
|
197 | 197 | return $provider; |
198 | 198 | } |
199 | 199 |
@@ -27,13 +27,13 @@ discard block |
||
27 | 27 | //the auto service to be called. |
28 | 28 | return ClosureDispatcher::bind($controllerInstance)->call(function() use($controllerInstance){ |
29 | 29 | |
30 | - if(property_exists($controllerInstance,'response')){ |
|
30 | + if (property_exists($controllerInstance, 'response')) { |
|
31 | 31 | return $controllerInstance->response; |
32 | 32 | } |
33 | 33 | |
34 | 34 | // if the client wishes, |
35 | 35 | // data can be returned in the supported format. |
36 | - if($this->app->has('clientResponseType')){ |
|
36 | + if ($this->app->has('clientResponseType')) { |
|
37 | 37 | return $this->app->get('clientResponseType'); |
38 | 38 | } |
39 | 39 | |
@@ -73,8 +73,7 @@ discard block |
||
73 | 73 | { |
74 | 74 | //we get the response type by checking the instanceController object from the router. |
75 | 75 | //Each type of response is in the base class in project directory. |
76 | - return ($this->getControllerInstance()===null) ? core()->responseType : |
|
77 | - $this->appResponseType(); |
|
76 | + return ($this->getControllerInstance()===null) ? core()->responseType : $this->appResponseType(); |
|
78 | 77 | } |
79 | 78 | |
80 | 79 | /** |
@@ -85,19 +84,19 @@ discard block |
||
85 | 84 | public function handle() |
86 | 85 | { |
87 | 86 | //definition for singleton instance |
88 | - define ('responseApp',true); |
|
87 | + define('responseApp', true); |
|
89 | 88 | |
90 | 89 | //get out putter for response |
91 | 90 | $formatter = $this->formatter(); |
92 | 91 | |
93 | 92 | //if out putter is not null |
94 | - if(Utils::isNamespaceExists($formatter)){ |
|
93 | + if (Utils::isNamespaceExists($formatter)) { |
|
95 | 94 | |
96 | 95 | //We resolve the response via the service container |
97 | 96 | //and run the handle method. |
98 | 97 | $result = app()->resolve($formatter)->{$this->getResponseKind()}($this->getOutPutter()); |
99 | 98 | |
100 | - $this->app->register('result',$result); |
|
99 | + $this->app->register('result', $result); |
|
101 | 100 | } |
102 | 101 | } |
103 | 102 | |
@@ -107,7 +106,7 @@ discard block |
||
107 | 106 | * @param array $data |
108 | 107 | * @return array |
109 | 108 | */ |
110 | - public function outputFormatter($data=array()) |
|
109 | + public function outputFormatter($data = array()) |
|
111 | 110 | { |
112 | 111 | $dataCapsule = config('response.data'); |
113 | 112 |