@@ -61,8 +61,8 @@ discard block |
||
61 | 61 | /** |
62 | 62 | * Check if the logged in user has the given group. |
63 | 63 | * |
64 | - * @param string $groupName |
|
65 | - * @param integer $userId |
|
64 | + * @param integer $user |
|
65 | + * @param string[] $groups |
|
66 | 66 | * @return boolean |
67 | 67 | */ |
68 | 68 | public function hasGroup($groups, $user = false) |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | * Reset the given user's password. |
245 | 245 | * |
246 | 246 | * @param array $credentials |
247 | - * @return array |
|
247 | + * @return string|null |
|
248 | 248 | */ |
249 | 249 | public function resetPassword($credentials) |
250 | 250 | { |
@@ -361,7 +361,6 @@ discard block |
||
361 | 361 | /** |
362 | 362 | * Save the given data to the logged in user. |
363 | 363 | * |
364 | - * @param array $credentials |
|
365 | 364 | * @return void |
366 | 365 | */ |
367 | 366 | public function saveProfile($data) |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $user = \Core::users()->find(\Auth::id(), $relations); |
29 | 29 | foreach ($user->groups()->get() as $group) |
30 | 30 | { |
31 | - $group->permissions->each(function ($permission) use (&$permissions){ |
|
31 | + $group->permissions->each(function($permission) use (&$permissions){ |
|
32 | 32 | $permissions[$permission->model][$permission->id] = $permission->name; |
33 | 33 | }); |
34 | 34 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $user = $user ?: $this->find(\Auth::id(), ['groups.permissions']); |
52 | 52 | $permissions = []; |
53 | 53 | |
54 | - $user->groups->pluck('permissions')->each(function ($permission) use (&$permissions, $model){ |
|
54 | + $user->groups->pluck('permissions')->each(function($permission) use (&$permissions, $model){ |
|
55 | 55 | $permissions = array_merge($permissions, $permission->where('model', $model)->pluck('name')->toArray()); |
56 | 56 | }); |
57 | 57 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | */ |
82 | 82 | public function assignGroups($user_id, $group_ids) |
83 | 83 | { |
84 | - \DB::transaction(function () use ($user_id, $group_ids) { |
|
84 | + \DB::transaction(function() use ($user_id, $group_ids) { |
|
85 | 85 | $user = $this->find($user_id); |
86 | 86 | $user->groups()->detach(); |
87 | 87 | $user->groups()->attach($group_ids); |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | */ |
249 | 249 | public function resetPassword($credentials) |
250 | 250 | { |
251 | - $response = \Password::reset($credentials, function ($user, $password) { |
|
251 | + $response = \Password::reset($credentials, function($user, $password) { |
|
252 | 252 | $user->password = $password; |
253 | 253 | $user->save(); |
254 | 254 | }); |
@@ -5,394 +5,394 @@ |
||
5 | 5 | |
6 | 6 | class UserRepository extends AbstractRepository |
7 | 7 | { |
8 | - /** |
|
9 | - * Return the model full namespace. |
|
10 | - * |
|
11 | - * @return string |
|
12 | - */ |
|
13 | - protected function getModel() |
|
14 | - { |
|
15 | - return 'App\Modules\Acl\AclUser'; |
|
16 | - } |
|
17 | - |
|
18 | - |
|
19 | - /** |
|
20 | - * Return the logged in user account. |
|
21 | - * |
|
22 | - * @param array $relations |
|
23 | - * @return boolean |
|
24 | - */ |
|
25 | - public function account($relations = []) |
|
26 | - { |
|
27 | - $permissions = []; |
|
28 | - $user = \Core::users()->find(\Auth::id(), $relations); |
|
29 | - foreach ($user->groups()->get() as $group) |
|
30 | - { |
|
31 | - $group->permissions->each(function ($permission) use (&$permissions){ |
|
32 | - $permissions[$permission->model][$permission->id] = $permission->name; |
|
33 | - }); |
|
34 | - } |
|
35 | - $user->permissions = $permissions; |
|
36 | - |
|
37 | - return $user; |
|
38 | - } |
|
39 | - |
|
40 | - /** |
|
41 | - * Check if the logged in user or the given user |
|
42 | - * has the given permissions on the given model. |
|
43 | - * |
|
44 | - * @param string $nameOfPermission |
|
45 | - * @param string $model |
|
46 | - * @param boolean $user |
|
47 | - * @return boolean |
|
48 | - */ |
|
49 | - public function can($nameOfPermission, $model, $user = false) |
|
50 | - { |
|
51 | - $user = $user ?: $this->find(\Auth::id(), ['groups.permissions']); |
|
52 | - $permissions = []; |
|
53 | - |
|
54 | - $user->groups->pluck('permissions')->each(function ($permission) use (&$permissions, $model){ |
|
55 | - $permissions = array_merge($permissions, $permission->where('model', $model)->pluck('name')->toArray()); |
|
56 | - }); |
|
8 | + /** |
|
9 | + * Return the model full namespace. |
|
10 | + * |
|
11 | + * @return string |
|
12 | + */ |
|
13 | + protected function getModel() |
|
14 | + { |
|
15 | + return 'App\Modules\Acl\AclUser'; |
|
16 | + } |
|
17 | + |
|
18 | + |
|
19 | + /** |
|
20 | + * Return the logged in user account. |
|
21 | + * |
|
22 | + * @param array $relations |
|
23 | + * @return boolean |
|
24 | + */ |
|
25 | + public function account($relations = []) |
|
26 | + { |
|
27 | + $permissions = []; |
|
28 | + $user = \Core::users()->find(\Auth::id(), $relations); |
|
29 | + foreach ($user->groups()->get() as $group) |
|
30 | + { |
|
31 | + $group->permissions->each(function ($permission) use (&$permissions){ |
|
32 | + $permissions[$permission->model][$permission->id] = $permission->name; |
|
33 | + }); |
|
34 | + } |
|
35 | + $user->permissions = $permissions; |
|
36 | + |
|
37 | + return $user; |
|
38 | + } |
|
39 | + |
|
40 | + /** |
|
41 | + * Check if the logged in user or the given user |
|
42 | + * has the given permissions on the given model. |
|
43 | + * |
|
44 | + * @param string $nameOfPermission |
|
45 | + * @param string $model |
|
46 | + * @param boolean $user |
|
47 | + * @return boolean |
|
48 | + */ |
|
49 | + public function can($nameOfPermission, $model, $user = false) |
|
50 | + { |
|
51 | + $user = $user ?: $this->find(\Auth::id(), ['groups.permissions']); |
|
52 | + $permissions = []; |
|
53 | + |
|
54 | + $user->groups->pluck('permissions')->each(function ($permission) use (&$permissions, $model){ |
|
55 | + $permissions = array_merge($permissions, $permission->where('model', $model)->pluck('name')->toArray()); |
|
56 | + }); |
|
57 | 57 | |
58 | - return in_array($nameOfPermission, $permissions); |
|
59 | - } |
|
60 | - |
|
61 | - /** |
|
62 | - * Check if the logged in user has the given group. |
|
63 | - * |
|
64 | - * @param string $groupName |
|
65 | - * @param integer $userId |
|
66 | - * @return boolean |
|
67 | - */ |
|
68 | - public function hasGroup($groups, $user = false) |
|
69 | - { |
|
70 | - $user = $user ?: $this->find(\Auth::id()); |
|
71 | - return $user->groups->whereIn('name', $groups)->count() ? true : false; |
|
72 | - } |
|
73 | - |
|
74 | - /** |
|
75 | - * Assign the given group ids to the given user. |
|
76 | - * |
|
77 | - * @param integer $user_id |
|
78 | - * @param array $group_ids |
|
79 | - * @return object |
|
80 | - */ |
|
81 | - public function assignGroups($user_id, $group_ids) |
|
82 | - { |
|
83 | - \DB::transaction(function () use ($user_id, $group_ids) { |
|
84 | - $user = $this->find($user_id); |
|
85 | - $user->groups()->detach(); |
|
86 | - $user->groups()->attach($group_ids); |
|
87 | - }); |
|
88 | - |
|
89 | - return $this->find($user_id); |
|
90 | - } |
|
91 | - |
|
92 | - |
|
93 | - /** |
|
94 | - * Handle a login request to the application. |
|
95 | - * |
|
96 | - * @param array $credentials |
|
97 | - * @param boolean $adminLogin |
|
98 | - * @return object |
|
99 | - */ |
|
100 | - public function login($credentials, $adminLogin = false) |
|
101 | - { |
|
102 | - if ( ! $user = $this->first(['email' => $credentials['email']])) |
|
103 | - { |
|
104 | - \ErrorHandler::loginFailed(); |
|
105 | - } |
|
106 | - else if ($adminLogin && ! $user->groups->whereIn('name', ['Admin'])->count()) |
|
107 | - { |
|
108 | - \ErrorHandler::loginFailed(); |
|
109 | - } |
|
110 | - else if ( ! $adminLogin && $user->groups->whereIn('name', ['Admin'])->count()) |
|
111 | - { |
|
112 | - \ErrorHandler::loginFailed(); |
|
113 | - } |
|
114 | - else if ($user->blocked) |
|
115 | - { |
|
116 | - \ErrorHandler::userIsBlocked(); |
|
117 | - } |
|
118 | - else if ( ! config('disable_confirm_email') && ! $user->confirmed) |
|
119 | - { |
|
120 | - \ErrorHandler::emailNotConfirmed(); |
|
121 | - } |
|
122 | - |
|
123 | - return $user; |
|
124 | - } |
|
125 | - |
|
126 | - /** |
|
127 | - * Handle a social login request of the none admin to the application. |
|
128 | - * |
|
129 | - * @param array $credentials |
|
130 | - * @return array |
|
131 | - */ |
|
132 | - public function loginSocial($credentials) |
|
133 | - { |
|
134 | - $access_token = $credentials['auth_code'] ? \Socialite::driver($credentials['type'])->getAccessToken($credentials['auth_code']) : $credentials['access_token']; |
|
135 | - $user = \Socialite::driver($credentials['type'])->userFromToken($access_token); |
|
136 | - |
|
137 | - if ( ! $user->email) |
|
138 | - { |
|
139 | - \ErrorHandler::noSocialEmail(); |
|
140 | - } |
|
141 | - |
|
142 | - if ( ! $registeredUser = $this->model->where('email', $user->email)->first()) |
|
143 | - { |
|
144 | - $data = ['email' => $user->email, 'password' => '']; |
|
145 | - return $this->register($data); |
|
146 | - } |
|
147 | - else |
|
148 | - { |
|
149 | - if ( ! \Auth::attempt(['email' => $registeredUser->email, 'password' => ''])) |
|
150 | - { |
|
151 | - \ErrorHandler::userAlreadyRegistered(); |
|
152 | - } |
|
153 | - |
|
154 | - $loginProxy = \App::make('App\Modules\Acl\Proxy\LoginProxy'); |
|
155 | - return $loginProxy->login(['email' => $registeredUser->email, 'password' => ''], 0); |
|
156 | - } |
|
157 | - } |
|
58 | + return in_array($nameOfPermission, $permissions); |
|
59 | + } |
|
60 | + |
|
61 | + /** |
|
62 | + * Check if the logged in user has the given group. |
|
63 | + * |
|
64 | + * @param string $groupName |
|
65 | + * @param integer $userId |
|
66 | + * @return boolean |
|
67 | + */ |
|
68 | + public function hasGroup($groups, $user = false) |
|
69 | + { |
|
70 | + $user = $user ?: $this->find(\Auth::id()); |
|
71 | + return $user->groups->whereIn('name', $groups)->count() ? true : false; |
|
72 | + } |
|
73 | + |
|
74 | + /** |
|
75 | + * Assign the given group ids to the given user. |
|
76 | + * |
|
77 | + * @param integer $user_id |
|
78 | + * @param array $group_ids |
|
79 | + * @return object |
|
80 | + */ |
|
81 | + public function assignGroups($user_id, $group_ids) |
|
82 | + { |
|
83 | + \DB::transaction(function () use ($user_id, $group_ids) { |
|
84 | + $user = $this->find($user_id); |
|
85 | + $user->groups()->detach(); |
|
86 | + $user->groups()->attach($group_ids); |
|
87 | + }); |
|
88 | + |
|
89 | + return $this->find($user_id); |
|
90 | + } |
|
91 | + |
|
92 | + |
|
93 | + /** |
|
94 | + * Handle a login request to the application. |
|
95 | + * |
|
96 | + * @param array $credentials |
|
97 | + * @param boolean $adminLogin |
|
98 | + * @return object |
|
99 | + */ |
|
100 | + public function login($credentials, $adminLogin = false) |
|
101 | + { |
|
102 | + if ( ! $user = $this->first(['email' => $credentials['email']])) |
|
103 | + { |
|
104 | + \ErrorHandler::loginFailed(); |
|
105 | + } |
|
106 | + else if ($adminLogin && ! $user->groups->whereIn('name', ['Admin'])->count()) |
|
107 | + { |
|
108 | + \ErrorHandler::loginFailed(); |
|
109 | + } |
|
110 | + else if ( ! $adminLogin && $user->groups->whereIn('name', ['Admin'])->count()) |
|
111 | + { |
|
112 | + \ErrorHandler::loginFailed(); |
|
113 | + } |
|
114 | + else if ($user->blocked) |
|
115 | + { |
|
116 | + \ErrorHandler::userIsBlocked(); |
|
117 | + } |
|
118 | + else if ( ! config('disable_confirm_email') && ! $user->confirmed) |
|
119 | + { |
|
120 | + \ErrorHandler::emailNotConfirmed(); |
|
121 | + } |
|
122 | + |
|
123 | + return $user; |
|
124 | + } |
|
125 | + |
|
126 | + /** |
|
127 | + * Handle a social login request of the none admin to the application. |
|
128 | + * |
|
129 | + * @param array $credentials |
|
130 | + * @return array |
|
131 | + */ |
|
132 | + public function loginSocial($credentials) |
|
133 | + { |
|
134 | + $access_token = $credentials['auth_code'] ? \Socialite::driver($credentials['type'])->getAccessToken($credentials['auth_code']) : $credentials['access_token']; |
|
135 | + $user = \Socialite::driver($credentials['type'])->userFromToken($access_token); |
|
136 | + |
|
137 | + if ( ! $user->email) |
|
138 | + { |
|
139 | + \ErrorHandler::noSocialEmail(); |
|
140 | + } |
|
141 | + |
|
142 | + if ( ! $registeredUser = $this->model->where('email', $user->email)->first()) |
|
143 | + { |
|
144 | + $data = ['email' => $user->email, 'password' => '']; |
|
145 | + return $this->register($data); |
|
146 | + } |
|
147 | + else |
|
148 | + { |
|
149 | + if ( ! \Auth::attempt(['email' => $registeredUser->email, 'password' => ''])) |
|
150 | + { |
|
151 | + \ErrorHandler::userAlreadyRegistered(); |
|
152 | + } |
|
153 | + |
|
154 | + $loginProxy = \App::make('App\Modules\Acl\Proxy\LoginProxy'); |
|
155 | + return $loginProxy->login(['email' => $registeredUser->email, 'password' => ''], 0); |
|
156 | + } |
|
157 | + } |
|
158 | 158 | |
159 | - /** |
|
160 | - * Handle a registration request. |
|
161 | - * |
|
162 | - * @param array $credentials |
|
163 | - * @return array |
|
164 | - */ |
|
165 | - public function register($credentials) |
|
166 | - { |
|
167 | - $user = $this->save($credentials); |
|
168 | - |
|
169 | - if ( ! config('disable_confirm_email')) |
|
170 | - { |
|
171 | - $this->sendConfirmationEmail($user->email); |
|
172 | - } |
|
173 | - } |
|
159 | + /** |
|
160 | + * Handle a registration request. |
|
161 | + * |
|
162 | + * @param array $credentials |
|
163 | + * @return array |
|
164 | + */ |
|
165 | + public function register($credentials) |
|
166 | + { |
|
167 | + $user = $this->save($credentials); |
|
168 | + |
|
169 | + if ( ! config('disable_confirm_email')) |
|
170 | + { |
|
171 | + $this->sendConfirmationEmail($user->email); |
|
172 | + } |
|
173 | + } |
|
174 | 174 | |
175 | - /** |
|
176 | - * Block the user. |
|
177 | - * |
|
178 | - * @param integer $user_id |
|
179 | - * @return object |
|
180 | - */ |
|
181 | - public function block($user_id) |
|
182 | - { |
|
183 | - if ( ! $user = $this->find($user_id)) |
|
184 | - { |
|
185 | - \ErrorHandler::notFound('user'); |
|
186 | - } |
|
187 | - if ( ! $this->hasGroup(['Admin'])) |
|
188 | - { |
|
189 | - \ErrorHandler::noPermissions(); |
|
190 | - } |
|
191 | - else if (\Auth::id() == $user_id) |
|
192 | - { |
|
193 | - \ErrorHandler::noPermissions(); |
|
194 | - } |
|
195 | - else if ($user->groups->pluck('name')->search('Admin', true) !== false) |
|
196 | - { |
|
197 | - \ErrorHandler::noPermissions(); |
|
198 | - } |
|
199 | - |
|
200 | - $user->blocked = 1; |
|
201 | - $user->save(); |
|
175 | + /** |
|
176 | + * Block the user. |
|
177 | + * |
|
178 | + * @param integer $user_id |
|
179 | + * @return object |
|
180 | + */ |
|
181 | + public function block($user_id) |
|
182 | + { |
|
183 | + if ( ! $user = $this->find($user_id)) |
|
184 | + { |
|
185 | + \ErrorHandler::notFound('user'); |
|
186 | + } |
|
187 | + if ( ! $this->hasGroup(['Admin'])) |
|
188 | + { |
|
189 | + \ErrorHandler::noPermissions(); |
|
190 | + } |
|
191 | + else if (\Auth::id() == $user_id) |
|
192 | + { |
|
193 | + \ErrorHandler::noPermissions(); |
|
194 | + } |
|
195 | + else if ($user->groups->pluck('name')->search('Admin', true) !== false) |
|
196 | + { |
|
197 | + \ErrorHandler::noPermissions(); |
|
198 | + } |
|
199 | + |
|
200 | + $user->blocked = 1; |
|
201 | + $user->save(); |
|
202 | 202 | |
203 | - return $user; |
|
204 | - } |
|
205 | - |
|
206 | - /** |
|
207 | - * Unblock the user. |
|
208 | - * |
|
209 | - * @param integer $user_id |
|
210 | - * @return object |
|
211 | - */ |
|
212 | - public function unblock($user_id) |
|
213 | - { |
|
214 | - if ( ! $this->hasGroup(['Admin'])) |
|
215 | - { |
|
216 | - \ErrorHandler::noPermissions(); |
|
217 | - } |
|
218 | - |
|
219 | - $user = $this->find($user_id); |
|
220 | - $user->blocked = 0; |
|
221 | - $user->save(); |
|
222 | - |
|
223 | - return $user; |
|
224 | - } |
|
225 | - |
|
226 | - /** |
|
227 | - * Send a reset link to the given user. |
|
228 | - * |
|
229 | - * @param string $email |
|
230 | - * @return void |
|
231 | - */ |
|
232 | - public function sendReset($email) |
|
233 | - { |
|
234 | - if ( ! $user = $this->model->where('email', $email)->first()) |
|
235 | - { |
|
236 | - \ErrorHandler::notFound('email'); |
|
237 | - } |
|
238 | - |
|
239 | - $token = \Password::getRepository()->create($user); |
|
240 | - \Core::notifications()->notify($user, 'ResetPassword', $token); |
|
241 | - } |
|
242 | - |
|
243 | - /** |
|
244 | - * Reset the given user's password. |
|
245 | - * |
|
246 | - * @param array $credentials |
|
247 | - * @return array |
|
248 | - */ |
|
249 | - public function resetPassword($credentials) |
|
250 | - { |
|
251 | - $response = \Password::reset($credentials, function ($user, $password) { |
|
252 | - $user->password = $password; |
|
253 | - $user->save(); |
|
254 | - }); |
|
255 | - |
|
256 | - switch ($response) { |
|
257 | - case \Password::PASSWORD_RESET: |
|
258 | - return 'success'; |
|
203 | + return $user; |
|
204 | + } |
|
205 | + |
|
206 | + /** |
|
207 | + * Unblock the user. |
|
208 | + * |
|
209 | + * @param integer $user_id |
|
210 | + * @return object |
|
211 | + */ |
|
212 | + public function unblock($user_id) |
|
213 | + { |
|
214 | + if ( ! $this->hasGroup(['Admin'])) |
|
215 | + { |
|
216 | + \ErrorHandler::noPermissions(); |
|
217 | + } |
|
218 | + |
|
219 | + $user = $this->find($user_id); |
|
220 | + $user->blocked = 0; |
|
221 | + $user->save(); |
|
222 | + |
|
223 | + return $user; |
|
224 | + } |
|
225 | + |
|
226 | + /** |
|
227 | + * Send a reset link to the given user. |
|
228 | + * |
|
229 | + * @param string $email |
|
230 | + * @return void |
|
231 | + */ |
|
232 | + public function sendReset($email) |
|
233 | + { |
|
234 | + if ( ! $user = $this->model->where('email', $email)->first()) |
|
235 | + { |
|
236 | + \ErrorHandler::notFound('email'); |
|
237 | + } |
|
238 | + |
|
239 | + $token = \Password::getRepository()->create($user); |
|
240 | + \Core::notifications()->notify($user, 'ResetPassword', $token); |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * Reset the given user's password. |
|
245 | + * |
|
246 | + * @param array $credentials |
|
247 | + * @return array |
|
248 | + */ |
|
249 | + public function resetPassword($credentials) |
|
250 | + { |
|
251 | + $response = \Password::reset($credentials, function ($user, $password) { |
|
252 | + $user->password = $password; |
|
253 | + $user->save(); |
|
254 | + }); |
|
255 | + |
|
256 | + switch ($response) { |
|
257 | + case \Password::PASSWORD_RESET: |
|
258 | + return 'success'; |
|
259 | 259 | |
260 | - case \Password::INVALID_TOKEN: |
|
261 | - \ErrorHandler::invalidResetToken('token'); |
|
262 | - |
|
263 | - case \Password::INVALID_PASSWORD: |
|
264 | - \ErrorHandler::invalidResetPassword('email'); |
|
265 | - |
|
266 | - case \Password::INVALID_USER: |
|
267 | - \ErrorHandler::notFound('user'); |
|
268 | - |
|
269 | - default: |
|
270 | - \ErrorHandler::generalError(); |
|
271 | - } |
|
272 | - } |
|
273 | - |
|
274 | - /** |
|
275 | - * Change the logged in user password. |
|
276 | - * |
|
277 | - * @param array $credentials |
|
278 | - * @return void |
|
279 | - */ |
|
280 | - public function changePassword($credentials) |
|
281 | - { |
|
282 | - $user = \Auth::user(); |
|
283 | - if ( ! \Hash::check($credentials['old_password'], $user->password)) |
|
284 | - { |
|
285 | - \ErrorHandler::invalidOldPassword(); |
|
286 | - } |
|
287 | - |
|
288 | - $user->password = $credentials['password']; |
|
289 | - $user->save(); |
|
290 | - } |
|
291 | - |
|
292 | - /** |
|
293 | - * Confirm email using the confirmation code. |
|
294 | - * |
|
295 | - * @param string $confirmationCode |
|
296 | - * @return void |
|
297 | - */ |
|
298 | - public function confirmEmail($confirmationCode) |
|
299 | - { |
|
300 | - $user = $this->first(['confirmation_code' => $confirmationCode]); |
|
301 | - $user->confirmed = 1; |
|
302 | - $user->confirmation_code = null; |
|
303 | - $user->save(); |
|
304 | - } |
|
305 | - |
|
306 | - /** |
|
307 | - * Send the confirmation mail. |
|
308 | - * |
|
309 | - * @param string $email |
|
310 | - * @return void |
|
311 | - */ |
|
312 | - public function sendConfirmationEmail($email) |
|
313 | - { |
|
314 | - $user = $this->first(['email' => $email]); |
|
315 | - if ($user->confirmed) |
|
316 | - { |
|
317 | - \ErrorHandler::emailAlreadyConfirmed(); |
|
318 | - } |
|
319 | - |
|
320 | - $user->confirmed = 0; |
|
321 | - $user->confirmation_code = sha1(microtime()); |
|
322 | - $user->save(); |
|
323 | - \Core::notifications()->notify($user, 'ConfirmEmail'); |
|
324 | - } |
|
325 | - |
|
326 | - /** |
|
327 | - * Paginate all users in the given group based on the given conditions. |
|
328 | - * |
|
329 | - * @param string $groupName |
|
330 | - * @param array $relations |
|
331 | - * @param integer $perPage |
|
332 | - * @param string $sortBy |
|
333 | - * @param boolean $desc |
|
334 | - * @return \Illuminate\Http\Response |
|
335 | - */ |
|
336 | - public function group($conditions, $groupName, $relations, $perPage, $sortBy, $desc) |
|
337 | - { |
|
338 | - unset($conditions['page']); |
|
339 | - $conditions = $this->constructConditions($conditions, $this->model); |
|
340 | - $sort = $desc ? 'desc' : 'asc'; |
|
341 | - $model = call_user_func_array("{$this->getModel()}::with", array($relations)); |
|
342 | - |
|
343 | - $model->whereHas('groups', function($q) use ($groupName){ |
|
344 | - $q->where('name', $groupName); |
|
345 | - }); |
|
260 | + case \Password::INVALID_TOKEN: |
|
261 | + \ErrorHandler::invalidResetToken('token'); |
|
262 | + |
|
263 | + case \Password::INVALID_PASSWORD: |
|
264 | + \ErrorHandler::invalidResetPassword('email'); |
|
265 | + |
|
266 | + case \Password::INVALID_USER: |
|
267 | + \ErrorHandler::notFound('user'); |
|
268 | + |
|
269 | + default: |
|
270 | + \ErrorHandler::generalError(); |
|
271 | + } |
|
272 | + } |
|
273 | + |
|
274 | + /** |
|
275 | + * Change the logged in user password. |
|
276 | + * |
|
277 | + * @param array $credentials |
|
278 | + * @return void |
|
279 | + */ |
|
280 | + public function changePassword($credentials) |
|
281 | + { |
|
282 | + $user = \Auth::user(); |
|
283 | + if ( ! \Hash::check($credentials['old_password'], $user->password)) |
|
284 | + { |
|
285 | + \ErrorHandler::invalidOldPassword(); |
|
286 | + } |
|
287 | + |
|
288 | + $user->password = $credentials['password']; |
|
289 | + $user->save(); |
|
290 | + } |
|
291 | + |
|
292 | + /** |
|
293 | + * Confirm email using the confirmation code. |
|
294 | + * |
|
295 | + * @param string $confirmationCode |
|
296 | + * @return void |
|
297 | + */ |
|
298 | + public function confirmEmail($confirmationCode) |
|
299 | + { |
|
300 | + $user = $this->first(['confirmation_code' => $confirmationCode]); |
|
301 | + $user->confirmed = 1; |
|
302 | + $user->confirmation_code = null; |
|
303 | + $user->save(); |
|
304 | + } |
|
305 | + |
|
306 | + /** |
|
307 | + * Send the confirmation mail. |
|
308 | + * |
|
309 | + * @param string $email |
|
310 | + * @return void |
|
311 | + */ |
|
312 | + public function sendConfirmationEmail($email) |
|
313 | + { |
|
314 | + $user = $this->first(['email' => $email]); |
|
315 | + if ($user->confirmed) |
|
316 | + { |
|
317 | + \ErrorHandler::emailAlreadyConfirmed(); |
|
318 | + } |
|
319 | + |
|
320 | + $user->confirmed = 0; |
|
321 | + $user->confirmation_code = sha1(microtime()); |
|
322 | + $user->save(); |
|
323 | + \Core::notifications()->notify($user, 'ConfirmEmail'); |
|
324 | + } |
|
325 | + |
|
326 | + /** |
|
327 | + * Paginate all users in the given group based on the given conditions. |
|
328 | + * |
|
329 | + * @param string $groupName |
|
330 | + * @param array $relations |
|
331 | + * @param integer $perPage |
|
332 | + * @param string $sortBy |
|
333 | + * @param boolean $desc |
|
334 | + * @return \Illuminate\Http\Response |
|
335 | + */ |
|
336 | + public function group($conditions, $groupName, $relations, $perPage, $sortBy, $desc) |
|
337 | + { |
|
338 | + unset($conditions['page']); |
|
339 | + $conditions = $this->constructConditions($conditions, $this->model); |
|
340 | + $sort = $desc ? 'desc' : 'asc'; |
|
341 | + $model = call_user_func_array("{$this->getModel()}::with", array($relations)); |
|
342 | + |
|
343 | + $model->whereHas('groups', function($q) use ($groupName){ |
|
344 | + $q->where('name', $groupName); |
|
345 | + }); |
|
346 | 346 | |
347 | 347 | |
348 | - if (count($conditions['conditionValues'])) |
|
349 | - { |
|
350 | - $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']); |
|
351 | - } |
|
352 | - |
|
353 | - if ($perPage) |
|
354 | - { |
|
355 | - return $model->orderBy($sortBy, $sort)->paginate($perPage); |
|
356 | - } |
|
357 | - |
|
358 | - return $model->orderBy($sortBy, $sort)->get(); |
|
359 | - } |
|
360 | - |
|
361 | - /** |
|
362 | - * Save the given data to the logged in user. |
|
363 | - * |
|
364 | - * @param array $credentials |
|
365 | - * @return void |
|
366 | - */ |
|
367 | - public function saveProfile($data) |
|
368 | - { |
|
369 | - if (array_key_exists('profile_picture', $data)) |
|
370 | - { |
|
371 | - $data['profile_picture'] = \Media::uploadImageBas64($data['profile_picture'], 'admins/profile_pictures'); |
|
372 | - } |
|
348 | + if (count($conditions['conditionValues'])) |
|
349 | + { |
|
350 | + $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']); |
|
351 | + } |
|
352 | + |
|
353 | + if ($perPage) |
|
354 | + { |
|
355 | + return $model->orderBy($sortBy, $sort)->paginate($perPage); |
|
356 | + } |
|
357 | + |
|
358 | + return $model->orderBy($sortBy, $sort)->get(); |
|
359 | + } |
|
360 | + |
|
361 | + /** |
|
362 | + * Save the given data to the logged in user. |
|
363 | + * |
|
364 | + * @param array $credentials |
|
365 | + * @return void |
|
366 | + */ |
|
367 | + public function saveProfile($data) |
|
368 | + { |
|
369 | + if (array_key_exists('profile_picture', $data)) |
|
370 | + { |
|
371 | + $data['profile_picture'] = \Media::uploadImageBas64($data['profile_picture'], 'admins/profile_pictures'); |
|
372 | + } |
|
373 | 373 | |
374 | - $data['id'] = \Auth::id(); |
|
375 | - $this->save($data); |
|
376 | - } |
|
377 | - |
|
378 | - /** |
|
379 | - * Ensure access token hasn't expired or revoked. |
|
380 | - * |
|
381 | - * @param string $accessToken |
|
382 | - * @return boolean |
|
383 | - */ |
|
384 | - public function accessTokenExpiredOrRevoked($accessToken) |
|
385 | - { |
|
386 | - |
|
387 | - $accessTokenRepository = \App::make('League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface'); |
|
388 | - $data = new ValidationData(); |
|
389 | - $data->setCurrentTime(time()); |
|
390 | - |
|
391 | - if ($accessToken->validate($data) === false || $accessTokenRepository->isAccessTokenRevoked($accessToken->getClaim('jti'))) |
|
392 | - { |
|
393 | - return true; |
|
394 | - } |
|
395 | - |
|
396 | - return false; |
|
397 | - } |
|
374 | + $data['id'] = \Auth::id(); |
|
375 | + $this->save($data); |
|
376 | + } |
|
377 | + |
|
378 | + /** |
|
379 | + * Ensure access token hasn't expired or revoked. |
|
380 | + * |
|
381 | + * @param string $accessToken |
|
382 | + * @return boolean |
|
383 | + */ |
|
384 | + public function accessTokenExpiredOrRevoked($accessToken) |
|
385 | + { |
|
386 | + |
|
387 | + $accessTokenRepository = \App::make('League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface'); |
|
388 | + $data = new ValidationData(); |
|
389 | + $data->setCurrentTime(time()); |
|
390 | + |
|
391 | + if ($accessToken->validate($data) === false || $accessTokenRepository->isAccessTokenRevoked($accessToken->getClaim('jti'))) |
|
392 | + { |
|
393 | + return true; |
|
394 | + } |
|
395 | + |
|
396 | + return false; |
|
397 | + } |
|
398 | 398 | } |
@@ -102,20 +102,16 @@ discard block |
||
102 | 102 | if ( ! $user = $this->first(['email' => $credentials['email']])) |
103 | 103 | { |
104 | 104 | \ErrorHandler::loginFailed(); |
105 | - } |
|
106 | - else if ($adminLogin && ! $user->groups->whereIn('name', ['Admin'])->count()) |
|
105 | + } else if ($adminLogin && ! $user->groups->whereIn('name', ['Admin'])->count()) |
|
107 | 106 | { |
108 | 107 | \ErrorHandler::loginFailed(); |
109 | - } |
|
110 | - else if ( ! $adminLogin && $user->groups->whereIn('name', ['Admin'])->count()) |
|
108 | + } else if ( ! $adminLogin && $user->groups->whereIn('name', ['Admin'])->count()) |
|
111 | 109 | { |
112 | 110 | \ErrorHandler::loginFailed(); |
113 | - } |
|
114 | - else if ($user->blocked) |
|
111 | + } else if ($user->blocked) |
|
115 | 112 | { |
116 | 113 | \ErrorHandler::userIsBlocked(); |
117 | - } |
|
118 | - else if ( ! config('disable_confirm_email') && ! $user->confirmed) |
|
114 | + } else if ( ! config('disable_confirm_email') && ! $user->confirmed) |
|
119 | 115 | { |
120 | 116 | \ErrorHandler::emailNotConfirmed(); |
121 | 117 | } |
@@ -143,8 +139,7 @@ discard block |
||
143 | 139 | { |
144 | 140 | $data = ['email' => $user->email, 'password' => '']; |
145 | 141 | return $this->register($data); |
146 | - } |
|
147 | - else |
|
142 | + } else |
|
148 | 143 | { |
149 | 144 | if ( ! \Auth::attempt(['email' => $registeredUser->email, 'password' => ''])) |
150 | 145 | { |
@@ -187,12 +182,10 @@ discard block |
||
187 | 182 | if ( ! $this->hasGroup(['Admin'])) |
188 | 183 | { |
189 | 184 | \ErrorHandler::noPermissions(); |
190 | - } |
|
191 | - else if (\Auth::id() == $user_id) |
|
185 | + } else if (\Auth::id() == $user_id) |
|
192 | 186 | { |
193 | 187 | \ErrorHandler::noPermissions(); |
194 | - } |
|
195 | - else if ($user->groups->pluck('name')->search('Admin', true) !== false) |
|
188 | + } else if ($user->groups->pluck('name')->search('Admin', true) !== false) |
|
196 | 189 | { |
197 | 190 | \ErrorHandler::noPermissions(); |
198 | 191 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @param array $relations |
34 | 34 | * @param string $sortBy |
35 | - * @param boolean $desc |
|
35 | + * @param integer $desc |
|
36 | 36 | * @param array $columns |
37 | 37 | * @return collection |
38 | 38 | */ |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * @param integer $perPage |
51 | 51 | * @param array $relations |
52 | 52 | * @param string $sortBy |
53 | - * @param boolean $desc |
|
53 | + * @param integer $desc |
|
54 | 54 | * @param array $columns |
55 | 55 | * @return collection |
56 | 56 | */ |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | * @param integer $perPage |
165 | 165 | * @param array $relations |
166 | 166 | * @param string $sortBy |
167 | - * @param boolean $desc |
|
167 | + * @param integer $desc |
|
168 | 168 | * @param array $columns |
169 | 169 | * @return collection |
170 | 170 | */ |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | * @param integer $perPage |
183 | 183 | * @param array $relations |
184 | 184 | * @param string $sortBy |
185 | - * @param boolean $desc |
|
185 | + * @param integer $desc |
|
186 | 186 | * @param array $columns |
187 | 187 | * @return collection |
188 | 188 | */ |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | * Save the given model to the storage. |
199 | 199 | * |
200 | 200 | * @param array $data |
201 | - * @return object |
|
201 | + * @return boolean |
|
202 | 202 | */ |
203 | 203 | public function save(array $data) |
204 | 204 | { |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | * id. |
517 | 517 | * |
518 | 518 | * @param integer $id |
519 | - * @param array $relations |
|
519 | + * @param string[] $relations |
|
520 | 520 | * @param array $columns |
521 | 521 | * @return object |
522 | 522 | */ |
@@ -532,7 +532,7 @@ discard block |
||
532 | 532 | * @param array $conditions array of conditions |
533 | 533 | * @param array $relations |
534 | 534 | * @param string $sortBy |
535 | - * @param boolean $desc |
|
535 | + * @param integer $desc |
|
536 | 536 | * @param array $columns |
537 | 537 | * @return collection |
538 | 538 | */ |
@@ -564,7 +564,7 @@ discard block |
||
564 | 564 | * @param array $conditions array of conditions |
565 | 565 | * @param integer $perPage |
566 | 566 | * @param string $sortBy |
567 | - * @param boolean $desc |
|
567 | + * @param integer $desc |
|
568 | 568 | * @param array $columns |
569 | 569 | * @return collection |
570 | 570 | */ |
@@ -4,716 +4,716 @@ |
||
4 | 4 | |
5 | 5 | abstract class AbstractRepository implements RepositoryInterface |
6 | 6 | { |
7 | - /** |
|
8 | - * The model implementation. |
|
9 | - * |
|
10 | - * @var object |
|
11 | - */ |
|
12 | - public $model; |
|
7 | + /** |
|
8 | + * The model implementation. |
|
9 | + * |
|
10 | + * @var object |
|
11 | + */ |
|
12 | + public $model; |
|
13 | 13 | |
14 | - /** |
|
15 | - * The config implementation. |
|
16 | - * |
|
17 | - * @var array |
|
18 | - */ |
|
19 | - protected $config; |
|
14 | + /** |
|
15 | + * The config implementation. |
|
16 | + * |
|
17 | + * @var array |
|
18 | + */ |
|
19 | + protected $config; |
|
20 | 20 | |
21 | - /** |
|
22 | - * Create new AbstractRepository instance. |
|
23 | - */ |
|
24 | - public function __construct() |
|
25 | - { |
|
26 | - $this->config = \CoreConfig::getConfig(); |
|
27 | - $this->model = \App::make($this->getModel()); |
|
28 | - } |
|
29 | - |
|
30 | - /** |
|
31 | - * Fetch all records with relations from the storage. |
|
32 | - * |
|
33 | - * @param array $relations |
|
34 | - * @param string $sortBy |
|
35 | - * @param boolean $desc |
|
36 | - * @param array $columns |
|
37 | - * @return collection |
|
38 | - */ |
|
39 | - public function all($relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
40 | - { |
|
41 | - $sort = $desc ? 'desc' : 'asc'; |
|
42 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->orderBy($sortBy, $sort)->get($columns); |
|
43 | - } |
|
44 | - |
|
45 | - /** |
|
46 | - * Fetch all records with relations from storage in pages |
|
47 | - * that matche the given query. |
|
48 | - * |
|
49 | - * @param string $query |
|
50 | - * @param integer $perPage |
|
51 | - * @param array $relations |
|
52 | - * @param string $sortBy |
|
53 | - * @param boolean $desc |
|
54 | - * @param array $columns |
|
55 | - * @return collection |
|
56 | - */ |
|
57 | - public function search($query, $perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
58 | - { |
|
59 | - $model = call_user_func_array("{$this->getModel()}::with", array($relations)); |
|
60 | - $conditionColumns = $this->model->searchable; |
|
61 | - $sort = $desc ? 'desc' : 'asc'; |
|
62 | - |
|
63 | - /** |
|
64 | - * Construct the select conditions for the model. |
|
65 | - */ |
|
66 | - $model->where(function ($q) use ($query, $conditionColumns, $relations){ |
|
67 | - |
|
68 | - if (count($conditionColumns)) |
|
69 | - { |
|
70 | - $column = 'LOWER(' . array_shift($conditionColumns) . ')'; |
|
71 | - if (str_contains($column, '->')) |
|
72 | - { |
|
73 | - $column = $this->wrapJsonSelector($column); |
|
74 | - } |
|
75 | - |
|
76 | - /** |
|
77 | - * Use the first element in the model columns to construct the first condition. |
|
78 | - */ |
|
79 | - $q->where(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
80 | - } |
|
81 | - |
|
82 | - /** |
|
83 | - * Loop through the rest of the columns to construct or where conditions. |
|
84 | - */ |
|
85 | - foreach ($conditionColumns as $column) |
|
86 | - { |
|
87 | - $column = 'LOWER(' . $column . ')'; |
|
88 | - if (str_contains($column, '->')) |
|
89 | - { |
|
90 | - $column = $this->wrapJsonSelector($column); |
|
91 | - } |
|
92 | - |
|
93 | - $q->orWhere(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
94 | - } |
|
95 | - |
|
96 | - /** |
|
97 | - * Loop through the model relations. |
|
98 | - */ |
|
99 | - foreach ($relations as $relation) |
|
100 | - { |
|
101 | - /** |
|
102 | - * Remove the sub relation if exists. |
|
103 | - */ |
|
104 | - $relation = explode('.', $relation)[0]; |
|
105 | - |
|
106 | - /** |
|
107 | - * Try to fetch the relation repository from the core. |
|
108 | - */ |
|
109 | - if (\Core::$relation()) |
|
110 | - { |
|
111 | - /** |
|
112 | - * Construct the relation condition. |
|
113 | - */ |
|
114 | - $q->orWhereHas($relation, function ($subModel) use ($query, $relation){ |
|
115 | - |
|
116 | - $subModel->where(function ($q) use ($query, $relation){ |
|
117 | - |
|
118 | - /** |
|
119 | - * Get columns of the relation. |
|
120 | - */ |
|
121 | - $subConditionColumns = \Core::$relation()->model->searchable; |
|
122 | - |
|
123 | - if (count($subConditionColumns)) |
|
124 | - { |
|
125 | - |
|
126 | - $column = 'LOWER(' . array_shift($subConditionColumns) . ')'; |
|
127 | - if (str_contains($column, '->')) |
|
128 | - { |
|
129 | - $column = $this->wrapJsonSelector($column); |
|
130 | - } |
|
131 | - |
|
132 | - /** |
|
133 | - * Use the first element in the relation model columns to construct the first condition. |
|
134 | - */ |
|
135 | - $q->where(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
136 | - } |
|
137 | - |
|
138 | - /** |
|
139 | - * Loop through the rest of the columns to construct or where conditions. |
|
140 | - */ |
|
141 | - foreach ($subConditionColumns as $subConditionColumn) |
|
142 | - { |
|
143 | - $column = 'LOWER(' . $subConditionColumn . ')'; |
|
144 | - if (str_contains($column, '->')) |
|
145 | - { |
|
146 | - $column = $this->wrapJsonSelector($column); |
|
147 | - } |
|
21 | + /** |
|
22 | + * Create new AbstractRepository instance. |
|
23 | + */ |
|
24 | + public function __construct() |
|
25 | + { |
|
26 | + $this->config = \CoreConfig::getConfig(); |
|
27 | + $this->model = \App::make($this->getModel()); |
|
28 | + } |
|
29 | + |
|
30 | + /** |
|
31 | + * Fetch all records with relations from the storage. |
|
32 | + * |
|
33 | + * @param array $relations |
|
34 | + * @param string $sortBy |
|
35 | + * @param boolean $desc |
|
36 | + * @param array $columns |
|
37 | + * @return collection |
|
38 | + */ |
|
39 | + public function all($relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
40 | + { |
|
41 | + $sort = $desc ? 'desc' : 'asc'; |
|
42 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->orderBy($sortBy, $sort)->get($columns); |
|
43 | + } |
|
44 | + |
|
45 | + /** |
|
46 | + * Fetch all records with relations from storage in pages |
|
47 | + * that matche the given query. |
|
48 | + * |
|
49 | + * @param string $query |
|
50 | + * @param integer $perPage |
|
51 | + * @param array $relations |
|
52 | + * @param string $sortBy |
|
53 | + * @param boolean $desc |
|
54 | + * @param array $columns |
|
55 | + * @return collection |
|
56 | + */ |
|
57 | + public function search($query, $perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
58 | + { |
|
59 | + $model = call_user_func_array("{$this->getModel()}::with", array($relations)); |
|
60 | + $conditionColumns = $this->model->searchable; |
|
61 | + $sort = $desc ? 'desc' : 'asc'; |
|
62 | + |
|
63 | + /** |
|
64 | + * Construct the select conditions for the model. |
|
65 | + */ |
|
66 | + $model->where(function ($q) use ($query, $conditionColumns, $relations){ |
|
67 | + |
|
68 | + if (count($conditionColumns)) |
|
69 | + { |
|
70 | + $column = 'LOWER(' . array_shift($conditionColumns) . ')'; |
|
71 | + if (str_contains($column, '->')) |
|
72 | + { |
|
73 | + $column = $this->wrapJsonSelector($column); |
|
74 | + } |
|
75 | + |
|
76 | + /** |
|
77 | + * Use the first element in the model columns to construct the first condition. |
|
78 | + */ |
|
79 | + $q->where(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
80 | + } |
|
81 | + |
|
82 | + /** |
|
83 | + * Loop through the rest of the columns to construct or where conditions. |
|
84 | + */ |
|
85 | + foreach ($conditionColumns as $column) |
|
86 | + { |
|
87 | + $column = 'LOWER(' . $column . ')'; |
|
88 | + if (str_contains($column, '->')) |
|
89 | + { |
|
90 | + $column = $this->wrapJsonSelector($column); |
|
91 | + } |
|
92 | + |
|
93 | + $q->orWhere(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
94 | + } |
|
95 | + |
|
96 | + /** |
|
97 | + * Loop through the model relations. |
|
98 | + */ |
|
99 | + foreach ($relations as $relation) |
|
100 | + { |
|
101 | + /** |
|
102 | + * Remove the sub relation if exists. |
|
103 | + */ |
|
104 | + $relation = explode('.', $relation)[0]; |
|
105 | + |
|
106 | + /** |
|
107 | + * Try to fetch the relation repository from the core. |
|
108 | + */ |
|
109 | + if (\Core::$relation()) |
|
110 | + { |
|
111 | + /** |
|
112 | + * Construct the relation condition. |
|
113 | + */ |
|
114 | + $q->orWhereHas($relation, function ($subModel) use ($query, $relation){ |
|
115 | + |
|
116 | + $subModel->where(function ($q) use ($query, $relation){ |
|
117 | + |
|
118 | + /** |
|
119 | + * Get columns of the relation. |
|
120 | + */ |
|
121 | + $subConditionColumns = \Core::$relation()->model->searchable; |
|
122 | + |
|
123 | + if (count($subConditionColumns)) |
|
124 | + { |
|
125 | + |
|
126 | + $column = 'LOWER(' . array_shift($subConditionColumns) . ')'; |
|
127 | + if (str_contains($column, '->')) |
|
128 | + { |
|
129 | + $column = $this->wrapJsonSelector($column); |
|
130 | + } |
|
131 | + |
|
132 | + /** |
|
133 | + * Use the first element in the relation model columns to construct the first condition. |
|
134 | + */ |
|
135 | + $q->where(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
136 | + } |
|
137 | + |
|
138 | + /** |
|
139 | + * Loop through the rest of the columns to construct or where conditions. |
|
140 | + */ |
|
141 | + foreach ($subConditionColumns as $subConditionColumn) |
|
142 | + { |
|
143 | + $column = 'LOWER(' . $subConditionColumn . ')'; |
|
144 | + if (str_contains($column, '->')) |
|
145 | + { |
|
146 | + $column = $this->wrapJsonSelector($column); |
|
147 | + } |
|
148 | 148 | |
149 | - $q->orWhere(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
150 | - } |
|
151 | - }); |
|
152 | - |
|
153 | - }); |
|
154 | - } |
|
155 | - } |
|
156 | - }); |
|
149 | + $q->orWhere(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
150 | + } |
|
151 | + }); |
|
152 | + |
|
153 | + }); |
|
154 | + } |
|
155 | + } |
|
156 | + }); |
|
157 | 157 | |
158 | - return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns); |
|
159 | - } |
|
158 | + return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns); |
|
159 | + } |
|
160 | 160 | |
161 | - /** |
|
162 | - * Fetch all records with relations from storage in pages. |
|
163 | - * |
|
164 | - * @param integer $perPage |
|
165 | - * @param array $relations |
|
166 | - * @param string $sortBy |
|
167 | - * @param boolean $desc |
|
168 | - * @param array $columns |
|
169 | - * @return collection |
|
170 | - */ |
|
171 | - public function paginate($perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
172 | - { |
|
173 | - $sort = $desc ? 'desc' : 'asc'; |
|
174 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->orderBy($sortBy, $sort)->paginate($perPage, $columns); |
|
175 | - } |
|
176 | - |
|
177 | - /** |
|
178 | - * Fetch all records with relations based on |
|
179 | - * the given condition from storage in pages. |
|
180 | - * |
|
181 | - * @param array $conditions array of conditions |
|
182 | - * @param integer $perPage |
|
183 | - * @param array $relations |
|
184 | - * @param string $sortBy |
|
185 | - * @param boolean $desc |
|
186 | - * @param array $columns |
|
187 | - * @return collection |
|
188 | - */ |
|
189 | - public function paginateBy($conditions, $perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
190 | - { |
|
191 | - unset($conditions['page']); |
|
192 | - $conditions = $this->constructConditions($conditions, $this->model); |
|
193 | - $sort = $desc ? 'desc' : 'asc'; |
|
194 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->paginate($perPage, $columns); |
|
195 | - } |
|
161 | + /** |
|
162 | + * Fetch all records with relations from storage in pages. |
|
163 | + * |
|
164 | + * @param integer $perPage |
|
165 | + * @param array $relations |
|
166 | + * @param string $sortBy |
|
167 | + * @param boolean $desc |
|
168 | + * @param array $columns |
|
169 | + * @return collection |
|
170 | + */ |
|
171 | + public function paginate($perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
172 | + { |
|
173 | + $sort = $desc ? 'desc' : 'asc'; |
|
174 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->orderBy($sortBy, $sort)->paginate($perPage, $columns); |
|
175 | + } |
|
176 | + |
|
177 | + /** |
|
178 | + * Fetch all records with relations based on |
|
179 | + * the given condition from storage in pages. |
|
180 | + * |
|
181 | + * @param array $conditions array of conditions |
|
182 | + * @param integer $perPage |
|
183 | + * @param array $relations |
|
184 | + * @param string $sortBy |
|
185 | + * @param boolean $desc |
|
186 | + * @param array $columns |
|
187 | + * @return collection |
|
188 | + */ |
|
189 | + public function paginateBy($conditions, $perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
190 | + { |
|
191 | + unset($conditions['page']); |
|
192 | + $conditions = $this->constructConditions($conditions, $this->model); |
|
193 | + $sort = $desc ? 'desc' : 'asc'; |
|
194 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->paginate($perPage, $columns); |
|
195 | + } |
|
196 | 196 | |
197 | - /** |
|
198 | - * Save the given model to the storage. |
|
199 | - * |
|
200 | - * @param array $data |
|
201 | - * @return object |
|
202 | - */ |
|
203 | - public function save(array $data) |
|
204 | - { |
|
205 | - $model = false; |
|
206 | - $modelClass = $this->model; |
|
207 | - $relations = []; |
|
208 | - |
|
209 | - \DB::transaction(function () use (&$model, &$relations, $data, $modelClass) { |
|
210 | - /** |
|
211 | - * If the id is present in the data then select the model for updating, |
|
212 | - * else create new model. |
|
213 | - * @var array |
|
214 | - */ |
|
215 | - $model = array_key_exists('id', $data) ? $modelClass->lockForUpdate()->find($data['id']) : new $modelClass; |
|
216 | - if ( ! $model) |
|
217 | - { |
|
218 | - \ErrorHandler::notFound(class_basename($modelClass) . ' with id : ' . $data['id']); |
|
219 | - } |
|
220 | - |
|
221 | - /** |
|
222 | - * Construct the model object with the given data, |
|
223 | - * and if there is a relation add it to relations array, |
|
224 | - * then save the model. |
|
225 | - */ |
|
226 | - foreach ($data as $key => $value) |
|
227 | - { |
|
228 | - /** |
|
229 | - * If the attribute is a relation. |
|
230 | - */ |
|
231 | - $relation = camel_case($key); |
|
232 | - if (method_exists($model, $relation) && \Core::$relation()) |
|
233 | - { |
|
234 | - /** |
|
235 | - * Check if the relation is a collection. |
|
236 | - */ |
|
237 | - if (class_basename($model->$relation) == 'Collection') |
|
238 | - { |
|
239 | - /** |
|
240 | - * If the relation has no value then marke the relation data |
|
241 | - * related to the model to be deleted. |
|
242 | - */ |
|
243 | - if ( ! $value || ! count($value)) |
|
244 | - { |
|
245 | - $relations[$relation] = 'delete'; |
|
246 | - } |
|
247 | - } |
|
248 | - if (is_array($value)) |
|
249 | - { |
|
250 | - /** |
|
251 | - * Loop through the relation data. |
|
252 | - */ |
|
253 | - foreach ($value as $attr => $val) |
|
254 | - { |
|
255 | - /** |
|
256 | - * Get the relation model. |
|
257 | - */ |
|
258 | - $relationBaseModel = \Core::$relation()->model; |
|
259 | - |
|
260 | - /** |
|
261 | - * Check if the relation is a collection. |
|
262 | - */ |
|
263 | - if (class_basename($model->$relation) == 'Collection') |
|
264 | - { |
|
265 | - /** |
|
266 | - * If the id is present in the data then select the relation model for updating, |
|
267 | - * else create new model. |
|
268 | - */ |
|
269 | - $relationModel = array_key_exists('id', $val) ? $relationBaseModel->lockForUpdate()->find($val['id']) : new $relationBaseModel; |
|
270 | - |
|
271 | - /** |
|
272 | - * If model doesn't exists. |
|
273 | - */ |
|
274 | - if ( ! $relationModel) |
|
275 | - { |
|
276 | - \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $val['id']); |
|
277 | - } |
|
278 | - |
|
279 | - /** |
|
280 | - * Loop through the relation attributes. |
|
281 | - */ |
|
282 | - foreach ($val as $attr => $val) |
|
283 | - { |
|
284 | - /** |
|
285 | - * Prevent the sub relations or attributes not in the fillable. |
|
286 | - */ |
|
287 | - if (gettype($val) !== 'object' && gettype($val) !== 'array' && array_search($attr, $relationModel->getFillable(), true) !== false) |
|
288 | - { |
|
289 | - $relationModel->$attr = $val; |
|
290 | - } |
|
291 | - } |
|
292 | - |
|
293 | - $relations[$relation][] = $relationModel; |
|
294 | - } |
|
295 | - /** |
|
296 | - * If not collection. |
|
297 | - */ |
|
298 | - else |
|
299 | - { |
|
300 | - /** |
|
301 | - * Prevent the sub relations. |
|
302 | - */ |
|
303 | - if (gettype($val) !== 'object' && gettype($val) !== 'array') |
|
304 | - { |
|
305 | - |
|
306 | - /** |
|
307 | - * If the id is present in the data then select the relation model for updating, |
|
308 | - * else create new model. |
|
309 | - */ |
|
310 | - $relationModel = array_key_exists('id', $value) ? $relationBaseModel->lockForUpdate()->find($value['id']) : new $relationBaseModel; |
|
311 | - |
|
312 | - /** |
|
313 | - * If model doesn't exists. |
|
314 | - */ |
|
315 | - if ( ! $relationModel) |
|
316 | - { |
|
317 | - \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $value['id']); |
|
318 | - } |
|
319 | - |
|
320 | - foreach ($value as $relationAttribute => $relationValue) |
|
321 | - { |
|
322 | - /** |
|
323 | - * Prevent attributes not in the fillable. |
|
324 | - */ |
|
325 | - if (array_search($relationAttribute, $relationModel->getFillable(), true) !== false) |
|
326 | - { |
|
327 | - $relationModel->$relationAttribute = $relationValue; |
|
328 | - } |
|
329 | - } |
|
330 | - |
|
331 | - $relations[$relation] = $relationModel; |
|
332 | - } |
|
333 | - } |
|
334 | - } |
|
335 | - } |
|
336 | - } |
|
337 | - /** |
|
338 | - * If the attribute isn't a relation and prevent attributes not in the fillable. |
|
339 | - */ |
|
340 | - else if (array_search($key, $model->getFillable(), true) !== false) |
|
341 | - { |
|
342 | - $model->$key = $value; |
|
343 | - } |
|
344 | - } |
|
345 | - |
|
346 | - /** |
|
347 | - * Loop through the relations array. |
|
348 | - */ |
|
349 | - foreach ($relations as $key => $value) |
|
350 | - { |
|
351 | - /** |
|
352 | - * If the relation is marked for delete then delete it. |
|
353 | - */ |
|
354 | - if ($value == 'delete' && $model->$key()->count()) |
|
355 | - { |
|
356 | - $model->$key()->delete(); |
|
357 | - } |
|
358 | - /** |
|
359 | - * If the relation is an array. |
|
360 | - */ |
|
361 | - else if (gettype($value) == 'array') |
|
362 | - { |
|
363 | - /** |
|
364 | - * Save the model. |
|
365 | - */ |
|
366 | - $model->save(); |
|
367 | - $ids = []; |
|
368 | - |
|
369 | - /** |
|
370 | - * Loop through the relations. |
|
371 | - */ |
|
372 | - foreach ($value as $val) |
|
373 | - { |
|
374 | - switch (class_basename($model->$key())) |
|
375 | - { |
|
376 | - /** |
|
377 | - * If the relation is one to many then update it's foreign key with |
|
378 | - * the model id and save it then add its id to ids array to delete all |
|
379 | - * relations who's id isn't in the ids array. |
|
380 | - */ |
|
381 | - case 'HasMany': |
|
382 | - $foreignKeyName = $model->$key()->getForeignKeyName(); |
|
383 | - $val->$foreignKeyName = $model->id; |
|
384 | - $val->save(); |
|
385 | - $ids[] = $val->id; |
|
386 | - break; |
|
387 | - |
|
388 | - /** |
|
389 | - * If the relation is many to many then add it's id to the ids array to |
|
390 | - * attache these ids to the model. |
|
391 | - */ |
|
392 | - case 'BelongsToMany': |
|
393 | - $val->save(); |
|
394 | - $ids[] = $val->id; |
|
395 | - break; |
|
396 | - } |
|
397 | - } |
|
398 | - switch (class_basename($model->$key())) |
|
399 | - { |
|
400 | - /** |
|
401 | - * If the relation is one to many then delete all |
|
402 | - * relations who's id isn't in the ids array. |
|
403 | - */ |
|
404 | - case 'HasMany': |
|
405 | - $model->$key()->whereNotIn('id', $ids)->delete(); |
|
406 | - break; |
|
407 | - |
|
408 | - /** |
|
409 | - * If the relation is many to many then |
|
410 | - * detach the previous data and attach |
|
411 | - * the ids array to the model. |
|
412 | - */ |
|
413 | - case 'BelongsToMany': |
|
414 | - $model->$key()->detach(); |
|
415 | - $model->$key()->attach($ids); |
|
416 | - break; |
|
417 | - } |
|
418 | - } |
|
419 | - /** |
|
420 | - * If the relation isn't array. |
|
421 | - */ |
|
422 | - else |
|
423 | - { |
|
424 | - switch (class_basename($model->$key())) |
|
425 | - { |
|
426 | - /** |
|
427 | - * If the relation is one to one. |
|
428 | - */ |
|
429 | - case 'HasOne': |
|
430 | - /** |
|
431 | - * Save the model. |
|
432 | - */ |
|
433 | - $model->save(); |
|
434 | - $foreignKeyName = $model->$key()->getForeignKeyName(); |
|
435 | - $value->$foreignKeyName = $model->id; |
|
436 | - $value->save(); |
|
437 | - break; |
|
438 | - case 'BelongsTo': |
|
439 | - /** |
|
440 | - * Save the model. |
|
441 | - */ |
|
442 | - $value->save(); |
|
443 | - $model->$key()->associate($value); |
|
444 | - break; |
|
445 | - } |
|
446 | - } |
|
447 | - } |
|
448 | - |
|
449 | - /** |
|
450 | - * Save the model. |
|
451 | - */ |
|
452 | - $model->save(); |
|
453 | - }); |
|
197 | + /** |
|
198 | + * Save the given model to the storage. |
|
199 | + * |
|
200 | + * @param array $data |
|
201 | + * @return object |
|
202 | + */ |
|
203 | + public function save(array $data) |
|
204 | + { |
|
205 | + $model = false; |
|
206 | + $modelClass = $this->model; |
|
207 | + $relations = []; |
|
208 | + |
|
209 | + \DB::transaction(function () use (&$model, &$relations, $data, $modelClass) { |
|
210 | + /** |
|
211 | + * If the id is present in the data then select the model for updating, |
|
212 | + * else create new model. |
|
213 | + * @var array |
|
214 | + */ |
|
215 | + $model = array_key_exists('id', $data) ? $modelClass->lockForUpdate()->find($data['id']) : new $modelClass; |
|
216 | + if ( ! $model) |
|
217 | + { |
|
218 | + \ErrorHandler::notFound(class_basename($modelClass) . ' with id : ' . $data['id']); |
|
219 | + } |
|
220 | + |
|
221 | + /** |
|
222 | + * Construct the model object with the given data, |
|
223 | + * and if there is a relation add it to relations array, |
|
224 | + * then save the model. |
|
225 | + */ |
|
226 | + foreach ($data as $key => $value) |
|
227 | + { |
|
228 | + /** |
|
229 | + * If the attribute is a relation. |
|
230 | + */ |
|
231 | + $relation = camel_case($key); |
|
232 | + if (method_exists($model, $relation) && \Core::$relation()) |
|
233 | + { |
|
234 | + /** |
|
235 | + * Check if the relation is a collection. |
|
236 | + */ |
|
237 | + if (class_basename($model->$relation) == 'Collection') |
|
238 | + { |
|
239 | + /** |
|
240 | + * If the relation has no value then marke the relation data |
|
241 | + * related to the model to be deleted. |
|
242 | + */ |
|
243 | + if ( ! $value || ! count($value)) |
|
244 | + { |
|
245 | + $relations[$relation] = 'delete'; |
|
246 | + } |
|
247 | + } |
|
248 | + if (is_array($value)) |
|
249 | + { |
|
250 | + /** |
|
251 | + * Loop through the relation data. |
|
252 | + */ |
|
253 | + foreach ($value as $attr => $val) |
|
254 | + { |
|
255 | + /** |
|
256 | + * Get the relation model. |
|
257 | + */ |
|
258 | + $relationBaseModel = \Core::$relation()->model; |
|
259 | + |
|
260 | + /** |
|
261 | + * Check if the relation is a collection. |
|
262 | + */ |
|
263 | + if (class_basename($model->$relation) == 'Collection') |
|
264 | + { |
|
265 | + /** |
|
266 | + * If the id is present in the data then select the relation model for updating, |
|
267 | + * else create new model. |
|
268 | + */ |
|
269 | + $relationModel = array_key_exists('id', $val) ? $relationBaseModel->lockForUpdate()->find($val['id']) : new $relationBaseModel; |
|
270 | + |
|
271 | + /** |
|
272 | + * If model doesn't exists. |
|
273 | + */ |
|
274 | + if ( ! $relationModel) |
|
275 | + { |
|
276 | + \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $val['id']); |
|
277 | + } |
|
278 | + |
|
279 | + /** |
|
280 | + * Loop through the relation attributes. |
|
281 | + */ |
|
282 | + foreach ($val as $attr => $val) |
|
283 | + { |
|
284 | + /** |
|
285 | + * Prevent the sub relations or attributes not in the fillable. |
|
286 | + */ |
|
287 | + if (gettype($val) !== 'object' && gettype($val) !== 'array' && array_search($attr, $relationModel->getFillable(), true) !== false) |
|
288 | + { |
|
289 | + $relationModel->$attr = $val; |
|
290 | + } |
|
291 | + } |
|
292 | + |
|
293 | + $relations[$relation][] = $relationModel; |
|
294 | + } |
|
295 | + /** |
|
296 | + * If not collection. |
|
297 | + */ |
|
298 | + else |
|
299 | + { |
|
300 | + /** |
|
301 | + * Prevent the sub relations. |
|
302 | + */ |
|
303 | + if (gettype($val) !== 'object' && gettype($val) !== 'array') |
|
304 | + { |
|
305 | + |
|
306 | + /** |
|
307 | + * If the id is present in the data then select the relation model for updating, |
|
308 | + * else create new model. |
|
309 | + */ |
|
310 | + $relationModel = array_key_exists('id', $value) ? $relationBaseModel->lockForUpdate()->find($value['id']) : new $relationBaseModel; |
|
311 | + |
|
312 | + /** |
|
313 | + * If model doesn't exists. |
|
314 | + */ |
|
315 | + if ( ! $relationModel) |
|
316 | + { |
|
317 | + \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $value['id']); |
|
318 | + } |
|
319 | + |
|
320 | + foreach ($value as $relationAttribute => $relationValue) |
|
321 | + { |
|
322 | + /** |
|
323 | + * Prevent attributes not in the fillable. |
|
324 | + */ |
|
325 | + if (array_search($relationAttribute, $relationModel->getFillable(), true) !== false) |
|
326 | + { |
|
327 | + $relationModel->$relationAttribute = $relationValue; |
|
328 | + } |
|
329 | + } |
|
330 | + |
|
331 | + $relations[$relation] = $relationModel; |
|
332 | + } |
|
333 | + } |
|
334 | + } |
|
335 | + } |
|
336 | + } |
|
337 | + /** |
|
338 | + * If the attribute isn't a relation and prevent attributes not in the fillable. |
|
339 | + */ |
|
340 | + else if (array_search($key, $model->getFillable(), true) !== false) |
|
341 | + { |
|
342 | + $model->$key = $value; |
|
343 | + } |
|
344 | + } |
|
345 | + |
|
346 | + /** |
|
347 | + * Loop through the relations array. |
|
348 | + */ |
|
349 | + foreach ($relations as $key => $value) |
|
350 | + { |
|
351 | + /** |
|
352 | + * If the relation is marked for delete then delete it. |
|
353 | + */ |
|
354 | + if ($value == 'delete' && $model->$key()->count()) |
|
355 | + { |
|
356 | + $model->$key()->delete(); |
|
357 | + } |
|
358 | + /** |
|
359 | + * If the relation is an array. |
|
360 | + */ |
|
361 | + else if (gettype($value) == 'array') |
|
362 | + { |
|
363 | + /** |
|
364 | + * Save the model. |
|
365 | + */ |
|
366 | + $model->save(); |
|
367 | + $ids = []; |
|
368 | + |
|
369 | + /** |
|
370 | + * Loop through the relations. |
|
371 | + */ |
|
372 | + foreach ($value as $val) |
|
373 | + { |
|
374 | + switch (class_basename($model->$key())) |
|
375 | + { |
|
376 | + /** |
|
377 | + * If the relation is one to many then update it's foreign key with |
|
378 | + * the model id and save it then add its id to ids array to delete all |
|
379 | + * relations who's id isn't in the ids array. |
|
380 | + */ |
|
381 | + case 'HasMany': |
|
382 | + $foreignKeyName = $model->$key()->getForeignKeyName(); |
|
383 | + $val->$foreignKeyName = $model->id; |
|
384 | + $val->save(); |
|
385 | + $ids[] = $val->id; |
|
386 | + break; |
|
387 | + |
|
388 | + /** |
|
389 | + * If the relation is many to many then add it's id to the ids array to |
|
390 | + * attache these ids to the model. |
|
391 | + */ |
|
392 | + case 'BelongsToMany': |
|
393 | + $val->save(); |
|
394 | + $ids[] = $val->id; |
|
395 | + break; |
|
396 | + } |
|
397 | + } |
|
398 | + switch (class_basename($model->$key())) |
|
399 | + { |
|
400 | + /** |
|
401 | + * If the relation is one to many then delete all |
|
402 | + * relations who's id isn't in the ids array. |
|
403 | + */ |
|
404 | + case 'HasMany': |
|
405 | + $model->$key()->whereNotIn('id', $ids)->delete(); |
|
406 | + break; |
|
407 | + |
|
408 | + /** |
|
409 | + * If the relation is many to many then |
|
410 | + * detach the previous data and attach |
|
411 | + * the ids array to the model. |
|
412 | + */ |
|
413 | + case 'BelongsToMany': |
|
414 | + $model->$key()->detach(); |
|
415 | + $model->$key()->attach($ids); |
|
416 | + break; |
|
417 | + } |
|
418 | + } |
|
419 | + /** |
|
420 | + * If the relation isn't array. |
|
421 | + */ |
|
422 | + else |
|
423 | + { |
|
424 | + switch (class_basename($model->$key())) |
|
425 | + { |
|
426 | + /** |
|
427 | + * If the relation is one to one. |
|
428 | + */ |
|
429 | + case 'HasOne': |
|
430 | + /** |
|
431 | + * Save the model. |
|
432 | + */ |
|
433 | + $model->save(); |
|
434 | + $foreignKeyName = $model->$key()->getForeignKeyName(); |
|
435 | + $value->$foreignKeyName = $model->id; |
|
436 | + $value->save(); |
|
437 | + break; |
|
438 | + case 'BelongsTo': |
|
439 | + /** |
|
440 | + * Save the model. |
|
441 | + */ |
|
442 | + $value->save(); |
|
443 | + $model->$key()->associate($value); |
|
444 | + break; |
|
445 | + } |
|
446 | + } |
|
447 | + } |
|
448 | + |
|
449 | + /** |
|
450 | + * Save the model. |
|
451 | + */ |
|
452 | + $model->save(); |
|
453 | + }); |
|
454 | 454 | |
455 | - return $model; |
|
456 | - } |
|
455 | + return $model; |
|
456 | + } |
|
457 | 457 | |
458 | - /** |
|
459 | - * Update record in the storage based on the given |
|
460 | - * condition. |
|
461 | - * |
|
462 | - * @param var $value condition value |
|
463 | - * @param array $data |
|
464 | - * @param string $attribute condition column name |
|
465 | - * @return void |
|
466 | - */ |
|
467 | - public function update($value, array $data, $attribute = 'id') |
|
468 | - { |
|
469 | - if ($attribute == 'id') |
|
470 | - { |
|
471 | - $model = $this->model->lockForUpdate()->find($value); |
|
472 | - $model ? $model->update($data) : 0; |
|
473 | - } |
|
474 | - else |
|
475 | - { |
|
476 | - call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($data){ |
|
477 | - $model->update($data); |
|
478 | - }); |
|
479 | - } |
|
480 | - } |
|
481 | - |
|
482 | - /** |
|
483 | - * Delete record from the storage based on the given |
|
484 | - * condition. |
|
485 | - * |
|
486 | - * @param var $value condition value |
|
487 | - * @param string $attribute condition column name |
|
488 | - * @return void |
|
489 | - */ |
|
490 | - public function delete($value, $attribute = 'id') |
|
491 | - { |
|
492 | - if ($attribute == 'id') |
|
493 | - { |
|
494 | - \DB::transaction(function () use ($value, $attribute, &$result) { |
|
495 | - $model = $this->model->lockForUpdate()->find($value); |
|
496 | - if ( ! $model) |
|
497 | - { |
|
498 | - \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $value); |
|
499 | - } |
|
458 | + /** |
|
459 | + * Update record in the storage based on the given |
|
460 | + * condition. |
|
461 | + * |
|
462 | + * @param var $value condition value |
|
463 | + * @param array $data |
|
464 | + * @param string $attribute condition column name |
|
465 | + * @return void |
|
466 | + */ |
|
467 | + public function update($value, array $data, $attribute = 'id') |
|
468 | + { |
|
469 | + if ($attribute == 'id') |
|
470 | + { |
|
471 | + $model = $this->model->lockForUpdate()->find($value); |
|
472 | + $model ? $model->update($data) : 0; |
|
473 | + } |
|
474 | + else |
|
475 | + { |
|
476 | + call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($data){ |
|
477 | + $model->update($data); |
|
478 | + }); |
|
479 | + } |
|
480 | + } |
|
481 | + |
|
482 | + /** |
|
483 | + * Delete record from the storage based on the given |
|
484 | + * condition. |
|
485 | + * |
|
486 | + * @param var $value condition value |
|
487 | + * @param string $attribute condition column name |
|
488 | + * @return void |
|
489 | + */ |
|
490 | + public function delete($value, $attribute = 'id') |
|
491 | + { |
|
492 | + if ($attribute == 'id') |
|
493 | + { |
|
494 | + \DB::transaction(function () use ($value, $attribute, &$result) { |
|
495 | + $model = $this->model->lockForUpdate()->find($value); |
|
496 | + if ( ! $model) |
|
497 | + { |
|
498 | + \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $value); |
|
499 | + } |
|
500 | 500 | |
501 | - $model->delete(); |
|
502 | - }); |
|
503 | - } |
|
504 | - else |
|
505 | - { |
|
506 | - \DB::transaction(function () use ($value, $attribute, &$result) { |
|
507 | - call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model){ |
|
508 | - $model->delete(); |
|
509 | - }); |
|
510 | - }); |
|
511 | - } |
|
512 | - } |
|
501 | + $model->delete(); |
|
502 | + }); |
|
503 | + } |
|
504 | + else |
|
505 | + { |
|
506 | + \DB::transaction(function () use ($value, $attribute, &$result) { |
|
507 | + call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model){ |
|
508 | + $model->delete(); |
|
509 | + }); |
|
510 | + }); |
|
511 | + } |
|
512 | + } |
|
513 | 513 | |
514 | - /** |
|
515 | - * Fetch records from the storage based on the given |
|
516 | - * id. |
|
517 | - * |
|
518 | - * @param integer $id |
|
519 | - * @param array $relations |
|
520 | - * @param array $columns |
|
521 | - * @return object |
|
522 | - */ |
|
523 | - public function find($id, $relations = [], $columns = array('*')) |
|
524 | - { |
|
525 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->find($id, $columns); |
|
526 | - } |
|
514 | + /** |
|
515 | + * Fetch records from the storage based on the given |
|
516 | + * id. |
|
517 | + * |
|
518 | + * @param integer $id |
|
519 | + * @param array $relations |
|
520 | + * @param array $columns |
|
521 | + * @return object |
|
522 | + */ |
|
523 | + public function find($id, $relations = [], $columns = array('*')) |
|
524 | + { |
|
525 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->find($id, $columns); |
|
526 | + } |
|
527 | 527 | |
528 | - /** |
|
529 | - * Fetch records from the storage based on the given |
|
530 | - * condition. |
|
531 | - * |
|
532 | - * @param array $conditions array of conditions |
|
533 | - * @param array $relations |
|
534 | - * @param string $sortBy |
|
535 | - * @param boolean $desc |
|
536 | - * @param array $columns |
|
537 | - * @return collection |
|
538 | - */ |
|
539 | - public function findBy($conditions, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
540 | - { |
|
541 | - $conditions = $this->constructConditions($conditions, $this->model); |
|
542 | - $sort = $desc ? 'desc' : 'asc'; |
|
543 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->get($columns); |
|
544 | - } |
|
545 | - |
|
546 | - /** |
|
547 | - * Fetch the first record from the storage based on the given |
|
548 | - * condition. |
|
549 | - * |
|
550 | - * @param array $conditions array of conditions |
|
551 | - * @param array $relations |
|
552 | - * @param array $columns |
|
553 | - * @return object |
|
554 | - */ |
|
555 | - public function first($conditions, $relations = [], $columns = array('*')) |
|
556 | - { |
|
557 | - $conditions = $this->constructConditions($conditions, $this->model); |
|
558 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->first($columns); |
|
559 | - } |
|
560 | - |
|
561 | - /** |
|
562 | - * Return the deleted models in pages based on the given conditions. |
|
563 | - * |
|
564 | - * @param array $conditions array of conditions |
|
565 | - * @param integer $perPage |
|
566 | - * @param string $sortBy |
|
567 | - * @param boolean $desc |
|
568 | - * @param array $columns |
|
569 | - * @return collection |
|
570 | - */ |
|
571 | - public function deleted($conditions, $perPage = 15, $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
572 | - { |
|
573 | - unset($conditions['page']); |
|
574 | - $conditions = $this->constructConditions($conditions, $this->model); |
|
575 | - $sort = $desc ? 'desc' : 'asc'; |
|
576 | - $model = $this->model->onlyTrashed(); |
|
577 | - |
|
578 | - if (count($conditions['conditionValues'])) |
|
579 | - { |
|
580 | - $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']); |
|
581 | - } |
|
582 | - |
|
583 | - return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns);; |
|
584 | - } |
|
585 | - |
|
586 | - /** |
|
587 | - * Restore the deleted model. |
|
588 | - * |
|
589 | - * @param integer $id |
|
590 | - * @return void |
|
591 | - */ |
|
592 | - public function restore($id) |
|
593 | - { |
|
594 | - $model = $this->model->onlyTrashed()->find($id); |
|
595 | - |
|
596 | - if ( ! $model) |
|
597 | - { |
|
598 | - \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $id); |
|
599 | - } |
|
600 | - |
|
601 | - $model->restore(); |
|
602 | - } |
|
603 | - |
|
604 | - /** |
|
605 | - * Build the conditions recursively for the retrieving methods. |
|
606 | - * @param array $conditions |
|
607 | - * @return array |
|
608 | - */ |
|
609 | - protected function constructConditions($conditions, $model) |
|
610 | - { |
|
611 | - $conditionString = ''; |
|
612 | - $conditionValues = []; |
|
613 | - foreach ($conditions as $key => $value) |
|
614 | - { |
|
615 | - if (str_contains($key, '->')) |
|
616 | - { |
|
617 | - $key = $this->wrapJsonSelector($key); |
|
618 | - } |
|
619 | - |
|
620 | - if ($key == 'and') |
|
621 | - { |
|
622 | - $conditions = $this->constructConditions($value, $model); |
|
623 | - $conditionString .= str_replace('{op}', 'and', $conditions['conditionString']) . ' {op} '; |
|
624 | - $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
625 | - } |
|
626 | - else if ($key == 'or') |
|
627 | - { |
|
628 | - $conditions = $this->constructConditions($value, $model); |
|
629 | - $conditionString .= str_replace('{op}', 'or', $conditions['conditionString']) . ' {op} '; |
|
630 | - $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
631 | - } |
|
632 | - else |
|
633 | - { |
|
634 | - if (is_array($value)) |
|
635 | - { |
|
636 | - $operator = $value['op']; |
|
637 | - if (strtolower($operator) == 'between') |
|
638 | - { |
|
639 | - $value1 = $value['val1']; |
|
640 | - $value2 = $value['val2']; |
|
641 | - } |
|
642 | - else |
|
643 | - { |
|
644 | - $value = array_key_exists('val', $value) ? $value['val'] : ''; |
|
645 | - } |
|
646 | - } |
|
647 | - else |
|
648 | - { |
|
649 | - $operator = '='; |
|
650 | - } |
|
528 | + /** |
|
529 | + * Fetch records from the storage based on the given |
|
530 | + * condition. |
|
531 | + * |
|
532 | + * @param array $conditions array of conditions |
|
533 | + * @param array $relations |
|
534 | + * @param string $sortBy |
|
535 | + * @param boolean $desc |
|
536 | + * @param array $columns |
|
537 | + * @return collection |
|
538 | + */ |
|
539 | + public function findBy($conditions, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
540 | + { |
|
541 | + $conditions = $this->constructConditions($conditions, $this->model); |
|
542 | + $sort = $desc ? 'desc' : 'asc'; |
|
543 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->get($columns); |
|
544 | + } |
|
545 | + |
|
546 | + /** |
|
547 | + * Fetch the first record from the storage based on the given |
|
548 | + * condition. |
|
549 | + * |
|
550 | + * @param array $conditions array of conditions |
|
551 | + * @param array $relations |
|
552 | + * @param array $columns |
|
553 | + * @return object |
|
554 | + */ |
|
555 | + public function first($conditions, $relations = [], $columns = array('*')) |
|
556 | + { |
|
557 | + $conditions = $this->constructConditions($conditions, $this->model); |
|
558 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->first($columns); |
|
559 | + } |
|
560 | + |
|
561 | + /** |
|
562 | + * Return the deleted models in pages based on the given conditions. |
|
563 | + * |
|
564 | + * @param array $conditions array of conditions |
|
565 | + * @param integer $perPage |
|
566 | + * @param string $sortBy |
|
567 | + * @param boolean $desc |
|
568 | + * @param array $columns |
|
569 | + * @return collection |
|
570 | + */ |
|
571 | + public function deleted($conditions, $perPage = 15, $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
572 | + { |
|
573 | + unset($conditions['page']); |
|
574 | + $conditions = $this->constructConditions($conditions, $this->model); |
|
575 | + $sort = $desc ? 'desc' : 'asc'; |
|
576 | + $model = $this->model->onlyTrashed(); |
|
577 | + |
|
578 | + if (count($conditions['conditionValues'])) |
|
579 | + { |
|
580 | + $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']); |
|
581 | + } |
|
582 | + |
|
583 | + return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns);; |
|
584 | + } |
|
585 | + |
|
586 | + /** |
|
587 | + * Restore the deleted model. |
|
588 | + * |
|
589 | + * @param integer $id |
|
590 | + * @return void |
|
591 | + */ |
|
592 | + public function restore($id) |
|
593 | + { |
|
594 | + $model = $this->model->onlyTrashed()->find($id); |
|
595 | + |
|
596 | + if ( ! $model) |
|
597 | + { |
|
598 | + \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $id); |
|
599 | + } |
|
600 | + |
|
601 | + $model->restore(); |
|
602 | + } |
|
603 | + |
|
604 | + /** |
|
605 | + * Build the conditions recursively for the retrieving methods. |
|
606 | + * @param array $conditions |
|
607 | + * @return array |
|
608 | + */ |
|
609 | + protected function constructConditions($conditions, $model) |
|
610 | + { |
|
611 | + $conditionString = ''; |
|
612 | + $conditionValues = []; |
|
613 | + foreach ($conditions as $key => $value) |
|
614 | + { |
|
615 | + if (str_contains($key, '->')) |
|
616 | + { |
|
617 | + $key = $this->wrapJsonSelector($key); |
|
618 | + } |
|
619 | + |
|
620 | + if ($key == 'and') |
|
621 | + { |
|
622 | + $conditions = $this->constructConditions($value, $model); |
|
623 | + $conditionString .= str_replace('{op}', 'and', $conditions['conditionString']) . ' {op} '; |
|
624 | + $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
625 | + } |
|
626 | + else if ($key == 'or') |
|
627 | + { |
|
628 | + $conditions = $this->constructConditions($value, $model); |
|
629 | + $conditionString .= str_replace('{op}', 'or', $conditions['conditionString']) . ' {op} '; |
|
630 | + $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
631 | + } |
|
632 | + else |
|
633 | + { |
|
634 | + if (is_array($value)) |
|
635 | + { |
|
636 | + $operator = $value['op']; |
|
637 | + if (strtolower($operator) == 'between') |
|
638 | + { |
|
639 | + $value1 = $value['val1']; |
|
640 | + $value2 = $value['val2']; |
|
641 | + } |
|
642 | + else |
|
643 | + { |
|
644 | + $value = array_key_exists('val', $value) ? $value['val'] : ''; |
|
645 | + } |
|
646 | + } |
|
647 | + else |
|
648 | + { |
|
649 | + $operator = '='; |
|
650 | + } |
|
651 | 651 | |
652 | - if (strtolower($operator) == 'between') |
|
653 | - { |
|
654 | - $conditionString .= $key . ' >= ? and '; |
|
655 | - $conditionValues[] = $value1; |
|
656 | - |
|
657 | - $conditionString .= $key . ' <= ? {op} '; |
|
658 | - $conditionValues[] = $value2; |
|
659 | - } |
|
660 | - elseif (strtolower($operator) == 'in') |
|
661 | - { |
|
662 | - $conditionValues = array_merge($conditionValues, $value); |
|
663 | - $inBindingsString = rtrim(str_repeat('?,', count($value)), ','); |
|
664 | - $conditionString .= $key . ' in (' . rtrim($inBindingsString, ',') . ') {op} '; |
|
665 | - } |
|
666 | - elseif (strtolower($operator) == 'null') |
|
667 | - { |
|
668 | - $conditionString .= $key . ' is null {op} '; |
|
669 | - } |
|
670 | - elseif (strtolower($operator) == 'not null') |
|
671 | - { |
|
672 | - $conditionString .= $key . ' is not null {op} '; |
|
673 | - } |
|
674 | - elseif (strtolower($operator) == 'has') |
|
675 | - { |
|
676 | - $sql = $model->withTrashed()->has($key)->toSql(); |
|
677 | - $conditions = $this->constructConditions($value, $model->$key()->getRelated()); |
|
678 | - $conditionString .= rtrim(substr($sql, strpos($sql, 'exists')), ')') . ' and ' . $conditions['conditionString'] . ') {op} '; |
|
679 | - $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
680 | - } |
|
681 | - else |
|
682 | - { |
|
683 | - $conditionString .= $key . ' ' . $operator . ' ? {op} '; |
|
684 | - $conditionValues[] = $value; |
|
685 | - } |
|
686 | - } |
|
687 | - } |
|
688 | - $conditionString = '(' . rtrim($conditionString, '{op} ') . ')'; |
|
689 | - return ['conditionString' => $conditionString, 'conditionValues' => $conditionValues]; |
|
690 | - } |
|
691 | - |
|
692 | - /** |
|
693 | - * Wrap the given JSON selector. |
|
694 | - * |
|
695 | - * @param string $value |
|
696 | - * @return string |
|
697 | - */ |
|
698 | - protected function wrapJsonSelector($value) |
|
699 | - { |
|
700 | - $removeLast = strpos($value, ')'); |
|
701 | - $value = $removeLast === false ? $value : substr($value, 0, $removeLast); |
|
702 | - $path = explode('->', $value); |
|
703 | - $field = array_shift($path); |
|
704 | - $result = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function ($part) { |
|
705 | - return '"'.$part.'"'; |
|
706 | - })->implode('.')); |
|
652 | + if (strtolower($operator) == 'between') |
|
653 | + { |
|
654 | + $conditionString .= $key . ' >= ? and '; |
|
655 | + $conditionValues[] = $value1; |
|
656 | + |
|
657 | + $conditionString .= $key . ' <= ? {op} '; |
|
658 | + $conditionValues[] = $value2; |
|
659 | + } |
|
660 | + elseif (strtolower($operator) == 'in') |
|
661 | + { |
|
662 | + $conditionValues = array_merge($conditionValues, $value); |
|
663 | + $inBindingsString = rtrim(str_repeat('?,', count($value)), ','); |
|
664 | + $conditionString .= $key . ' in (' . rtrim($inBindingsString, ',') . ') {op} '; |
|
665 | + } |
|
666 | + elseif (strtolower($operator) == 'null') |
|
667 | + { |
|
668 | + $conditionString .= $key . ' is null {op} '; |
|
669 | + } |
|
670 | + elseif (strtolower($operator) == 'not null') |
|
671 | + { |
|
672 | + $conditionString .= $key . ' is not null {op} '; |
|
673 | + } |
|
674 | + elseif (strtolower($operator) == 'has') |
|
675 | + { |
|
676 | + $sql = $model->withTrashed()->has($key)->toSql(); |
|
677 | + $conditions = $this->constructConditions($value, $model->$key()->getRelated()); |
|
678 | + $conditionString .= rtrim(substr($sql, strpos($sql, 'exists')), ')') . ' and ' . $conditions['conditionString'] . ') {op} '; |
|
679 | + $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
680 | + } |
|
681 | + else |
|
682 | + { |
|
683 | + $conditionString .= $key . ' ' . $operator . ' ? {op} '; |
|
684 | + $conditionValues[] = $value; |
|
685 | + } |
|
686 | + } |
|
687 | + } |
|
688 | + $conditionString = '(' . rtrim($conditionString, '{op} ') . ')'; |
|
689 | + return ['conditionString' => $conditionString, 'conditionValues' => $conditionValues]; |
|
690 | + } |
|
691 | + |
|
692 | + /** |
|
693 | + * Wrap the given JSON selector. |
|
694 | + * |
|
695 | + * @param string $value |
|
696 | + * @return string |
|
697 | + */ |
|
698 | + protected function wrapJsonSelector($value) |
|
699 | + { |
|
700 | + $removeLast = strpos($value, ')'); |
|
701 | + $value = $removeLast === false ? $value : substr($value, 0, $removeLast); |
|
702 | + $path = explode('->', $value); |
|
703 | + $field = array_shift($path); |
|
704 | + $result = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function ($part) { |
|
705 | + return '"'.$part.'"'; |
|
706 | + })->implode('.')); |
|
707 | 707 | |
708 | - return $removeLast === false ? $result : $result . ')'; |
|
709 | - } |
|
710 | - |
|
711 | - /** |
|
712 | - * Abstract method that return the necessary |
|
713 | - * information (full model namespace) |
|
714 | - * needed to preform the previous actions. |
|
715 | - * |
|
716 | - * @return string |
|
717 | - */ |
|
718 | - abstract protected function getModel(); |
|
708 | + return $removeLast === false ? $result : $result . ')'; |
|
709 | + } |
|
710 | + |
|
711 | + /** |
|
712 | + * Abstract method that return the necessary |
|
713 | + * information (full model namespace) |
|
714 | + * needed to preform the previous actions. |
|
715 | + * |
|
716 | + * @return string |
|
717 | + */ |
|
718 | + abstract protected function getModel(); |
|
719 | 719 | } |
720 | 720 | \ No newline at end of file |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | /** |
64 | 64 | * Construct the select conditions for the model. |
65 | 65 | */ |
66 | - $model->where(function ($q) use ($query, $conditionColumns, $relations){ |
|
66 | + $model->where(function($q) use ($query, $conditionColumns, $relations){ |
|
67 | 67 | |
68 | 68 | if (count($conditionColumns)) |
69 | 69 | { |
70 | - $column = 'LOWER(' . array_shift($conditionColumns) . ')'; |
|
70 | + $column = 'LOWER('.array_shift($conditionColumns).')'; |
|
71 | 71 | if (str_contains($column, '->')) |
72 | 72 | { |
73 | 73 | $column = $this->wrapJsonSelector($column); |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | /** |
77 | 77 | * Use the first element in the model columns to construct the first condition. |
78 | 78 | */ |
79 | - $q->where(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
79 | + $q->where(\DB::raw($column), 'LIKE', '%'.strtolower($query).'%'); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -84,13 +84,13 @@ discard block |
||
84 | 84 | */ |
85 | 85 | foreach ($conditionColumns as $column) |
86 | 86 | { |
87 | - $column = 'LOWER(' . $column . ')'; |
|
87 | + $column = 'LOWER('.$column.')'; |
|
88 | 88 | if (str_contains($column, '->')) |
89 | 89 | { |
90 | 90 | $column = $this->wrapJsonSelector($column); |
91 | 91 | } |
92 | 92 | |
93 | - $q->orWhere(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
93 | + $q->orWhere(\DB::raw($column), 'LIKE', '%'.strtolower($query).'%'); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | /** |
@@ -111,9 +111,9 @@ discard block |
||
111 | 111 | /** |
112 | 112 | * Construct the relation condition. |
113 | 113 | */ |
114 | - $q->orWhereHas($relation, function ($subModel) use ($query, $relation){ |
|
114 | + $q->orWhereHas($relation, function($subModel) use ($query, $relation){ |
|
115 | 115 | |
116 | - $subModel->where(function ($q) use ($query, $relation){ |
|
116 | + $subModel->where(function($q) use ($query, $relation){ |
|
117 | 117 | |
118 | 118 | /** |
119 | 119 | * Get columns of the relation. |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | if (count($subConditionColumns)) |
124 | 124 | { |
125 | 125 | |
126 | - $column = 'LOWER(' . array_shift($subConditionColumns) . ')'; |
|
126 | + $column = 'LOWER('.array_shift($subConditionColumns).')'; |
|
127 | 127 | if (str_contains($column, '->')) |
128 | 128 | { |
129 | 129 | $column = $this->wrapJsonSelector($column); |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | /** |
133 | 133 | * Use the first element in the relation model columns to construct the first condition. |
134 | 134 | */ |
135 | - $q->where(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
135 | + $q->where(\DB::raw($column), 'LIKE', '%'.strtolower($query).'%'); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -140,13 +140,13 @@ discard block |
||
140 | 140 | */ |
141 | 141 | foreach ($subConditionColumns as $subConditionColumn) |
142 | 142 | { |
143 | - $column = 'LOWER(' . $subConditionColumn . ')'; |
|
143 | + $column = 'LOWER('.$subConditionColumn.')'; |
|
144 | 144 | if (str_contains($column, '->')) |
145 | 145 | { |
146 | 146 | $column = $this->wrapJsonSelector($column); |
147 | 147 | } |
148 | 148 | |
149 | - $q->orWhere(\DB::raw($column), 'LIKE', '%' . strtolower($query) . '%'); |
|
149 | + $q->orWhere(\DB::raw($column), 'LIKE', '%'.strtolower($query).'%'); |
|
150 | 150 | } |
151 | 151 | }); |
152 | 152 | |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | $modelClass = $this->model; |
207 | 207 | $relations = []; |
208 | 208 | |
209 | - \DB::transaction(function () use (&$model, &$relations, $data, $modelClass) { |
|
209 | + \DB::transaction(function() use (&$model, &$relations, $data, $modelClass) { |
|
210 | 210 | /** |
211 | 211 | * If the id is present in the data then select the model for updating, |
212 | 212 | * else create new model. |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | $model = array_key_exists('id', $data) ? $modelClass->lockForUpdate()->find($data['id']) : new $modelClass; |
216 | 216 | if ( ! $model) |
217 | 217 | { |
218 | - \ErrorHandler::notFound(class_basename($modelClass) . ' with id : ' . $data['id']); |
|
218 | + \ErrorHandler::notFound(class_basename($modelClass).' with id : '.$data['id']); |
|
219 | 219 | } |
220 | 220 | |
221 | 221 | /** |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | */ |
274 | 274 | if ( ! $relationModel) |
275 | 275 | { |
276 | - \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $val['id']); |
|
276 | + \ErrorHandler::notFound(class_basename($relationBaseModel).' with id : '.$val['id']); |
|
277 | 277 | } |
278 | 278 | |
279 | 279 | /** |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | /** |
285 | 285 | * Prevent the sub relations or attributes not in the fillable. |
286 | 286 | */ |
287 | - if (gettype($val) !== 'object' && gettype($val) !== 'array' && array_search($attr, $relationModel->getFillable(), true) !== false) |
|
287 | + if (gettype($val) !== 'object' && gettype($val) !== 'array' && array_search($attr, $relationModel->getFillable(), true) !== false) |
|
288 | 288 | { |
289 | 289 | $relationModel->$attr = $val; |
290 | 290 | } |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | */ |
315 | 315 | if ( ! $relationModel) |
316 | 316 | { |
317 | - \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $value['id']); |
|
317 | + \ErrorHandler::notFound(class_basename($relationBaseModel).' with id : '.$value['id']); |
|
318 | 318 | } |
319 | 319 | |
320 | 320 | foreach ($value as $relationAttribute => $relationValue) |
@@ -456,7 +456,7 @@ discard block |
||
456 | 456 | } |
457 | 457 | else |
458 | 458 | { |
459 | - call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($data){ |
|
459 | + call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function($model) use ($data){ |
|
460 | 460 | $model->update($data); |
461 | 461 | }); |
462 | 462 | } |
@@ -474,11 +474,11 @@ discard block |
||
474 | 474 | { |
475 | 475 | if ($attribute == 'id') |
476 | 476 | { |
477 | - \DB::transaction(function () use ($value, $attribute, &$result) { |
|
477 | + \DB::transaction(function() use ($value, $attribute, &$result) { |
|
478 | 478 | $model = $this->model->lockForUpdate()->find($value); |
479 | 479 | if ( ! $model) |
480 | 480 | { |
481 | - \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $value); |
|
481 | + \ErrorHandler::notFound(class_basename($this->model).' with id : '.$value); |
|
482 | 482 | } |
483 | 483 | |
484 | 484 | $model->delete(); |
@@ -486,8 +486,8 @@ discard block |
||
486 | 486 | } |
487 | 487 | else |
488 | 488 | { |
489 | - \DB::transaction(function () use ($value, $attribute, &$result) { |
|
490 | - call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model){ |
|
489 | + \DB::transaction(function() use ($value, $attribute, &$result) { |
|
490 | + call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function($model) { |
|
491 | 491 | $model->delete(); |
492 | 492 | }); |
493 | 493 | }); |
@@ -523,7 +523,7 @@ discard block |
||
523 | 523 | { |
524 | 524 | $conditions = $this->constructConditions($conditions, $this->model); |
525 | 525 | $sort = $desc ? 'desc' : 'asc'; |
526 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->get($columns); |
|
526 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->get($columns); |
|
527 | 527 | } |
528 | 528 | |
529 | 529 | /** |
@@ -563,7 +563,7 @@ discard block |
||
563 | 563 | $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']); |
564 | 564 | } |
565 | 565 | |
566 | - return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns);; |
|
566 | + return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns); ; |
|
567 | 567 | } |
568 | 568 | |
569 | 569 | /** |
@@ -578,7 +578,7 @@ discard block |
||
578 | 578 | |
579 | 579 | if ( ! $model) |
580 | 580 | { |
581 | - \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $id); |
|
581 | + \ErrorHandler::notFound(class_basename($this->model).' with id : '.$id); |
|
582 | 582 | } |
583 | 583 | |
584 | 584 | $model->restore(); |
@@ -603,13 +603,13 @@ discard block |
||
603 | 603 | if ($key == 'and') |
604 | 604 | { |
605 | 605 | $conditions = $this->constructConditions($value, $model); |
606 | - $conditionString .= str_replace('{op}', 'and', $conditions['conditionString']) . ' {op} '; |
|
606 | + $conditionString .= str_replace('{op}', 'and', $conditions['conditionString']).' {op} '; |
|
607 | 607 | $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
608 | 608 | } |
609 | 609 | else if ($key == 'or') |
610 | 610 | { |
611 | 611 | $conditions = $this->constructConditions($value, $model); |
612 | - $conditionString .= str_replace('{op}', 'or', $conditions['conditionString']) . ' {op} '; |
|
612 | + $conditionString .= str_replace('{op}', 'or', $conditions['conditionString']).' {op} '; |
|
613 | 613 | $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
614 | 614 | } |
615 | 615 | else |
@@ -634,41 +634,41 @@ discard block |
||
634 | 634 | |
635 | 635 | if (strtolower($operator) == 'between') |
636 | 636 | { |
637 | - $conditionString .= $key . ' >= ? and '; |
|
637 | + $conditionString .= $key.' >= ? and '; |
|
638 | 638 | $conditionValues[] = $value1; |
639 | 639 | |
640 | - $conditionString .= $key . ' <= ? {op} '; |
|
640 | + $conditionString .= $key.' <= ? {op} '; |
|
641 | 641 | $conditionValues[] = $value2; |
642 | 642 | } |
643 | 643 | elseif (strtolower($operator) == 'in') |
644 | 644 | { |
645 | 645 | $conditionValues = array_merge($conditionValues, $value); |
646 | 646 | $inBindingsString = rtrim(str_repeat('?,', count($value)), ','); |
647 | - $conditionString .= $key . ' in (' . rtrim($inBindingsString, ',') . ') {op} '; |
|
647 | + $conditionString .= $key.' in ('.rtrim($inBindingsString, ',').') {op} '; |
|
648 | 648 | } |
649 | 649 | elseif (strtolower($operator) == 'null') |
650 | 650 | { |
651 | - $conditionString .= $key . ' is null {op} '; |
|
651 | + $conditionString .= $key.' is null {op} '; |
|
652 | 652 | } |
653 | 653 | elseif (strtolower($operator) == 'not null') |
654 | 654 | { |
655 | - $conditionString .= $key . ' is not null {op} '; |
|
655 | + $conditionString .= $key.' is not null {op} '; |
|
656 | 656 | } |
657 | 657 | elseif (strtolower($operator) == 'has') |
658 | 658 | { |
659 | 659 | $sql = $model->withTrashed()->has($key)->toSql(); |
660 | 660 | $conditions = $this->constructConditions($value, $model->$key()->getRelated()); |
661 | - $conditionString .= rtrim(substr($sql, strpos($sql, 'exists')), ')') . ' and ' . $conditions['conditionString'] . ') {op} '; |
|
661 | + $conditionString .= rtrim(substr($sql, strpos($sql, 'exists')), ')').' and '.$conditions['conditionString'].') {op} '; |
|
662 | 662 | $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
663 | 663 | } |
664 | 664 | else |
665 | 665 | { |
666 | - $conditionString .= $key . ' ' . $operator . ' ? {op} '; |
|
666 | + $conditionString .= $key.' '.$operator.' ? {op} '; |
|
667 | 667 | $conditionValues[] = $value; |
668 | 668 | } |
669 | 669 | } |
670 | 670 | } |
671 | - $conditionString = '(' . rtrim($conditionString, '{op} ') . ')'; |
|
671 | + $conditionString = '('.rtrim($conditionString, '{op} ').')'; |
|
672 | 672 | return ['conditionString' => $conditionString, 'conditionValues' => $conditionValues]; |
673 | 673 | } |
674 | 674 | |
@@ -684,11 +684,11 @@ discard block |
||
684 | 684 | $value = $removeLast === false ? $value : substr($value, 0, $removeLast); |
685 | 685 | $path = explode('->', $value); |
686 | 686 | $field = array_shift($path); |
687 | - $result = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function ($part) { |
|
687 | + $result = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function($part) { |
|
688 | 688 | return '"'.$part.'"'; |
689 | 689 | })->implode('.')); |
690 | 690 | |
691 | - return $removeLast === false ? $result : $result . ')'; |
|
691 | + return $removeLast === false ? $result : $result.')'; |
|
692 | 692 | } |
693 | 693 | |
694 | 694 | /** |
@@ -453,8 +453,7 @@ discard block |
||
453 | 453 | { |
454 | 454 | $model = $this->model->lockForUpdate()->find($value); |
455 | 455 | $model ? $model->update($data) : 0; |
456 | - } |
|
457 | - else |
|
456 | + } else |
|
458 | 457 | { |
459 | 458 | call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($data){ |
460 | 459 | $model->update($data); |
@@ -483,8 +482,7 @@ discard block |
||
483 | 482 | |
484 | 483 | $model->delete(); |
485 | 484 | }); |
486 | - } |
|
487 | - else |
|
485 | + } else |
|
488 | 486 | { |
489 | 487 | \DB::transaction(function () use ($value, $attribute, &$result) { |
490 | 488 | call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model){ |
@@ -605,14 +603,12 @@ discard block |
||
605 | 603 | $conditions = $this->constructConditions($value, $model); |
606 | 604 | $conditionString .= str_replace('{op}', 'and', $conditions['conditionString']) . ' {op} '; |
607 | 605 | $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
608 | - } |
|
609 | - else if ($key == 'or') |
|
606 | + } else if ($key == 'or') |
|
610 | 607 | { |
611 | 608 | $conditions = $this->constructConditions($value, $model); |
612 | 609 | $conditionString .= str_replace('{op}', 'or', $conditions['conditionString']) . ' {op} '; |
613 | 610 | $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
614 | - } |
|
615 | - else |
|
611 | + } else |
|
616 | 612 | { |
617 | 613 | if (is_array($value)) |
618 | 614 | { |
@@ -621,13 +617,11 @@ discard block |
||
621 | 617 | { |
622 | 618 | $value1 = $value['val1']; |
623 | 619 | $value2 = $value['val2']; |
624 | - } |
|
625 | - else |
|
620 | + } else |
|
626 | 621 | { |
627 | 622 | $value = array_key_exists('val', $value) ? $value['val'] : ''; |
628 | 623 | } |
629 | - } |
|
630 | - else |
|
624 | + } else |
|
631 | 625 | { |
632 | 626 | $operator = '='; |
633 | 627 | } |
@@ -639,29 +633,24 @@ discard block |
||
639 | 633 | |
640 | 634 | $conditionString .= $key . ' <= ? {op} '; |
641 | 635 | $conditionValues[] = $value2; |
642 | - } |
|
643 | - elseif (strtolower($operator) == 'in') |
|
636 | + } elseif (strtolower($operator) == 'in') |
|
644 | 637 | { |
645 | 638 | $conditionValues = array_merge($conditionValues, $value); |
646 | 639 | $inBindingsString = rtrim(str_repeat('?,', count($value)), ','); |
647 | 640 | $conditionString .= $key . ' in (' . rtrim($inBindingsString, ',') . ') {op} '; |
648 | - } |
|
649 | - elseif (strtolower($operator) == 'null') |
|
641 | + } elseif (strtolower($operator) == 'null') |
|
650 | 642 | { |
651 | 643 | $conditionString .= $key . ' is null {op} '; |
652 | - } |
|
653 | - elseif (strtolower($operator) == 'not null') |
|
644 | + } elseif (strtolower($operator) == 'not null') |
|
654 | 645 | { |
655 | 646 | $conditionString .= $key . ' is not null {op} '; |
656 | - } |
|
657 | - elseif (strtolower($operator) == 'has') |
|
647 | + } elseif (strtolower($operator) == 'has') |
|
658 | 648 | { |
659 | 649 | $sql = $model->withTrashed()->has($key)->toSql(); |
660 | 650 | $conditions = $this->constructConditions($value, $model->$key()->getRelated()); |
661 | 651 | $conditionString .= rtrim(substr($sql, strpos($sql, 'exists')), ')') . ' and ' . $conditions['conditionString'] . ') {op} '; |
662 | 652 | $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
663 | - } |
|
664 | - else |
|
653 | + } else |
|
665 | 654 | { |
666 | 655 | $conditionString .= $key . ' ' . $operator . ' ? {op} '; |
667 | 656 | $conditionValues[] = $value; |
@@ -123,6 +123,7 @@ discard block |
||
123 | 123 | * |
124 | 124 | * @param array &$route |
125 | 125 | * @param object $reflectionMethod] |
126 | + * @param \ReflectionMethod $reflectionMethod |
|
126 | 127 | * @return void |
127 | 128 | */ |
128 | 129 | protected function processDocBlock(&$route, $reflectionMethod) |
@@ -145,7 +146,7 @@ discard block |
||
145 | 146 | * Generate post body for the given route. |
146 | 147 | * |
147 | 148 | * @param array &$route |
148 | - * @param object $reflectionMethod |
|
149 | + * @param \ReflectionMethod $reflectionMethod |
|
149 | 150 | * @param array $validationRules |
150 | 151 | * @return void |
151 | 152 | */ |
@@ -162,8 +162,7 @@ discard block |
||
162 | 162 | if ($match[1] == '$this->validationRules') |
163 | 163 | { |
164 | 164 | $route['body'] = $validationRules; |
165 | - } |
|
166 | - else |
|
165 | + } else |
|
167 | 166 | { |
168 | 167 | $route['body'] = eval('return ' . str_replace(',\'.$request->get(\'id\')', ',{id}\'', $match[1]) . ';'); |
169 | 168 | } |
@@ -173,14 +172,12 @@ discard block |
||
173 | 172 | if(strpos($rule, 'unique')) |
174 | 173 | { |
175 | 174 | $rule = substr($rule, 0, strpos($rule, 'unique') + 6); |
176 | - } |
|
177 | - elseif(strpos($rule, 'exists')) |
|
175 | + } elseif(strpos($rule, 'exists')) |
|
178 | 176 | { |
179 | 177 | $rule = substr($rule, 0, strpos($rule, 'exists') - 1); |
180 | 178 | } |
181 | 179 | } |
182 | - } |
|
183 | - else |
|
180 | + } else |
|
184 | 181 | { |
185 | 182 | $route['body'] = 'conditions'; |
186 | 183 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | if ($route) |
46 | 46 | { |
47 | 47 | $actoinArray = explode('@', $route['action']); |
48 | - if(array_get($actoinArray, 1, false)) |
|
48 | + if (array_get($actoinArray, 1, false)) |
|
49 | 49 | { |
50 | 50 | $controller = $actoinArray[0]; |
51 | 51 | $method = $actoinArray[1]; |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $route['response'] = $this->getResponseObject($classProperties['model'], $route['name'], $route['returnDocBlock']); |
65 | 65 | |
66 | 66 | preg_match('/api\/([^#]+)\//iU', $route['uri'], $module); |
67 | - $docData['modules'][$module[1]][substr($route['prefix'], strlen('/api/' . $module[1] . '/') - 1)][] = $route; |
|
67 | + $docData['modules'][$module[1]][substr($route['prefix'], strlen('/api/'.$module[1].'/') - 1)][] = $route; |
|
68 | 68 | |
69 | 69 | $this->getModels($classProperties['model'], $docData); |
70 | 70 | } |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | */ |
83 | 83 | protected function getRoutes() |
84 | 84 | { |
85 | - return collect(\Route::getRoutes())->map(function ($route) { |
|
85 | + return collect(\Route::getRoutes())->map(function($route) { |
|
86 | 86 | if (strpos($route->uri(), 'api') !== false) |
87 | 87 | { |
88 | 88 | return [ |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | ]; |
115 | 115 | |
116 | 116 | |
117 | - if (! $skipLoginCheck || ! in_array($method, $skipLoginCheck)) |
|
117 | + if ( ! $skipLoginCheck || ! in_array($method, $skipLoginCheck)) |
|
118 | 118 | { |
119 | 119 | $route['headers']['Authorization'] = 'Bearer {token}'; |
120 | 120 | } |
@@ -168,16 +168,16 @@ discard block |
||
168 | 168 | } |
169 | 169 | else |
170 | 170 | { |
171 | - $route['body'] = eval('return ' . str_replace(',\'.$request->get(\'id\')', ',{id}\'', $match[1]) . ';'); |
|
171 | + $route['body'] = eval('return '.str_replace(',\'.$request->get(\'id\')', ',{id}\'', $match[1]).';'); |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | foreach ($route['body'] as &$rule) |
175 | 175 | { |
176 | - if(strpos($rule, 'unique')) |
|
176 | + if (strpos($rule, 'unique')) |
|
177 | 177 | { |
178 | 178 | $rule = substr($rule, 0, strpos($rule, 'unique') + 6); |
179 | 179 | } |
180 | - elseif(strpos($rule, 'exists')) |
|
180 | + elseif (strpos($rule, 'exists')) |
|
181 | 181 | { |
182 | 182 | $rule = substr($rule, 0, strpos($rule, 'exists') - 1); |
183 | 183 | } |
@@ -250,10 +250,10 @@ discard block |
||
250 | 250 | $model = factory($modelClass)->make(); |
251 | 251 | $modelArr = $model->toArray(); |
252 | 252 | |
253 | - if ( $model->trans && ! $model->trans->count()) |
|
253 | + if ($model->trans && ! $model->trans->count()) |
|
254 | 254 | { |
255 | 255 | $modelArr['trans'] = [ |
256 | - 'en' => factory($modelClass . 'Translation')->make()->toArray() |
|
256 | + 'en' => factory($modelClass.'Translation')->make()->toArray() |
|
257 | 257 | ]; |
258 | 258 | } |
259 | 259 |
@@ -6,275 +6,275 @@ |
||
6 | 6 | |
7 | 7 | class GenerateDoc extends Command |
8 | 8 | { |
9 | - /** |
|
10 | - * The name and signature of the console command. |
|
11 | - * |
|
12 | - * @var string |
|
13 | - */ |
|
14 | - protected $signature = 'doc:generate'; |
|
9 | + /** |
|
10 | + * The name and signature of the console command. |
|
11 | + * |
|
12 | + * @var string |
|
13 | + */ |
|
14 | + protected $signature = 'doc:generate'; |
|
15 | 15 | |
16 | - /** |
|
17 | - * The console command description. |
|
18 | - * |
|
19 | - * @var string |
|
20 | - */ |
|
21 | - protected $description = 'Generate api documentation'; |
|
16 | + /** |
|
17 | + * The console command description. |
|
18 | + * |
|
19 | + * @var string |
|
20 | + */ |
|
21 | + protected $description = 'Generate api documentation'; |
|
22 | 22 | |
23 | - /** |
|
24 | - * Create a new command instance. |
|
25 | - * |
|
26 | - * @return void |
|
27 | - */ |
|
28 | - public function __construct() |
|
29 | - { |
|
30 | - parent::__construct(); |
|
31 | - } |
|
23 | + /** |
|
24 | + * Create a new command instance. |
|
25 | + * |
|
26 | + * @return void |
|
27 | + */ |
|
28 | + public function __construct() |
|
29 | + { |
|
30 | + parent::__construct(); |
|
31 | + } |
|
32 | 32 | |
33 | - /** |
|
34 | - * Execute the console command. |
|
35 | - * |
|
36 | - * @return mixed |
|
37 | - */ |
|
38 | - public function handle() |
|
39 | - { |
|
40 | - $docData = []; |
|
41 | - $docData['models'] = []; |
|
42 | - $routes = $this->getRoutes(); |
|
43 | - foreach ($routes as $route) |
|
44 | - { |
|
45 | - if ($route) |
|
46 | - { |
|
47 | - $actoinArray = explode('@', $route['action']); |
|
48 | - if(array_get($actoinArray, 1, false)) |
|
49 | - { |
|
50 | - $controller = $actoinArray[0]; |
|
51 | - $method = $actoinArray[1]; |
|
52 | - $route['name'] = $method !== 'index' ? $method : 'list'; |
|
33 | + /** |
|
34 | + * Execute the console command. |
|
35 | + * |
|
36 | + * @return mixed |
|
37 | + */ |
|
38 | + public function handle() |
|
39 | + { |
|
40 | + $docData = []; |
|
41 | + $docData['models'] = []; |
|
42 | + $routes = $this->getRoutes(); |
|
43 | + foreach ($routes as $route) |
|
44 | + { |
|
45 | + if ($route) |
|
46 | + { |
|
47 | + $actoinArray = explode('@', $route['action']); |
|
48 | + if(array_get($actoinArray, 1, false)) |
|
49 | + { |
|
50 | + $controller = $actoinArray[0]; |
|
51 | + $method = $actoinArray[1]; |
|
52 | + $route['name'] = $method !== 'index' ? $method : 'list'; |
|
53 | 53 | |
54 | - $reflectionClass = new \ReflectionClass($controller); |
|
55 | - $reflectionMethod = $reflectionClass->getMethod($method); |
|
56 | - $classProperties = $reflectionClass->getDefaultProperties(); |
|
57 | - $skipLoginCheck = array_key_exists('skipLoginCheck', $classProperties) ? $classProperties['skipLoginCheck'] : false; |
|
58 | - $validationRules = array_key_exists('validationRules', $classProperties) ? $classProperties['validationRules'] : false; |
|
54 | + $reflectionClass = new \ReflectionClass($controller); |
|
55 | + $reflectionMethod = $reflectionClass->getMethod($method); |
|
56 | + $classProperties = $reflectionClass->getDefaultProperties(); |
|
57 | + $skipLoginCheck = array_key_exists('skipLoginCheck', $classProperties) ? $classProperties['skipLoginCheck'] : false; |
|
58 | + $validationRules = array_key_exists('validationRules', $classProperties) ? $classProperties['validationRules'] : false; |
|
59 | 59 | |
60 | - $this->processDocBlock($route, $reflectionMethod); |
|
61 | - $this->getHeaders($route, $method, $skipLoginCheck); |
|
62 | - $this->getPostData($route, $reflectionMethod, $validationRules); |
|
60 | + $this->processDocBlock($route, $reflectionMethod); |
|
61 | + $this->getHeaders($route, $method, $skipLoginCheck); |
|
62 | + $this->getPostData($route, $reflectionMethod, $validationRules); |
|
63 | 63 | |
64 | - $route['response'] = $this->getResponseObject($classProperties['model'], $route['name'], $route['returnDocBlock']); |
|
64 | + $route['response'] = $this->getResponseObject($classProperties['model'], $route['name'], $route['returnDocBlock']); |
|
65 | 65 | |
66 | - preg_match('/api\/([^#]+)\//iU', $route['uri'], $module); |
|
67 | - $docData['modules'][$module[1]][substr($route['prefix'], strlen('/api/' . $module[1] . '/') - 1)][] = $route; |
|
66 | + preg_match('/api\/([^#]+)\//iU', $route['uri'], $module); |
|
67 | + $docData['modules'][$module[1]][substr($route['prefix'], strlen('/api/' . $module[1] . '/') - 1)][] = $route; |
|
68 | 68 | |
69 | - $this->getModels($classProperties['model'], $docData); |
|
70 | - } |
|
71 | - } |
|
72 | - } |
|
69 | + $this->getModels($classProperties['model'], $docData); |
|
70 | + } |
|
71 | + } |
|
72 | + } |
|
73 | 73 | |
74 | - $docData['errors'] = $this->getErrors(); |
|
75 | - \File::put(app_path('Modules/Core/Resources/api.json'), json_encode($docData)); |
|
76 | - } |
|
74 | + $docData['errors'] = $this->getErrors(); |
|
75 | + \File::put(app_path('Modules/Core/Resources/api.json'), json_encode($docData)); |
|
76 | + } |
|
77 | 77 | |
78 | - /** |
|
79 | - * Get list of all registered routes. |
|
80 | - * |
|
81 | - * @return collection |
|
82 | - */ |
|
83 | - protected function getRoutes() |
|
84 | - { |
|
85 | - return collect(\Route::getRoutes())->map(function ($route) { |
|
86 | - if (strpos($route->uri(), 'api') !== false) |
|
87 | - { |
|
88 | - return [ |
|
89 | - 'method' => $route->methods()[0], |
|
90 | - 'uri' => $route->uri(), |
|
91 | - 'action' => $route->getActionName(), |
|
92 | - 'prefix' => $route->getPrefix() |
|
93 | - ]; |
|
94 | - } |
|
95 | - return false; |
|
96 | - })->all(); |
|
97 | - } |
|
78 | + /** |
|
79 | + * Get list of all registered routes. |
|
80 | + * |
|
81 | + * @return collection |
|
82 | + */ |
|
83 | + protected function getRoutes() |
|
84 | + { |
|
85 | + return collect(\Route::getRoutes())->map(function ($route) { |
|
86 | + if (strpos($route->uri(), 'api') !== false) |
|
87 | + { |
|
88 | + return [ |
|
89 | + 'method' => $route->methods()[0], |
|
90 | + 'uri' => $route->uri(), |
|
91 | + 'action' => $route->getActionName(), |
|
92 | + 'prefix' => $route->getPrefix() |
|
93 | + ]; |
|
94 | + } |
|
95 | + return false; |
|
96 | + })->all(); |
|
97 | + } |
|
98 | 98 | |
99 | - /** |
|
100 | - * Generate headers for the given route. |
|
101 | - * |
|
102 | - * @param array &$route |
|
103 | - * @param string $method |
|
104 | - * @param array $skipLoginCheck |
|
105 | - * @return void |
|
106 | - */ |
|
107 | - protected function getHeaders(&$route, $method, $skipLoginCheck) |
|
108 | - { |
|
109 | - $route['headers'] = [ |
|
110 | - 'Accept' => 'application/json', |
|
111 | - 'Content-Type' => 'application/json', |
|
112 | - 'locale' => 'The language of the returned data: ar, en or all.', |
|
113 | - 'time-zone' => 'Your locale time zone', |
|
114 | - ]; |
|
99 | + /** |
|
100 | + * Generate headers for the given route. |
|
101 | + * |
|
102 | + * @param array &$route |
|
103 | + * @param string $method |
|
104 | + * @param array $skipLoginCheck |
|
105 | + * @return void |
|
106 | + */ |
|
107 | + protected function getHeaders(&$route, $method, $skipLoginCheck) |
|
108 | + { |
|
109 | + $route['headers'] = [ |
|
110 | + 'Accept' => 'application/json', |
|
111 | + 'Content-Type' => 'application/json', |
|
112 | + 'locale' => 'The language of the returned data: ar, en or all.', |
|
113 | + 'time-zone' => 'Your locale time zone', |
|
114 | + ]; |
|
115 | 115 | |
116 | 116 | |
117 | - if (! $skipLoginCheck || ! in_array($method, $skipLoginCheck)) |
|
118 | - { |
|
119 | - $route['headers']['Authorization'] = 'Bearer {token}'; |
|
120 | - } |
|
121 | - } |
|
117 | + if (! $skipLoginCheck || ! in_array($method, $skipLoginCheck)) |
|
118 | + { |
|
119 | + $route['headers']['Authorization'] = 'Bearer {token}'; |
|
120 | + } |
|
121 | + } |
|
122 | 122 | |
123 | - /** |
|
124 | - * Generate description and params for the given route |
|
125 | - * based on the docblock. |
|
126 | - * |
|
127 | - * @param array &$route |
|
128 | - * @param object $reflectionMethod] |
|
129 | - * @return void |
|
130 | - */ |
|
131 | - protected function processDocBlock(&$route, $reflectionMethod) |
|
132 | - { |
|
133 | - $factory = \phpDocumentor\Reflection\DocBlockFactory::createInstance(); |
|
134 | - $docblock = $factory->create($reflectionMethod->getDocComment()); |
|
135 | - $route['description'] = trim(preg_replace('/\s+/', ' ', $docblock->getSummary())); |
|
136 | - $params = $docblock->getTagsByName('param'); |
|
137 | - $route['returnDocBlock'] = $docblock->getTagsByName('return')[0]->getType()->getFqsen()->getName(); |
|
138 | - foreach ($params as $param) |
|
139 | - { |
|
140 | - $name = $param->getVariableName(); |
|
141 | - if ($name !== 'request') |
|
142 | - { |
|
143 | - $route['parametars'][$param->getVariableName()] = $param->getDescription()->render(); |
|
144 | - } |
|
145 | - } |
|
146 | - } |
|
123 | + /** |
|
124 | + * Generate description and params for the given route |
|
125 | + * based on the docblock. |
|
126 | + * |
|
127 | + * @param array &$route |
|
128 | + * @param object $reflectionMethod] |
|
129 | + * @return void |
|
130 | + */ |
|
131 | + protected function processDocBlock(&$route, $reflectionMethod) |
|
132 | + { |
|
133 | + $factory = \phpDocumentor\Reflection\DocBlockFactory::createInstance(); |
|
134 | + $docblock = $factory->create($reflectionMethod->getDocComment()); |
|
135 | + $route['description'] = trim(preg_replace('/\s+/', ' ', $docblock->getSummary())); |
|
136 | + $params = $docblock->getTagsByName('param'); |
|
137 | + $route['returnDocBlock'] = $docblock->getTagsByName('return')[0]->getType()->getFqsen()->getName(); |
|
138 | + foreach ($params as $param) |
|
139 | + { |
|
140 | + $name = $param->getVariableName(); |
|
141 | + if ($name !== 'request') |
|
142 | + { |
|
143 | + $route['parametars'][$param->getVariableName()] = $param->getDescription()->render(); |
|
144 | + } |
|
145 | + } |
|
146 | + } |
|
147 | 147 | |
148 | - /** |
|
149 | - * Generate post body for the given route. |
|
150 | - * |
|
151 | - * @param array &$route |
|
152 | - * @param object $reflectionMethod |
|
153 | - * @param array $validationRules |
|
154 | - * @return void |
|
155 | - */ |
|
156 | - protected function getPostData(&$route, $reflectionMethod, $validationRules) |
|
157 | - { |
|
158 | - if ($route['method'] == 'POST') |
|
159 | - { |
|
160 | - $body = $this->getMethodBody($reflectionMethod); |
|
148 | + /** |
|
149 | + * Generate post body for the given route. |
|
150 | + * |
|
151 | + * @param array &$route |
|
152 | + * @param object $reflectionMethod |
|
153 | + * @param array $validationRules |
|
154 | + * @return void |
|
155 | + */ |
|
156 | + protected function getPostData(&$route, $reflectionMethod, $validationRules) |
|
157 | + { |
|
158 | + if ($route['method'] == 'POST') |
|
159 | + { |
|
160 | + $body = $this->getMethodBody($reflectionMethod); |
|
161 | 161 | |
162 | - preg_match('/\$this->validate\(\$request,([^#]+)\);/iU', $body, $match); |
|
163 | - if (count($match)) |
|
164 | - { |
|
165 | - if ($match[1] == '$this->validationRules') |
|
166 | - { |
|
167 | - $route['body'] = $validationRules; |
|
168 | - } |
|
169 | - else |
|
170 | - { |
|
171 | - $route['body'] = eval('return ' . str_replace(',\'.$request->get(\'id\')', ',{id}\'', $match[1]) . ';'); |
|
172 | - } |
|
162 | + preg_match('/\$this->validate\(\$request,([^#]+)\);/iU', $body, $match); |
|
163 | + if (count($match)) |
|
164 | + { |
|
165 | + if ($match[1] == '$this->validationRules') |
|
166 | + { |
|
167 | + $route['body'] = $validationRules; |
|
168 | + } |
|
169 | + else |
|
170 | + { |
|
171 | + $route['body'] = eval('return ' . str_replace(',\'.$request->get(\'id\')', ',{id}\'', $match[1]) . ';'); |
|
172 | + } |
|
173 | 173 | |
174 | - foreach ($route['body'] as &$rule) |
|
175 | - { |
|
176 | - if(strpos($rule, 'unique')) |
|
177 | - { |
|
178 | - $rule = substr($rule, 0, strpos($rule, 'unique') + 6); |
|
179 | - } |
|
180 | - elseif(strpos($rule, 'exists')) |
|
181 | - { |
|
182 | - $rule = substr($rule, 0, strpos($rule, 'exists') - 1); |
|
183 | - } |
|
184 | - } |
|
185 | - } |
|
186 | - else |
|
187 | - { |
|
188 | - $route['body'] = 'conditions'; |
|
189 | - } |
|
190 | - } |
|
191 | - } |
|
174 | + foreach ($route['body'] as &$rule) |
|
175 | + { |
|
176 | + if(strpos($rule, 'unique')) |
|
177 | + { |
|
178 | + $rule = substr($rule, 0, strpos($rule, 'unique') + 6); |
|
179 | + } |
|
180 | + elseif(strpos($rule, 'exists')) |
|
181 | + { |
|
182 | + $rule = substr($rule, 0, strpos($rule, 'exists') - 1); |
|
183 | + } |
|
184 | + } |
|
185 | + } |
|
186 | + else |
|
187 | + { |
|
188 | + $route['body'] = 'conditions'; |
|
189 | + } |
|
190 | + } |
|
191 | + } |
|
192 | 192 | |
193 | - /** |
|
194 | - * Generate application errors. |
|
195 | - * |
|
196 | - * @return array |
|
197 | - */ |
|
198 | - protected function getErrors() |
|
199 | - { |
|
200 | - $errors = []; |
|
201 | - $reflectionClass = new \ReflectionClass('App\Modules\Core\Utl\ErrorHandler'); |
|
202 | - foreach ($reflectionClass->getMethods() as $method) |
|
203 | - { |
|
204 | - $methodName = $method->getName(); |
|
205 | - $reflectionMethod = $reflectionClass->getMethod($methodName); |
|
206 | - $body = $this->getMethodBody($reflectionMethod); |
|
193 | + /** |
|
194 | + * Generate application errors. |
|
195 | + * |
|
196 | + * @return array |
|
197 | + */ |
|
198 | + protected function getErrors() |
|
199 | + { |
|
200 | + $errors = []; |
|
201 | + $reflectionClass = new \ReflectionClass('App\Modules\Core\Utl\ErrorHandler'); |
|
202 | + foreach ($reflectionClass->getMethods() as $method) |
|
203 | + { |
|
204 | + $methodName = $method->getName(); |
|
205 | + $reflectionMethod = $reflectionClass->getMethod($methodName); |
|
206 | + $body = $this->getMethodBody($reflectionMethod); |
|
207 | 207 | |
208 | - preg_match('/\$error=\[\'status\'=>([^#]+)\,/iU', $body, $match); |
|
208 | + preg_match('/\$error=\[\'status\'=>([^#]+)\,/iU', $body, $match); |
|
209 | 209 | |
210 | - if (count($match)) |
|
211 | - { |
|
212 | - $errors[$match[1]][] = $methodName; |
|
213 | - } |
|
214 | - } |
|
210 | + if (count($match)) |
|
211 | + { |
|
212 | + $errors[$match[1]][] = $methodName; |
|
213 | + } |
|
214 | + } |
|
215 | 215 | |
216 | - return $errors; |
|
217 | - } |
|
216 | + return $errors; |
|
217 | + } |
|
218 | 218 | |
219 | - /** |
|
220 | - * Get the given method body code. |
|
221 | - * |
|
222 | - * @param object $reflectionMethod |
|
223 | - * @return string |
|
224 | - */ |
|
225 | - protected function getMethodBody($reflectionMethod) |
|
226 | - { |
|
227 | - $filename = $reflectionMethod->getFileName(); |
|
228 | - $start_line = $reflectionMethod->getStartLine() - 1; |
|
229 | - $end_line = $reflectionMethod->getEndLine(); |
|
230 | - $length = $end_line - $start_line; |
|
231 | - $source = file($filename); |
|
232 | - $body = implode("", array_slice($source, $start_line, $length)); |
|
233 | - $body = trim(preg_replace('/\s+/', '', $body)); |
|
219 | + /** |
|
220 | + * Get the given method body code. |
|
221 | + * |
|
222 | + * @param object $reflectionMethod |
|
223 | + * @return string |
|
224 | + */ |
|
225 | + protected function getMethodBody($reflectionMethod) |
|
226 | + { |
|
227 | + $filename = $reflectionMethod->getFileName(); |
|
228 | + $start_line = $reflectionMethod->getStartLine() - 1; |
|
229 | + $end_line = $reflectionMethod->getEndLine(); |
|
230 | + $length = $end_line - $start_line; |
|
231 | + $source = file($filename); |
|
232 | + $body = implode("", array_slice($source, $start_line, $length)); |
|
233 | + $body = trim(preg_replace('/\s+/', '', $body)); |
|
234 | 234 | |
235 | - return $body; |
|
236 | - } |
|
235 | + return $body; |
|
236 | + } |
|
237 | 237 | |
238 | - /** |
|
239 | - * Get example object of all availble models. |
|
240 | - * |
|
241 | - * @param string $modelName |
|
242 | - * @param array $docData |
|
243 | - * @return string |
|
244 | - */ |
|
245 | - protected function getModels($modelName, &$docData) |
|
246 | - { |
|
247 | - if ($modelName && ! array_key_exists($modelName, $docData['models'])) |
|
248 | - { |
|
249 | - $modelClass = call_user_func_array("\Core::{$modelName}", [])->modelClass; |
|
250 | - $model = factory($modelClass)->make(); |
|
251 | - $modelArr = $model->toArray(); |
|
238 | + /** |
|
239 | + * Get example object of all availble models. |
|
240 | + * |
|
241 | + * @param string $modelName |
|
242 | + * @param array $docData |
|
243 | + * @return string |
|
244 | + */ |
|
245 | + protected function getModels($modelName, &$docData) |
|
246 | + { |
|
247 | + if ($modelName && ! array_key_exists($modelName, $docData['models'])) |
|
248 | + { |
|
249 | + $modelClass = call_user_func_array("\Core::{$modelName}", [])->modelClass; |
|
250 | + $model = factory($modelClass)->make(); |
|
251 | + $modelArr = $model->toArray(); |
|
252 | 252 | |
253 | - if ( $model->trans && ! $model->trans->count()) |
|
254 | - { |
|
255 | - $modelArr['trans'] = [ |
|
256 | - 'en' => factory($modelClass . 'Translation')->make()->toArray() |
|
257 | - ]; |
|
258 | - } |
|
253 | + if ( $model->trans && ! $model->trans->count()) |
|
254 | + { |
|
255 | + $modelArr['trans'] = [ |
|
256 | + 'en' => factory($modelClass . 'Translation')->make()->toArray() |
|
257 | + ]; |
|
258 | + } |
|
259 | 259 | |
260 | - $docData['models'][$modelName] = json_encode($modelArr, JSON_PRETTY_PRINT); |
|
261 | - } |
|
262 | - } |
|
260 | + $docData['models'][$modelName] = json_encode($modelArr, JSON_PRETTY_PRINT); |
|
261 | + } |
|
262 | + } |
|
263 | 263 | |
264 | - /** |
|
265 | - * Get the route response object type. |
|
266 | - * |
|
267 | - * @param string $modelName |
|
268 | - * @param string $method |
|
269 | - * @param string $returnDocBlock |
|
270 | - * @return array |
|
271 | - */ |
|
272 | - protected function getResponseObject($modelName, $method, $returnDocBlock) |
|
273 | - { |
|
274 | - $config = \CoreConfig::getConfig(); |
|
275 | - $relations = array_key_exists($modelName, $config['relations']) ? array_key_exists($method, $config['relations'][$modelName]) ? $config['relations'][$modelName] : false : false; |
|
276 | - $modelName = call_user_func_array("\Core::{$returnDocBlock}", []) ? $returnDocBlock : $modelName; |
|
264 | + /** |
|
265 | + * Get the route response object type. |
|
266 | + * |
|
267 | + * @param string $modelName |
|
268 | + * @param string $method |
|
269 | + * @param string $returnDocBlock |
|
270 | + * @return array |
|
271 | + */ |
|
272 | + protected function getResponseObject($modelName, $method, $returnDocBlock) |
|
273 | + { |
|
274 | + $config = \CoreConfig::getConfig(); |
|
275 | + $relations = array_key_exists($modelName, $config['relations']) ? array_key_exists($method, $config['relations'][$modelName]) ? $config['relations'][$modelName] : false : false; |
|
276 | + $modelName = call_user_func_array("\Core::{$returnDocBlock}", []) ? $returnDocBlock : $modelName; |
|
277 | 277 | |
278 | - return $relations ? [$modelName => $relations && $relations[$method] ? $relations[$method] : []] : false; |
|
279 | - } |
|
278 | + return $relations ? [$modelName => $relations && $relations[$method] ? $relations[$method] : []] : false; |
|
279 | + } |
|
280 | 280 | } |
@@ -2,7 +2,6 @@ |
||
2 | 2 | namespace App\Modules\Core\Http\Controllers; |
3 | 3 | |
4 | 4 | use App\Http\Controllers\Controller; |
5 | -use Illuminate\Http\Request; |
|
6 | 5 | |
7 | 6 | class ApiDocumentController extends Controller |
8 | 7 | { |
@@ -20,27 +20,27 @@ discard block |
||
20 | 20 | ], |
21 | 21 | [ |
22 | 22 | 'title' => 'email equal [email protected] and user is blocked:', |
23 | - 'content' => ['and' => ['email' => '[email protected]','blocked' => 1]] |
|
23 | + 'content' => ['and' => ['email' => '[email protected]', 'blocked' => 1]] |
|
24 | 24 | ], |
25 | 25 | [ |
26 | 26 | 'title' => 'email equal [email protected] or user is blocked:', |
27 | - 'content' => ['or' => ['email' => '[email protected]','blocked' => 1]] |
|
27 | + 'content' => ['or' => ['email' => '[email protected]', 'blocked' => 1]] |
|
28 | 28 | ], |
29 | 29 | [ |
30 | 30 | 'title' => 'email contain John:', |
31 | - 'content' => ['email' => ['op' => 'like','val' => '%John%']] |
|
31 | + 'content' => ['email' => ['op' => 'like', 'val' => '%John%']] |
|
32 | 32 | ], |
33 | 33 | [ |
34 | 34 | 'title' => 'user created after 2016-10-25:', |
35 | - 'content' => ['created_at' => ['op' => '>','val' => '2016-10-25']] |
|
35 | + 'content' => ['created_at' => ['op' => '>', 'val' => '2016-10-25']] |
|
36 | 36 | ], |
37 | 37 | [ |
38 | 38 | 'title' => 'user created between 2016-10-20 and 2016-10-25:', |
39 | - 'content' => ['created_at' => ['op' => 'between','val1' => '2016-10-20','val2' => '2016-10-25']] |
|
39 | + 'content' => ['created_at' => ['op' => 'between', 'val1' => '2016-10-20', 'val2' => '2016-10-25']] |
|
40 | 40 | ], |
41 | 41 | [ |
42 | 42 | 'title' => 'user id in 1,2,3:', |
43 | - 'content' => ['id' => ['op' => 'in','val' => [1, 2, 3]]] |
|
43 | + 'content' => ['id' => ['op' => 'in', 'val' => [1, 2, 3]]] |
|
44 | 44 | ], |
45 | 45 | [ |
46 | 46 | 'title' => 'user name is null:', |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | ], |
53 | 53 | [ |
54 | 54 | 'title' => 'user has group admin:', |
55 | - 'content' => ['groups' => ['op' => 'has','val' => ['name' => 'Admin']]] |
|
55 | + 'content' => ['groups' => ['op' => 'has', 'val' => ['name' => 'Admin']]] |
|
56 | 56 | ] |
57 | 57 | ]; |
58 | 58 |
@@ -28,7 +28,7 @@ |
||
28 | 28 | * Get the notification's delivery channels. |
29 | 29 | * |
30 | 30 | * @param mixed $notifiable |
31 | - * @return array |
|
31 | + * @return string[] |
|
32 | 32 | */ |
33 | 33 | public function via($notifiable) |
34 | 34 | { |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use Illuminate\Notifications\Notification; |
7 | 7 | use Illuminate\Contracts\Queue\ShouldQueue; |
8 | 8 | use Illuminate\Notifications\Messages\MailMessage; |
9 | -use Illuminate\Notifications\Messages\BroadcastMessage; |
|
10 | 9 | |
11 | 10 | class ResetPassword extends Notification implements ShouldQueue |
12 | 11 | { |
@@ -10,43 +10,43 @@ |
||
10 | 10 | |
11 | 11 | class ResetPassword extends Notification implements ShouldQueue |
12 | 12 | { |
13 | - use Queueable; |
|
13 | + use Queueable; |
|
14 | 14 | |
15 | - protected $token; |
|
15 | + protected $token; |
|
16 | 16 | |
17 | - /** |
|
18 | - * Create a new notification instance. |
|
19 | - * |
|
20 | - * @return void |
|
21 | - */ |
|
22 | - public function __construct($token) |
|
23 | - { |
|
24 | - $this->token = $token; |
|
25 | - } |
|
17 | + /** |
|
18 | + * Create a new notification instance. |
|
19 | + * |
|
20 | + * @return void |
|
21 | + */ |
|
22 | + public function __construct($token) |
|
23 | + { |
|
24 | + $this->token = $token; |
|
25 | + } |
|
26 | 26 | |
27 | - /** |
|
28 | - * Get the notification's delivery channels. |
|
29 | - * |
|
30 | - * @param mixed $notifiable |
|
31 | - * @return array |
|
32 | - */ |
|
33 | - public function via($notifiable) |
|
34 | - { |
|
35 | - return ['mail']; |
|
36 | - } |
|
27 | + /** |
|
28 | + * Get the notification's delivery channels. |
|
29 | + * |
|
30 | + * @param mixed $notifiable |
|
31 | + * @return array |
|
32 | + */ |
|
33 | + public function via($notifiable) |
|
34 | + { |
|
35 | + return ['mail']; |
|
36 | + } |
|
37 | 37 | |
38 | - /** |
|
39 | - * Get the mail representation of the notification. |
|
40 | - * |
|
41 | - * @param mixed $notifiable |
|
42 | - * @return \Illuminate\Notifications\Messages\MailMessage |
|
43 | - */ |
|
44 | - public function toMail($notifiable) |
|
45 | - { |
|
46 | - return (new MailMessage) |
|
47 | - ->subject('Reset passowrd') |
|
48 | - ->line('Reset passowrd') |
|
49 | - ->line('To reset your password click on the button below') |
|
50 | - ->action('Reset password', config('reset_password_url') . '/' . $this->token); |
|
51 | - } |
|
38 | + /** |
|
39 | + * Get the mail representation of the notification. |
|
40 | + * |
|
41 | + * @param mixed $notifiable |
|
42 | + * @return \Illuminate\Notifications\Messages\MailMessage |
|
43 | + */ |
|
44 | + public function toMail($notifiable) |
|
45 | + { |
|
46 | + return (new MailMessage) |
|
47 | + ->subject('Reset passowrd') |
|
48 | + ->line('Reset passowrd') |
|
49 | + ->line('To reset your password click on the button below') |
|
50 | + ->action('Reset password', config('reset_password_url') . '/' . $this->token); |
|
51 | + } |
|
52 | 52 | } |
53 | 53 | \ No newline at end of file |
@@ -47,6 +47,6 @@ |
||
47 | 47 | ->subject('Reset passowrd') |
48 | 48 | ->line('Reset passowrd') |
49 | 49 | ->line('To reset your password click on the button below') |
50 | - ->action('Reset password', config('reset_password_url') . '/' . $this->token); |
|
50 | + ->action('Reset password', config('reset_password_url').'/'.$this->token); |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 | \ No newline at end of file |
@@ -21,7 +21,7 @@ |
||
21 | 21 | * Register the given device to the logged in user. |
22 | 22 | * |
23 | 23 | * @param string $data |
24 | - * @return void |
|
24 | + * @return boolean |
|
25 | 25 | */ |
26 | 26 | public function registerDevice($data) |
27 | 27 | { |
@@ -7,56 +7,56 @@ |
||
7 | 7 | |
8 | 8 | class PushNotificationDeviceRepository extends AbstractRepository |
9 | 9 | { |
10 | - /** |
|
11 | - * Return the model full namespace. |
|
12 | - * |
|
13 | - * @return string |
|
14 | - */ |
|
15 | - protected function getModel() |
|
16 | - { |
|
17 | - return 'App\Modules\Notifications\PushNotificationDevice'; |
|
18 | - } |
|
19 | - |
|
20 | - /** |
|
21 | - * Register the given device to the logged in user. |
|
22 | - * |
|
23 | - * @param string $data |
|
24 | - * @return void |
|
25 | - */ |
|
26 | - public function registerDevice($data) |
|
27 | - { |
|
28 | - $data['access_token'] = \Auth::user()->token(); |
|
29 | - $data['user_id'] = \Auth::id(); |
|
30 | - if ($device = $this->model->where('device_token', $data['device_token'])->where('user_id', $data['user_id'])->first()) |
|
31 | - { |
|
32 | - $data['id'] = $device->id; |
|
33 | - } |
|
34 | - |
|
35 | - return $this->save($data); |
|
36 | - } |
|
37 | - |
|
38 | - /** |
|
39 | - * Generate the given message data. |
|
40 | - * |
|
41 | - * @param string $title |
|
42 | - * @param string $message |
|
43 | - * @param string $data |
|
44 | - * @return void |
|
45 | - */ |
|
46 | - public function generateMessageData($title, $message, $data = []) |
|
47 | - { |
|
48 | - $optionBuilder = new OptionsBuilder(); |
|
49 | - $notificationBuilder = new PayloadNotificationBuilder($title); |
|
50 | - $dataBuilder = new PayloadDataBuilder(); |
|
51 | - |
|
52 | - $optionBuilder->setTimeToLive(60*20); |
|
53 | - $notificationBuilder->setBody($message); |
|
54 | - $dataBuilder->addData($data); |
|
55 | - |
|
56 | - $options = $optionBuilder->build(); |
|
57 | - $notification = $notificationBuilder->build(); |
|
58 | - $data = $dataBuilder->build(); |
|
59 | - |
|
60 | - return compact('options', 'notification', 'data'); |
|
61 | - } |
|
10 | + /** |
|
11 | + * Return the model full namespace. |
|
12 | + * |
|
13 | + * @return string |
|
14 | + */ |
|
15 | + protected function getModel() |
|
16 | + { |
|
17 | + return 'App\Modules\Notifications\PushNotificationDevice'; |
|
18 | + } |
|
19 | + |
|
20 | + /** |
|
21 | + * Register the given device to the logged in user. |
|
22 | + * |
|
23 | + * @param string $data |
|
24 | + * @return void |
|
25 | + */ |
|
26 | + public function registerDevice($data) |
|
27 | + { |
|
28 | + $data['access_token'] = \Auth::user()->token(); |
|
29 | + $data['user_id'] = \Auth::id(); |
|
30 | + if ($device = $this->model->where('device_token', $data['device_token'])->where('user_id', $data['user_id'])->first()) |
|
31 | + { |
|
32 | + $data['id'] = $device->id; |
|
33 | + } |
|
34 | + |
|
35 | + return $this->save($data); |
|
36 | + } |
|
37 | + |
|
38 | + /** |
|
39 | + * Generate the given message data. |
|
40 | + * |
|
41 | + * @param string $title |
|
42 | + * @param string $message |
|
43 | + * @param string $data |
|
44 | + * @return void |
|
45 | + */ |
|
46 | + public function generateMessageData($title, $message, $data = []) |
|
47 | + { |
|
48 | + $optionBuilder = new OptionsBuilder(); |
|
49 | + $notificationBuilder = new PayloadNotificationBuilder($title); |
|
50 | + $dataBuilder = new PayloadDataBuilder(); |
|
51 | + |
|
52 | + $optionBuilder->setTimeToLive(60*20); |
|
53 | + $notificationBuilder->setBody($message); |
|
54 | + $dataBuilder->addData($data); |
|
55 | + |
|
56 | + $options = $optionBuilder->build(); |
|
57 | + $notification = $notificationBuilder->build(); |
|
58 | + $data = $dataBuilder->build(); |
|
59 | + |
|
60 | + return compact('options', 'notification', 'data'); |
|
61 | + } |
|
62 | 62 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | $notificationBuilder = new PayloadNotificationBuilder($title); |
50 | 50 | $dataBuilder = new PayloadDataBuilder(); |
51 | 51 | |
52 | - $optionBuilder->setTimeToLive(60*20); |
|
52 | + $optionBuilder->setTimeToLive(60 * 20); |
|
53 | 53 | $notificationBuilder->setBody($message); |
54 | 54 | $dataBuilder->addData($data); |
55 | 55 |
@@ -5,32 +5,32 @@ |
||
5 | 5 | |
6 | 6 | class Report extends Model{ |
7 | 7 | |
8 | - use SoftDeletes; |
|
8 | + use SoftDeletes; |
|
9 | 9 | protected $table = 'reports'; |
10 | 10 | protected $dates = ['created_at', 'updated_at', 'deleted_at']; |
11 | 11 | protected $hidden = ['deleted_at']; |
12 | 12 | protected $guarded = ['id']; |
13 | 13 | protected $fillable = ['report_name', 'view_name']; |
14 | - public $searchable = ['report_name', 'view_name']; |
|
14 | + public $searchable = ['report_name', 'view_name']; |
|
15 | 15 | |
16 | 16 | public function getCreatedAtAttribute($value) |
17 | - { |
|
18 | - return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
19 | - } |
|
17 | + { |
|
18 | + return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
19 | + } |
|
20 | 20 | |
21 | - public function getUpdatedAtAttribute($value) |
|
22 | - { |
|
23 | - return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
24 | - } |
|
21 | + public function getUpdatedAtAttribute($value) |
|
22 | + { |
|
23 | + return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
24 | + } |
|
25 | 25 | |
26 | - public function getDeletedAtAttribute($value) |
|
27 | - { |
|
28 | - return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
29 | - } |
|
26 | + public function getDeletedAtAttribute($value) |
|
27 | + { |
|
28 | + return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
29 | + } |
|
30 | 30 | |
31 | - public static function boot() |
|
32 | - { |
|
33 | - parent::boot(); |
|
34 | - parent::observe(\App::make('App\Modules\Reporting\ModelObservers\ReprotObserver')); |
|
35 | - } |
|
31 | + public static function boot() |
|
32 | + { |
|
33 | + parent::boot(); |
|
34 | + parent::observe(\App::make('App\Modules\Reporting\ModelObservers\ReprotObserver')); |
|
35 | + } |
|
36 | 36 | } |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | use Illuminate\Database\Eloquent\Model; |
4 | 4 | use Illuminate\Database\Eloquent\SoftDeletes; |
5 | 5 | |
6 | -class Report extends Model{ |
|
6 | +class Report extends Model { |
|
7 | 7 | |
8 | 8 | use SoftDeletes; |
9 | 9 | protected $table = 'reports'; |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | protected $hidden = ['deleted_at']; |
12 | 12 | protected $guarded = ['id']; |
13 | 13 | protected $fillable = ['report_name', 'view_name']; |
14 | - public $searchable = ['report_name', 'view_name']; |
|
14 | + public $searchable = ['report_name', 'view_name']; |
|
15 | 15 | |
16 | 16 | public function getCreatedAtAttribute($value) |
17 | 17 | { |
@@ -8,72 +8,72 @@ |
||
8 | 8 | class RouteServiceProvider extends ServiceProvider |
9 | 9 | { |
10 | 10 | /** |
11 | - * This namespace is applied to your controller routes. |
|
12 | - * |
|
13 | - * In addition, it is set as the URL generator's root namespace. |
|
14 | - * |
|
15 | - * @var string |
|
16 | - */ |
|
17 | - protected $namespace = 'App\Modules\Reporting\Http\Controllers'; |
|
11 | + * This namespace is applied to your controller routes. |
|
12 | + * |
|
13 | + * In addition, it is set as the URL generator's root namespace. |
|
14 | + * |
|
15 | + * @var string |
|
16 | + */ |
|
17 | + protected $namespace = 'App\Modules\Reporting\Http\Controllers'; |
|
18 | 18 | |
19 | - /** |
|
20 | - * Define your route model bindings, pattern filters, etc. |
|
21 | - * |
|
22 | - * @return void |
|
23 | - */ |
|
24 | - public function boot() |
|
25 | - { |
|
26 | - // |
|
19 | + /** |
|
20 | + * Define your route model bindings, pattern filters, etc. |
|
21 | + * |
|
22 | + * @return void |
|
23 | + */ |
|
24 | + public function boot() |
|
25 | + { |
|
26 | + // |
|
27 | 27 | |
28 | - parent::boot(); |
|
29 | - } |
|
28 | + parent::boot(); |
|
29 | + } |
|
30 | 30 | |
31 | - /** |
|
32 | - * Define the routes for the module. |
|
33 | - * |
|
34 | - * @return void |
|
35 | - */ |
|
36 | - public function map() |
|
37 | - { |
|
38 | - $this->mapWebRoutes(); |
|
31 | + /** |
|
32 | + * Define the routes for the module. |
|
33 | + * |
|
34 | + * @return void |
|
35 | + */ |
|
36 | + public function map() |
|
37 | + { |
|
38 | + $this->mapWebRoutes(); |
|
39 | 39 | |
40 | - $this->mapApiRoutes(); |
|
40 | + $this->mapApiRoutes(); |
|
41 | 41 | |
42 | - // |
|
43 | - } |
|
42 | + // |
|
43 | + } |
|
44 | 44 | |
45 | - /** |
|
46 | - * Define the "web" routes for the module. |
|
47 | - * |
|
48 | - * These routes all receive session state, CSRF protection, etc. |
|
49 | - * |
|
50 | - * @return void |
|
51 | - */ |
|
52 | - protected function mapWebRoutes() |
|
53 | - { |
|
54 | - Route::group([ |
|
55 | - 'middleware' => 'web', |
|
56 | - 'namespace' => $this->namespace, |
|
57 | - ], function ($router) { |
|
58 | - require module_path('reporting', 'Routes/web.php'); |
|
59 | - }); |
|
60 | - } |
|
45 | + /** |
|
46 | + * Define the "web" routes for the module. |
|
47 | + * |
|
48 | + * These routes all receive session state, CSRF protection, etc. |
|
49 | + * |
|
50 | + * @return void |
|
51 | + */ |
|
52 | + protected function mapWebRoutes() |
|
53 | + { |
|
54 | + Route::group([ |
|
55 | + 'middleware' => 'web', |
|
56 | + 'namespace' => $this->namespace, |
|
57 | + ], function ($router) { |
|
58 | + require module_path('reporting', 'Routes/web.php'); |
|
59 | + }); |
|
60 | + } |
|
61 | 61 | |
62 | - /** |
|
63 | - * Define the "api" routes for the module. |
|
64 | - * |
|
65 | - * These routes are typically stateless. |
|
66 | - * |
|
67 | - * @return void |
|
68 | - */ |
|
69 | - protected function mapApiRoutes() |
|
70 | - { |
|
71 | - Route::group([ |
|
72 | - 'middleware' => 'api', |
|
73 | - 'namespace' => $this->namespace, |
|
74 | - 'prefix' => 'api', |
|
75 | - ], function ($router) { |
|
76 | - require module_path('reporting', 'Routes/api.php'); |
|
77 | - }); |
|
78 | - } |
|
62 | + /** |
|
63 | + * Define the "api" routes for the module. |
|
64 | + * |
|
65 | + * These routes are typically stateless. |
|
66 | + * |
|
67 | + * @return void |
|
68 | + */ |
|
69 | + protected function mapApiRoutes() |
|
70 | + { |
|
71 | + Route::group([ |
|
72 | + 'middleware' => 'api', |
|
73 | + 'namespace' => $this->namespace, |
|
74 | + 'prefix' => 'api', |
|
75 | + ], function ($router) { |
|
76 | + require module_path('reporting', 'Routes/api.php'); |
|
77 | + }); |
|
78 | + } |
|
79 | 79 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | Route::group([ |
55 | 55 | 'middleware' => 'web', |
56 | 56 | 'namespace' => $this->namespace, |
57 | - ], function ($router) { |
|
57 | + ], function($router) { |
|
58 | 58 | require module_path('reporting', 'Routes/web.php'); |
59 | 59 | }); |
60 | 60 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | 'middleware' => 'api', |
73 | 73 | 'namespace' => $this->namespace, |
74 | 74 | 'prefix' => 'api', |
75 | - ], function ($router) { |
|
75 | + ], function($router) { |
|
76 | 76 | require module_path('reporting', 'Routes/api.php'); |
77 | 77 | }); |
78 | 78 | } |
@@ -7,26 +7,26 @@ |
||
7 | 7 | class ModuleServiceProvider extends ServiceProvider |
8 | 8 | { |
9 | 9 | /** |
10 | - * Bootstrap the module services. |
|
11 | - * |
|
12 | - * @return void |
|
13 | - */ |
|
14 | - public function boot() |
|
15 | - { |
|
16 | - $this->loadTranslationsFrom(__DIR__.'/../Resources/Lang', 'reporting'); |
|
17 | - $this->loadViewsFrom(__DIR__.'/../Resources/Views', 'reporting'); |
|
10 | + * Bootstrap the module services. |
|
11 | + * |
|
12 | + * @return void |
|
13 | + */ |
|
14 | + public function boot() |
|
15 | + { |
|
16 | + $this->loadTranslationsFrom(__DIR__.'/../Resources/Lang', 'reporting'); |
|
17 | + $this->loadViewsFrom(__DIR__.'/../Resources/Views', 'reporting'); |
|
18 | 18 | |
19 | - $factory = app('Illuminate\Database\Eloquent\Factory'); |
|
20 | - $factory->load(__DIR__.'/../Database/Factories'); |
|
21 | - } |
|
19 | + $factory = app('Illuminate\Database\Eloquent\Factory'); |
|
20 | + $factory->load(__DIR__.'/../Database/Factories'); |
|
21 | + } |
|
22 | 22 | |
23 | - /** |
|
24 | - * Register the module services. |
|
25 | - * |
|
26 | - * @return void |
|
27 | - */ |
|
28 | - public function register() |
|
29 | - { |
|
30 | - $this->app->register(RouteServiceProvider::class); |
|
31 | - } |
|
23 | + /** |
|
24 | + * Register the module services. |
|
25 | + * |
|
26 | + * @return void |
|
27 | + */ |
|
28 | + public function register() |
|
29 | + { |
|
30 | + $this->app->register(RouteServiceProvider::class); |
|
31 | + } |
|
32 | 32 | } |