@@ -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 | { |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | * @param array $conditions array of conditions |
534 | 534 | * @param array $relations |
535 | 535 | * @param string $sortBy |
536 | - * @param boolean $desc |
|
536 | + * @param integer $desc |
|
537 | 537 | * @param array $columns |
538 | 538 | * @return collection |
539 | 539 | */ |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | * @param array $conditions array of conditions |
566 | 566 | * @param integer $perPage |
567 | 567 | * @param string $sortBy |
568 | - * @param boolean $desc |
|
568 | + * @param integer $desc |
|
569 | 569 | * @param array $columns |
570 | 570 | * @return collection |
571 | 571 | */ |
@@ -4,717 +4,717 @@ |
||
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 | - \Session::put('locale', 'all'); |
|
206 | - $model = false; |
|
207 | - $modelClass = $this->model; |
|
208 | - $relations = []; |
|
209 | - |
|
210 | - \DB::transaction(function () use (&$model, &$relations, $data, $modelClass) { |
|
211 | - /** |
|
212 | - * If the id is present in the data then select the model for updating, |
|
213 | - * else create new model. |
|
214 | - * @var array |
|
215 | - */ |
|
216 | - $model = array_key_exists('id', $data) ? $modelClass->lockForUpdate()->find($data['id']) : new $modelClass; |
|
217 | - if ( ! $model) |
|
218 | - { |
|
219 | - \ErrorHandler::notFound(class_basename($modelClass) . ' with id : ' . $data['id']); |
|
220 | - } |
|
221 | - |
|
222 | - /** |
|
223 | - * Construct the model object with the given data, |
|
224 | - * and if there is a relation add it to relations array, |
|
225 | - * then save the model. |
|
226 | - */ |
|
227 | - foreach ($data as $key => $value) |
|
228 | - { |
|
229 | - /** |
|
230 | - * If the attribute is a relation. |
|
231 | - */ |
|
232 | - $relation = camel_case($key); |
|
233 | - if (method_exists($model, $relation) && \Core::$relation()) |
|
234 | - { |
|
235 | - /** |
|
236 | - * Check if the relation is a collection. |
|
237 | - */ |
|
238 | - if (class_basename($model->$relation) == 'Collection') |
|
239 | - { |
|
240 | - /** |
|
241 | - * If the relation has no value then marke the relation data |
|
242 | - * related to the model to be deleted. |
|
243 | - */ |
|
244 | - if ( ! $value || ! count($value)) |
|
245 | - { |
|
246 | - $relations[$relation] = 'delete'; |
|
247 | - } |
|
248 | - } |
|
249 | - if (is_array($value)) |
|
250 | - { |
|
251 | - /** |
|
252 | - * Loop through the relation data. |
|
253 | - */ |
|
254 | - foreach ($value as $attr => $val) |
|
255 | - { |
|
256 | - /** |
|
257 | - * Get the relation model. |
|
258 | - */ |
|
259 | - $relationBaseModel = \Core::$relation()->model; |
|
260 | - |
|
261 | - /** |
|
262 | - * Check if the relation is a collection. |
|
263 | - */ |
|
264 | - if (class_basename($model->$relation) == 'Collection') |
|
265 | - { |
|
266 | - /** |
|
267 | - * If the id is present in the data then select the relation model for updating, |
|
268 | - * else create new model. |
|
269 | - */ |
|
270 | - $relationModel = array_key_exists('id', $val) ? $relationBaseModel->lockForUpdate()->find($val['id']) : new $relationBaseModel; |
|
271 | - |
|
272 | - /** |
|
273 | - * If model doesn't exists. |
|
274 | - */ |
|
275 | - if ( ! $relationModel) |
|
276 | - { |
|
277 | - \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $val['id']); |
|
278 | - } |
|
279 | - |
|
280 | - /** |
|
281 | - * Loop through the relation attributes. |
|
282 | - */ |
|
283 | - foreach ($val as $attr => $val) |
|
284 | - { |
|
285 | - /** |
|
286 | - * Prevent the sub relations or attributes not in the fillable. |
|
287 | - */ |
|
288 | - if (gettype($val) !== 'object' && gettype($val) !== 'array' && array_search($attr, $relationModel->getFillable(), true) !== false) |
|
289 | - { |
|
290 | - $relationModel->$attr = $val; |
|
291 | - } |
|
292 | - } |
|
293 | - |
|
294 | - $relations[$relation][] = $relationModel; |
|
295 | - } |
|
296 | - /** |
|
297 | - * If not collection. |
|
298 | - */ |
|
299 | - else |
|
300 | - { |
|
301 | - /** |
|
302 | - * Prevent the sub relations. |
|
303 | - */ |
|
304 | - if (gettype($val) !== 'object' && gettype($val) !== 'array') |
|
305 | - { |
|
306 | - |
|
307 | - /** |
|
308 | - * If the id is present in the data then select the relation model for updating, |
|
309 | - * else create new model. |
|
310 | - */ |
|
311 | - $relationModel = array_key_exists('id', $value) ? $relationBaseModel->lockForUpdate()->find($value['id']) : new $relationBaseModel; |
|
312 | - |
|
313 | - /** |
|
314 | - * If model doesn't exists. |
|
315 | - */ |
|
316 | - if ( ! $relationModel) |
|
317 | - { |
|
318 | - \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $value['id']); |
|
319 | - } |
|
320 | - |
|
321 | - foreach ($value as $relationAttribute => $relationValue) |
|
322 | - { |
|
323 | - /** |
|
324 | - * Prevent attributes not in the fillable. |
|
325 | - */ |
|
326 | - if (array_search($relationAttribute, $relationModel->getFillable(), true) !== false) |
|
327 | - { |
|
328 | - $relationModel->$relationAttribute = $relationValue; |
|
329 | - } |
|
330 | - } |
|
331 | - |
|
332 | - $relations[$relation] = $relationModel; |
|
333 | - } |
|
334 | - } |
|
335 | - } |
|
336 | - } |
|
337 | - } |
|
338 | - /** |
|
339 | - * If the attribute isn't a relation and prevent attributes not in the fillable. |
|
340 | - */ |
|
341 | - else if (array_search($key, $model->getFillable(), true) !== false) |
|
342 | - { |
|
343 | - $model->$key = $value; |
|
344 | - } |
|
345 | - } |
|
346 | - |
|
347 | - /** |
|
348 | - * Loop through the relations array. |
|
349 | - */ |
|
350 | - foreach ($relations as $key => $value) |
|
351 | - { |
|
352 | - /** |
|
353 | - * If the relation is marked for delete then delete it. |
|
354 | - */ |
|
355 | - if ($value == 'delete' && $model->$key()->count()) |
|
356 | - { |
|
357 | - $model->$key()->delete(); |
|
358 | - } |
|
359 | - /** |
|
360 | - * If the relation is an array. |
|
361 | - */ |
|
362 | - else if (gettype($value) == 'array') |
|
363 | - { |
|
364 | - /** |
|
365 | - * Save the model. |
|
366 | - */ |
|
367 | - $model->save(); |
|
368 | - $ids = []; |
|
369 | - |
|
370 | - /** |
|
371 | - * Loop through the relations. |
|
372 | - */ |
|
373 | - foreach ($value as $val) |
|
374 | - { |
|
375 | - switch (class_basename($model->$key())) |
|
376 | - { |
|
377 | - /** |
|
378 | - * If the relation is one to many then update it's foreign key with |
|
379 | - * the model id and save it then add its id to ids array to delete all |
|
380 | - * relations who's id isn't in the ids array. |
|
381 | - */ |
|
382 | - case 'HasMany': |
|
383 | - $foreignKeyName = $model->$key()->getForeignKeyName(); |
|
384 | - $val->$foreignKeyName = $model->id; |
|
385 | - $val->save(); |
|
386 | - $ids[] = $val->id; |
|
387 | - break; |
|
388 | - |
|
389 | - /** |
|
390 | - * If the relation is many to many then add it's id to the ids array to |
|
391 | - * attache these ids to the model. |
|
392 | - */ |
|
393 | - case 'BelongsToMany': |
|
394 | - $val->save(); |
|
395 | - $ids[] = $val->id; |
|
396 | - break; |
|
397 | - } |
|
398 | - } |
|
399 | - switch (class_basename($model->$key())) |
|
400 | - { |
|
401 | - /** |
|
402 | - * If the relation is one to many then delete all |
|
403 | - * relations who's id isn't in the ids array. |
|
404 | - */ |
|
405 | - case 'HasMany': |
|
406 | - $model->$key()->whereNotIn('id', $ids)->delete(); |
|
407 | - break; |
|
408 | - |
|
409 | - /** |
|
410 | - * If the relation is many to many then |
|
411 | - * detach the previous data and attach |
|
412 | - * the ids array to the model. |
|
413 | - */ |
|
414 | - case 'BelongsToMany': |
|
415 | - $model->$key()->detach(); |
|
416 | - $model->$key()->attach($ids); |
|
417 | - break; |
|
418 | - } |
|
419 | - } |
|
420 | - /** |
|
421 | - * If the relation isn't array. |
|
422 | - */ |
|
423 | - else |
|
424 | - { |
|
425 | - switch (class_basename($model->$key())) |
|
426 | - { |
|
427 | - /** |
|
428 | - * If the relation is one to one. |
|
429 | - */ |
|
430 | - case 'HasOne': |
|
431 | - /** |
|
432 | - * Save the model. |
|
433 | - */ |
|
434 | - $model->save(); |
|
435 | - $foreignKeyName = $model->$key()->getForeignKeyName(); |
|
436 | - $value->$foreignKeyName = $model->id; |
|
437 | - $value->save(); |
|
438 | - break; |
|
439 | - case 'BelongsTo': |
|
440 | - /** |
|
441 | - * Save the model. |
|
442 | - */ |
|
443 | - $value->save(); |
|
444 | - $model->$key()->associate($value); |
|
445 | - break; |
|
446 | - } |
|
447 | - } |
|
448 | - } |
|
449 | - |
|
450 | - /** |
|
451 | - * Save the model. |
|
452 | - */ |
|
453 | - $model->save(); |
|
454 | - }); |
|
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 | + \Session::put('locale', 'all'); |
|
206 | + $model = false; |
|
207 | + $modelClass = $this->model; |
|
208 | + $relations = []; |
|
209 | + |
|
210 | + \DB::transaction(function () use (&$model, &$relations, $data, $modelClass) { |
|
211 | + /** |
|
212 | + * If the id is present in the data then select the model for updating, |
|
213 | + * else create new model. |
|
214 | + * @var array |
|
215 | + */ |
|
216 | + $model = array_key_exists('id', $data) ? $modelClass->lockForUpdate()->find($data['id']) : new $modelClass; |
|
217 | + if ( ! $model) |
|
218 | + { |
|
219 | + \ErrorHandler::notFound(class_basename($modelClass) . ' with id : ' . $data['id']); |
|
220 | + } |
|
221 | + |
|
222 | + /** |
|
223 | + * Construct the model object with the given data, |
|
224 | + * and if there is a relation add it to relations array, |
|
225 | + * then save the model. |
|
226 | + */ |
|
227 | + foreach ($data as $key => $value) |
|
228 | + { |
|
229 | + /** |
|
230 | + * If the attribute is a relation. |
|
231 | + */ |
|
232 | + $relation = camel_case($key); |
|
233 | + if (method_exists($model, $relation) && \Core::$relation()) |
|
234 | + { |
|
235 | + /** |
|
236 | + * Check if the relation is a collection. |
|
237 | + */ |
|
238 | + if (class_basename($model->$relation) == 'Collection') |
|
239 | + { |
|
240 | + /** |
|
241 | + * If the relation has no value then marke the relation data |
|
242 | + * related to the model to be deleted. |
|
243 | + */ |
|
244 | + if ( ! $value || ! count($value)) |
|
245 | + { |
|
246 | + $relations[$relation] = 'delete'; |
|
247 | + } |
|
248 | + } |
|
249 | + if (is_array($value)) |
|
250 | + { |
|
251 | + /** |
|
252 | + * Loop through the relation data. |
|
253 | + */ |
|
254 | + foreach ($value as $attr => $val) |
|
255 | + { |
|
256 | + /** |
|
257 | + * Get the relation model. |
|
258 | + */ |
|
259 | + $relationBaseModel = \Core::$relation()->model; |
|
260 | + |
|
261 | + /** |
|
262 | + * Check if the relation is a collection. |
|
263 | + */ |
|
264 | + if (class_basename($model->$relation) == 'Collection') |
|
265 | + { |
|
266 | + /** |
|
267 | + * If the id is present in the data then select the relation model for updating, |
|
268 | + * else create new model. |
|
269 | + */ |
|
270 | + $relationModel = array_key_exists('id', $val) ? $relationBaseModel->lockForUpdate()->find($val['id']) : new $relationBaseModel; |
|
271 | + |
|
272 | + /** |
|
273 | + * If model doesn't exists. |
|
274 | + */ |
|
275 | + if ( ! $relationModel) |
|
276 | + { |
|
277 | + \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $val['id']); |
|
278 | + } |
|
279 | + |
|
280 | + /** |
|
281 | + * Loop through the relation attributes. |
|
282 | + */ |
|
283 | + foreach ($val as $attr => $val) |
|
284 | + { |
|
285 | + /** |
|
286 | + * Prevent the sub relations or attributes not in the fillable. |
|
287 | + */ |
|
288 | + if (gettype($val) !== 'object' && gettype($val) !== 'array' && array_search($attr, $relationModel->getFillable(), true) !== false) |
|
289 | + { |
|
290 | + $relationModel->$attr = $val; |
|
291 | + } |
|
292 | + } |
|
293 | + |
|
294 | + $relations[$relation][] = $relationModel; |
|
295 | + } |
|
296 | + /** |
|
297 | + * If not collection. |
|
298 | + */ |
|
299 | + else |
|
300 | + { |
|
301 | + /** |
|
302 | + * Prevent the sub relations. |
|
303 | + */ |
|
304 | + if (gettype($val) !== 'object' && gettype($val) !== 'array') |
|
305 | + { |
|
306 | + |
|
307 | + /** |
|
308 | + * If the id is present in the data then select the relation model for updating, |
|
309 | + * else create new model. |
|
310 | + */ |
|
311 | + $relationModel = array_key_exists('id', $value) ? $relationBaseModel->lockForUpdate()->find($value['id']) : new $relationBaseModel; |
|
312 | + |
|
313 | + /** |
|
314 | + * If model doesn't exists. |
|
315 | + */ |
|
316 | + if ( ! $relationModel) |
|
317 | + { |
|
318 | + \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $value['id']); |
|
319 | + } |
|
320 | + |
|
321 | + foreach ($value as $relationAttribute => $relationValue) |
|
322 | + { |
|
323 | + /** |
|
324 | + * Prevent attributes not in the fillable. |
|
325 | + */ |
|
326 | + if (array_search($relationAttribute, $relationModel->getFillable(), true) !== false) |
|
327 | + { |
|
328 | + $relationModel->$relationAttribute = $relationValue; |
|
329 | + } |
|
330 | + } |
|
331 | + |
|
332 | + $relations[$relation] = $relationModel; |
|
333 | + } |
|
334 | + } |
|
335 | + } |
|
336 | + } |
|
337 | + } |
|
338 | + /** |
|
339 | + * If the attribute isn't a relation and prevent attributes not in the fillable. |
|
340 | + */ |
|
341 | + else if (array_search($key, $model->getFillable(), true) !== false) |
|
342 | + { |
|
343 | + $model->$key = $value; |
|
344 | + } |
|
345 | + } |
|
346 | + |
|
347 | + /** |
|
348 | + * Loop through the relations array. |
|
349 | + */ |
|
350 | + foreach ($relations as $key => $value) |
|
351 | + { |
|
352 | + /** |
|
353 | + * If the relation is marked for delete then delete it. |
|
354 | + */ |
|
355 | + if ($value == 'delete' && $model->$key()->count()) |
|
356 | + { |
|
357 | + $model->$key()->delete(); |
|
358 | + } |
|
359 | + /** |
|
360 | + * If the relation is an array. |
|
361 | + */ |
|
362 | + else if (gettype($value) == 'array') |
|
363 | + { |
|
364 | + /** |
|
365 | + * Save the model. |
|
366 | + */ |
|
367 | + $model->save(); |
|
368 | + $ids = []; |
|
369 | + |
|
370 | + /** |
|
371 | + * Loop through the relations. |
|
372 | + */ |
|
373 | + foreach ($value as $val) |
|
374 | + { |
|
375 | + switch (class_basename($model->$key())) |
|
376 | + { |
|
377 | + /** |
|
378 | + * If the relation is one to many then update it's foreign key with |
|
379 | + * the model id and save it then add its id to ids array to delete all |
|
380 | + * relations who's id isn't in the ids array. |
|
381 | + */ |
|
382 | + case 'HasMany': |
|
383 | + $foreignKeyName = $model->$key()->getForeignKeyName(); |
|
384 | + $val->$foreignKeyName = $model->id; |
|
385 | + $val->save(); |
|
386 | + $ids[] = $val->id; |
|
387 | + break; |
|
388 | + |
|
389 | + /** |
|
390 | + * If the relation is many to many then add it's id to the ids array to |
|
391 | + * attache these ids to the model. |
|
392 | + */ |
|
393 | + case 'BelongsToMany': |
|
394 | + $val->save(); |
|
395 | + $ids[] = $val->id; |
|
396 | + break; |
|
397 | + } |
|
398 | + } |
|
399 | + switch (class_basename($model->$key())) |
|
400 | + { |
|
401 | + /** |
|
402 | + * If the relation is one to many then delete all |
|
403 | + * relations who's id isn't in the ids array. |
|
404 | + */ |
|
405 | + case 'HasMany': |
|
406 | + $model->$key()->whereNotIn('id', $ids)->delete(); |
|
407 | + break; |
|
408 | + |
|
409 | + /** |
|
410 | + * If the relation is many to many then |
|
411 | + * detach the previous data and attach |
|
412 | + * the ids array to the model. |
|
413 | + */ |
|
414 | + case 'BelongsToMany': |
|
415 | + $model->$key()->detach(); |
|
416 | + $model->$key()->attach($ids); |
|
417 | + break; |
|
418 | + } |
|
419 | + } |
|
420 | + /** |
|
421 | + * If the relation isn't array. |
|
422 | + */ |
|
423 | + else |
|
424 | + { |
|
425 | + switch (class_basename($model->$key())) |
|
426 | + { |
|
427 | + /** |
|
428 | + * If the relation is one to one. |
|
429 | + */ |
|
430 | + case 'HasOne': |
|
431 | + /** |
|
432 | + * Save the model. |
|
433 | + */ |
|
434 | + $model->save(); |
|
435 | + $foreignKeyName = $model->$key()->getForeignKeyName(); |
|
436 | + $value->$foreignKeyName = $model->id; |
|
437 | + $value->save(); |
|
438 | + break; |
|
439 | + case 'BelongsTo': |
|
440 | + /** |
|
441 | + * Save the model. |
|
442 | + */ |
|
443 | + $value->save(); |
|
444 | + $model->$key()->associate($value); |
|
445 | + break; |
|
446 | + } |
|
447 | + } |
|
448 | + } |
|
449 | + |
|
450 | + /** |
|
451 | + * Save the model. |
|
452 | + */ |
|
453 | + $model->save(); |
|
454 | + }); |
|
455 | 455 | |
456 | - return $model; |
|
457 | - } |
|
456 | + return $model; |
|
457 | + } |
|
458 | 458 | |
459 | - /** |
|
460 | - * Update record in the storage based on the given |
|
461 | - * condition. |
|
462 | - * |
|
463 | - * @param var $value condition value |
|
464 | - * @param array $data |
|
465 | - * @param string $attribute condition column name |
|
466 | - * @return void |
|
467 | - */ |
|
468 | - public function update($value, array $data, $attribute = 'id') |
|
469 | - { |
|
470 | - if ($attribute == 'id') |
|
471 | - { |
|
472 | - $model = $this->model->lockForUpdate()->find($value); |
|
473 | - $model ? $model->update($data) : 0; |
|
474 | - } |
|
475 | - else |
|
476 | - { |
|
477 | - call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($data){ |
|
478 | - $model->update($data); |
|
479 | - }); |
|
480 | - } |
|
481 | - } |
|
482 | - |
|
483 | - /** |
|
484 | - * Delete record from the storage based on the given |
|
485 | - * condition. |
|
486 | - * |
|
487 | - * @param var $value condition value |
|
488 | - * @param string $attribute condition column name |
|
489 | - * @return void |
|
490 | - */ |
|
491 | - public function delete($value, $attribute = 'id') |
|
492 | - { |
|
493 | - if ($attribute == 'id') |
|
494 | - { |
|
495 | - \DB::transaction(function () use ($value, $attribute, &$result) { |
|
496 | - $model = $this->model->lockForUpdate()->find($value); |
|
497 | - if ( ! $model) |
|
498 | - { |
|
499 | - \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $value); |
|
500 | - } |
|
459 | + /** |
|
460 | + * Update record in the storage based on the given |
|
461 | + * condition. |
|
462 | + * |
|
463 | + * @param var $value condition value |
|
464 | + * @param array $data |
|
465 | + * @param string $attribute condition column name |
|
466 | + * @return void |
|
467 | + */ |
|
468 | + public function update($value, array $data, $attribute = 'id') |
|
469 | + { |
|
470 | + if ($attribute == 'id') |
|
471 | + { |
|
472 | + $model = $this->model->lockForUpdate()->find($value); |
|
473 | + $model ? $model->update($data) : 0; |
|
474 | + } |
|
475 | + else |
|
476 | + { |
|
477 | + call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($data){ |
|
478 | + $model->update($data); |
|
479 | + }); |
|
480 | + } |
|
481 | + } |
|
482 | + |
|
483 | + /** |
|
484 | + * Delete record from the storage based on the given |
|
485 | + * condition. |
|
486 | + * |
|
487 | + * @param var $value condition value |
|
488 | + * @param string $attribute condition column name |
|
489 | + * @return void |
|
490 | + */ |
|
491 | + public function delete($value, $attribute = 'id') |
|
492 | + { |
|
493 | + if ($attribute == 'id') |
|
494 | + { |
|
495 | + \DB::transaction(function () use ($value, $attribute, &$result) { |
|
496 | + $model = $this->model->lockForUpdate()->find($value); |
|
497 | + if ( ! $model) |
|
498 | + { |
|
499 | + \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $value); |
|
500 | + } |
|
501 | 501 | |
502 | - $model->delete(); |
|
503 | - }); |
|
504 | - } |
|
505 | - else |
|
506 | - { |
|
507 | - \DB::transaction(function () use ($value, $attribute, &$result) { |
|
508 | - call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model){ |
|
509 | - $model->delete(); |
|
510 | - }); |
|
511 | - }); |
|
512 | - } |
|
513 | - } |
|
502 | + $model->delete(); |
|
503 | + }); |
|
504 | + } |
|
505 | + else |
|
506 | + { |
|
507 | + \DB::transaction(function () use ($value, $attribute, &$result) { |
|
508 | + call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model){ |
|
509 | + $model->delete(); |
|
510 | + }); |
|
511 | + }); |
|
512 | + } |
|
513 | + } |
|
514 | 514 | |
515 | - /** |
|
516 | - * Fetch records from the storage based on the given |
|
517 | - * id. |
|
518 | - * |
|
519 | - * @param integer $id |
|
520 | - * @param array $relations |
|
521 | - * @param array $columns |
|
522 | - * @return object |
|
523 | - */ |
|
524 | - public function find($id, $relations = [], $columns = array('*')) |
|
525 | - { |
|
526 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->find($id, $columns); |
|
527 | - } |
|
515 | + /** |
|
516 | + * Fetch records from the storage based on the given |
|
517 | + * id. |
|
518 | + * |
|
519 | + * @param integer $id |
|
520 | + * @param array $relations |
|
521 | + * @param array $columns |
|
522 | + * @return object |
|
523 | + */ |
|
524 | + public function find($id, $relations = [], $columns = array('*')) |
|
525 | + { |
|
526 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->find($id, $columns); |
|
527 | + } |
|
528 | 528 | |
529 | - /** |
|
530 | - * Fetch records from the storage based on the given |
|
531 | - * condition. |
|
532 | - * |
|
533 | - * @param array $conditions array of conditions |
|
534 | - * @param array $relations |
|
535 | - * @param string $sortBy |
|
536 | - * @param boolean $desc |
|
537 | - * @param array $columns |
|
538 | - * @return collection |
|
539 | - */ |
|
540 | - public function findBy($conditions, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
541 | - { |
|
542 | - $conditions = $this->constructConditions($conditions, $this->model); |
|
543 | - $sort = $desc ? 'desc' : 'asc'; |
|
544 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->get($columns); |
|
545 | - } |
|
546 | - |
|
547 | - /** |
|
548 | - * Fetch the first record from the storage based on the given |
|
549 | - * condition. |
|
550 | - * |
|
551 | - * @param array $conditions array of conditions |
|
552 | - * @param array $relations |
|
553 | - * @param array $columns |
|
554 | - * @return object |
|
555 | - */ |
|
556 | - public function first($conditions, $relations = [], $columns = array('*')) |
|
557 | - { |
|
558 | - $conditions = $this->constructConditions($conditions, $this->model); |
|
559 | - return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->first($columns); |
|
560 | - } |
|
561 | - |
|
562 | - /** |
|
563 | - * Return the deleted models in pages based on the given conditions. |
|
564 | - * |
|
565 | - * @param array $conditions array of conditions |
|
566 | - * @param integer $perPage |
|
567 | - * @param string $sortBy |
|
568 | - * @param boolean $desc |
|
569 | - * @param array $columns |
|
570 | - * @return collection |
|
571 | - */ |
|
572 | - public function deleted($conditions, $perPage = 15, $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
573 | - { |
|
574 | - unset($conditions['page']); |
|
575 | - $conditions = $this->constructConditions($conditions, $this->model); |
|
576 | - $sort = $desc ? 'desc' : 'asc'; |
|
577 | - $model = $this->model->onlyTrashed(); |
|
578 | - |
|
579 | - if (count($conditions['conditionValues'])) |
|
580 | - { |
|
581 | - $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']); |
|
582 | - } |
|
583 | - |
|
584 | - return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns);; |
|
585 | - } |
|
586 | - |
|
587 | - /** |
|
588 | - * Restore the deleted model. |
|
589 | - * |
|
590 | - * @param integer $id |
|
591 | - * @return void |
|
592 | - */ |
|
593 | - public function restore($id) |
|
594 | - { |
|
595 | - $model = $this->model->onlyTrashed()->find($id); |
|
596 | - |
|
597 | - if ( ! $model) |
|
598 | - { |
|
599 | - \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $id); |
|
600 | - } |
|
601 | - |
|
602 | - $model->restore(); |
|
603 | - } |
|
604 | - |
|
605 | - /** |
|
606 | - * Build the conditions recursively for the retrieving methods. |
|
607 | - * @param array $conditions |
|
608 | - * @return array |
|
609 | - */ |
|
610 | - protected function constructConditions($conditions, $model) |
|
611 | - { |
|
612 | - $conditionString = ''; |
|
613 | - $conditionValues = []; |
|
614 | - foreach ($conditions as $key => $value) |
|
615 | - { |
|
616 | - if (str_contains($key, '->')) |
|
617 | - { |
|
618 | - $key = $this->wrapJsonSelector($key); |
|
619 | - } |
|
620 | - |
|
621 | - if ($key == 'and') |
|
622 | - { |
|
623 | - $conditions = $this->constructConditions($value, $model); |
|
624 | - $conditionString .= str_replace('{op}', 'and', $conditions['conditionString']) . ' {op} '; |
|
625 | - $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
626 | - } |
|
627 | - else if ($key == 'or') |
|
628 | - { |
|
629 | - $conditions = $this->constructConditions($value, $model); |
|
630 | - $conditionString .= str_replace('{op}', 'or', $conditions['conditionString']) . ' {op} '; |
|
631 | - $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
632 | - } |
|
633 | - else |
|
634 | - { |
|
635 | - if (is_array($value)) |
|
636 | - { |
|
637 | - $operator = $value['op']; |
|
638 | - if (strtolower($operator) == 'between') |
|
639 | - { |
|
640 | - $value1 = $value['val1']; |
|
641 | - $value2 = $value['val2']; |
|
642 | - } |
|
643 | - else |
|
644 | - { |
|
645 | - $value = array_key_exists('val', $value) ? $value['val'] : ''; |
|
646 | - } |
|
647 | - } |
|
648 | - else |
|
649 | - { |
|
650 | - $operator = '='; |
|
651 | - } |
|
529 | + /** |
|
530 | + * Fetch records from the storage based on the given |
|
531 | + * condition. |
|
532 | + * |
|
533 | + * @param array $conditions array of conditions |
|
534 | + * @param array $relations |
|
535 | + * @param string $sortBy |
|
536 | + * @param boolean $desc |
|
537 | + * @param array $columns |
|
538 | + * @return collection |
|
539 | + */ |
|
540 | + public function findBy($conditions, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
541 | + { |
|
542 | + $conditions = $this->constructConditions($conditions, $this->model); |
|
543 | + $sort = $desc ? 'desc' : 'asc'; |
|
544 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->get($columns); |
|
545 | + } |
|
546 | + |
|
547 | + /** |
|
548 | + * Fetch the first record from the storage based on the given |
|
549 | + * condition. |
|
550 | + * |
|
551 | + * @param array $conditions array of conditions |
|
552 | + * @param array $relations |
|
553 | + * @param array $columns |
|
554 | + * @return object |
|
555 | + */ |
|
556 | + public function first($conditions, $relations = [], $columns = array('*')) |
|
557 | + { |
|
558 | + $conditions = $this->constructConditions($conditions, $this->model); |
|
559 | + return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->first($columns); |
|
560 | + } |
|
561 | + |
|
562 | + /** |
|
563 | + * Return the deleted models in pages based on the given conditions. |
|
564 | + * |
|
565 | + * @param array $conditions array of conditions |
|
566 | + * @param integer $perPage |
|
567 | + * @param string $sortBy |
|
568 | + * @param boolean $desc |
|
569 | + * @param array $columns |
|
570 | + * @return collection |
|
571 | + */ |
|
572 | + public function deleted($conditions, $perPage = 15, $sortBy = 'created_at', $desc = 1, $columns = array('*')) |
|
573 | + { |
|
574 | + unset($conditions['page']); |
|
575 | + $conditions = $this->constructConditions($conditions, $this->model); |
|
576 | + $sort = $desc ? 'desc' : 'asc'; |
|
577 | + $model = $this->model->onlyTrashed(); |
|
578 | + |
|
579 | + if (count($conditions['conditionValues'])) |
|
580 | + { |
|
581 | + $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']); |
|
582 | + } |
|
583 | + |
|
584 | + return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns);; |
|
585 | + } |
|
586 | + |
|
587 | + /** |
|
588 | + * Restore the deleted model. |
|
589 | + * |
|
590 | + * @param integer $id |
|
591 | + * @return void |
|
592 | + */ |
|
593 | + public function restore($id) |
|
594 | + { |
|
595 | + $model = $this->model->onlyTrashed()->find($id); |
|
596 | + |
|
597 | + if ( ! $model) |
|
598 | + { |
|
599 | + \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $id); |
|
600 | + } |
|
601 | + |
|
602 | + $model->restore(); |
|
603 | + } |
|
604 | + |
|
605 | + /** |
|
606 | + * Build the conditions recursively for the retrieving methods. |
|
607 | + * @param array $conditions |
|
608 | + * @return array |
|
609 | + */ |
|
610 | + protected function constructConditions($conditions, $model) |
|
611 | + { |
|
612 | + $conditionString = ''; |
|
613 | + $conditionValues = []; |
|
614 | + foreach ($conditions as $key => $value) |
|
615 | + { |
|
616 | + if (str_contains($key, '->')) |
|
617 | + { |
|
618 | + $key = $this->wrapJsonSelector($key); |
|
619 | + } |
|
620 | + |
|
621 | + if ($key == 'and') |
|
622 | + { |
|
623 | + $conditions = $this->constructConditions($value, $model); |
|
624 | + $conditionString .= str_replace('{op}', 'and', $conditions['conditionString']) . ' {op} '; |
|
625 | + $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
626 | + } |
|
627 | + else if ($key == 'or') |
|
628 | + { |
|
629 | + $conditions = $this->constructConditions($value, $model); |
|
630 | + $conditionString .= str_replace('{op}', 'or', $conditions['conditionString']) . ' {op} '; |
|
631 | + $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
632 | + } |
|
633 | + else |
|
634 | + { |
|
635 | + if (is_array($value)) |
|
636 | + { |
|
637 | + $operator = $value['op']; |
|
638 | + if (strtolower($operator) == 'between') |
|
639 | + { |
|
640 | + $value1 = $value['val1']; |
|
641 | + $value2 = $value['val2']; |
|
642 | + } |
|
643 | + else |
|
644 | + { |
|
645 | + $value = array_key_exists('val', $value) ? $value['val'] : ''; |
|
646 | + } |
|
647 | + } |
|
648 | + else |
|
649 | + { |
|
650 | + $operator = '='; |
|
651 | + } |
|
652 | 652 | |
653 | - if (strtolower($operator) == 'between') |
|
654 | - { |
|
655 | - $conditionString .= $key . ' >= ? and '; |
|
656 | - $conditionValues[] = $value1; |
|
657 | - |
|
658 | - $conditionString .= $key . ' <= ? {op} '; |
|
659 | - $conditionValues[] = $value2; |
|
660 | - } |
|
661 | - elseif (strtolower($operator) == 'in') |
|
662 | - { |
|
663 | - $conditionValues = array_merge($conditionValues, $value); |
|
664 | - $inBindingsString = rtrim(str_repeat('?,', count($value)), ','); |
|
665 | - $conditionString .= $key . ' in (' . rtrim($inBindingsString, ',') . ') {op} '; |
|
666 | - } |
|
667 | - elseif (strtolower($operator) == 'null') |
|
668 | - { |
|
669 | - $conditionString .= $key . ' is null {op} '; |
|
670 | - } |
|
671 | - elseif (strtolower($operator) == 'not null') |
|
672 | - { |
|
673 | - $conditionString .= $key . ' is not null {op} '; |
|
674 | - } |
|
675 | - elseif (strtolower($operator) == 'has') |
|
676 | - { |
|
677 | - $sql = $model->withTrashed()->has($key)->toSql(); |
|
678 | - $conditions = $this->constructConditions($value, $model->$key()->getRelated()); |
|
679 | - $conditionString .= rtrim(substr($sql, strpos($sql, 'exists')), ')') . ' and ' . $conditions['conditionString'] . ') {op} '; |
|
680 | - $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
681 | - } |
|
682 | - else |
|
683 | - { |
|
684 | - $conditionString .= $key . ' ' . $operator . ' ? {op} '; |
|
685 | - $conditionValues[] = $value; |
|
686 | - } |
|
687 | - } |
|
688 | - } |
|
689 | - $conditionString = '(' . rtrim($conditionString, '{op} ') . ')'; |
|
690 | - return ['conditionString' => $conditionString, 'conditionValues' => $conditionValues]; |
|
691 | - } |
|
692 | - |
|
693 | - /** |
|
694 | - * Wrap the given JSON selector. |
|
695 | - * |
|
696 | - * @param string $value |
|
697 | - * @return string |
|
698 | - */ |
|
699 | - protected function wrapJsonSelector($value) |
|
700 | - { |
|
701 | - $removeLast = strpos($value, ')'); |
|
702 | - $value = $removeLast === false ? $value : substr($value, 0, $removeLast); |
|
703 | - $path = explode('->', $value); |
|
704 | - $field = array_shift($path); |
|
705 | - $result = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function ($part) { |
|
706 | - return '"'.$part.'"'; |
|
707 | - })->implode('.')); |
|
653 | + if (strtolower($operator) == 'between') |
|
654 | + { |
|
655 | + $conditionString .= $key . ' >= ? and '; |
|
656 | + $conditionValues[] = $value1; |
|
657 | + |
|
658 | + $conditionString .= $key . ' <= ? {op} '; |
|
659 | + $conditionValues[] = $value2; |
|
660 | + } |
|
661 | + elseif (strtolower($operator) == 'in') |
|
662 | + { |
|
663 | + $conditionValues = array_merge($conditionValues, $value); |
|
664 | + $inBindingsString = rtrim(str_repeat('?,', count($value)), ','); |
|
665 | + $conditionString .= $key . ' in (' . rtrim($inBindingsString, ',') . ') {op} '; |
|
666 | + } |
|
667 | + elseif (strtolower($operator) == 'null') |
|
668 | + { |
|
669 | + $conditionString .= $key . ' is null {op} '; |
|
670 | + } |
|
671 | + elseif (strtolower($operator) == 'not null') |
|
672 | + { |
|
673 | + $conditionString .= $key . ' is not null {op} '; |
|
674 | + } |
|
675 | + elseif (strtolower($operator) == 'has') |
|
676 | + { |
|
677 | + $sql = $model->withTrashed()->has($key)->toSql(); |
|
678 | + $conditions = $this->constructConditions($value, $model->$key()->getRelated()); |
|
679 | + $conditionString .= rtrim(substr($sql, strpos($sql, 'exists')), ')') . ' and ' . $conditions['conditionString'] . ') {op} '; |
|
680 | + $conditionValues = array_merge($conditionValues, $conditions['conditionValues']); |
|
681 | + } |
|
682 | + else |
|
683 | + { |
|
684 | + $conditionString .= $key . ' ' . $operator . ' ? {op} '; |
|
685 | + $conditionValues[] = $value; |
|
686 | + } |
|
687 | + } |
|
688 | + } |
|
689 | + $conditionString = '(' . rtrim($conditionString, '{op} ') . ')'; |
|
690 | + return ['conditionString' => $conditionString, 'conditionValues' => $conditionValues]; |
|
691 | + } |
|
692 | + |
|
693 | + /** |
|
694 | + * Wrap the given JSON selector. |
|
695 | + * |
|
696 | + * @param string $value |
|
697 | + * @return string |
|
698 | + */ |
|
699 | + protected function wrapJsonSelector($value) |
|
700 | + { |
|
701 | + $removeLast = strpos($value, ')'); |
|
702 | + $value = $removeLast === false ? $value : substr($value, 0, $removeLast); |
|
703 | + $path = explode('->', $value); |
|
704 | + $field = array_shift($path); |
|
705 | + $result = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function ($part) { |
|
706 | + return '"'.$part.'"'; |
|
707 | + })->implode('.')); |
|
708 | 708 | |
709 | - return $removeLast === false ? $result : $result . ')'; |
|
710 | - } |
|
711 | - |
|
712 | - /** |
|
713 | - * Abstract method that return the necessary |
|
714 | - * information (full model namespace) |
|
715 | - * needed to preform the previous actions. |
|
716 | - * |
|
717 | - * @return string |
|
718 | - */ |
|
719 | - abstract protected function getModel(); |
|
709 | + return $removeLast === false ? $result : $result . ')'; |
|
710 | + } |
|
711 | + |
|
712 | + /** |
|
713 | + * Abstract method that return the necessary |
|
714 | + * information (full model namespace) |
|
715 | + * needed to preform the previous actions. |
|
716 | + * |
|
717 | + * @return string |
|
718 | + */ |
|
719 | + abstract protected function getModel(); |
|
720 | 720 | } |
721 | 721 | \ No newline at end of file |
@@ -5,414 +5,414 @@ |
||
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 $userId |
|
78 | - * @param array $group_ids |
|
79 | - * @return object |
|
80 | - */ |
|
81 | - public function assignGroups($userId, $group_ids) |
|
82 | - { |
|
83 | - \DB::transaction(function () use ($userId, $group_ids) { |
|
84 | - $user = $this->find($userId); |
|
85 | - $user->groups()->detach(); |
|
86 | - $user->groups()->attach($group_ids); |
|
87 | - }); |
|
88 | - |
|
89 | - return $this->find($userId); |
|
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('skeleton.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 string $authCode |
|
130 | - * @param string $accessToken |
|
131 | - * @param string $type |
|
132 | - * @return array |
|
133 | - */ |
|
134 | - public function loginSocial($authCode, $accessToken, $type) |
|
135 | - { |
|
136 | - $access_token = $authCode ? array_get(\Socialite::driver($type)->getAccessTokenResponse($authCode), 'access_token') : $accessToken; |
|
137 | - $user = \Socialite::driver($type)->userFromToken($access_token); |
|
138 | - |
|
139 | - if ( ! $user->email) |
|
140 | - { |
|
141 | - \ErrorHandler::noSocialEmail(); |
|
142 | - } |
|
143 | - |
|
144 | - if ( ! $registeredUser = $this->model->where('email', $user->email)->first()) |
|
145 | - { |
|
146 | - $this->register(['email' => $user->email, 'password' => ''], 1); |
|
147 | - } |
|
148 | - |
|
149 | - $loginProxy = \App::make('App\Modules\Acl\Proxy\LoginProxy'); |
|
150 | - return $loginProxy->login(['email' => $credentials['email'], 'password' => config('skeleton.social_pass']], 0); |
|
151 | - } |
|
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 $userId |
|
78 | + * @param array $group_ids |
|
79 | + * @return object |
|
80 | + */ |
|
81 | + public function assignGroups($userId, $group_ids) |
|
82 | + { |
|
83 | + \DB::transaction(function () use ($userId, $group_ids) { |
|
84 | + $user = $this->find($userId); |
|
85 | + $user->groups()->detach(); |
|
86 | + $user->groups()->attach($group_ids); |
|
87 | + }); |
|
88 | + |
|
89 | + return $this->find($userId); |
|
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('skeleton.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 string $authCode |
|
130 | + * @param string $accessToken |
|
131 | + * @param string $type |
|
132 | + * @return array |
|
133 | + */ |
|
134 | + public function loginSocial($authCode, $accessToken, $type) |
|
135 | + { |
|
136 | + $access_token = $authCode ? array_get(\Socialite::driver($type)->getAccessTokenResponse($authCode), 'access_token') : $accessToken; |
|
137 | + $user = \Socialite::driver($type)->userFromToken($access_token); |
|
138 | + |
|
139 | + if ( ! $user->email) |
|
140 | + { |
|
141 | + \ErrorHandler::noSocialEmail(); |
|
142 | + } |
|
143 | + |
|
144 | + if ( ! $registeredUser = $this->model->where('email', $user->email)->first()) |
|
145 | + { |
|
146 | + $this->register(['email' => $user->email, 'password' => ''], 1); |
|
147 | + } |
|
148 | + |
|
149 | + $loginProxy = \App::make('App\Modules\Acl\Proxy\LoginProxy'); |
|
150 | + return $loginProxy->login(['email' => $credentials['email'], 'password' => config('skeleton.social_pass']], 0); |
|
151 | + } |
|
152 | 152 | |
153 | - /** |
|
154 | - * Handle a registration request. |
|
155 | - * |
|
156 | - * @param array $credentials |
|
157 | - * @param boolean $skipConfirmEmail |
|
158 | - * @return array |
|
159 | - */ |
|
160 | - public function register($credentials, $skipConfirmEmail = false) |
|
161 | - { |
|
162 | - $user = $this->save($credentials); |
|
163 | - |
|
164 | - if ($skipConfirmEmail) |
|
165 | - { |
|
166 | - $user->confirmed = 1; |
|
167 | - $user->save(); |
|
168 | - } |
|
169 | - else if ( ! config('skeleton.disable_confirm_email')) |
|
170 | - { |
|
171 | - $this->sendConfirmationEmail($user->email); |
|
172 | - } |
|
173 | - |
|
174 | - return $user; |
|
175 | - } |
|
153 | + /** |
|
154 | + * Handle a registration request. |
|
155 | + * |
|
156 | + * @param array $credentials |
|
157 | + * @param boolean $skipConfirmEmail |
|
158 | + * @return array |
|
159 | + */ |
|
160 | + public function register($credentials, $skipConfirmEmail = false) |
|
161 | + { |
|
162 | + $user = $this->save($credentials); |
|
163 | + |
|
164 | + if ($skipConfirmEmail) |
|
165 | + { |
|
166 | + $user->confirmed = 1; |
|
167 | + $user->save(); |
|
168 | + } |
|
169 | + else if ( ! config('skeleton.disable_confirm_email')) |
|
170 | + { |
|
171 | + $this->sendConfirmationEmail($user->email); |
|
172 | + } |
|
173 | + |
|
174 | + return $user; |
|
175 | + } |
|
176 | 176 | |
177 | - /** |
|
178 | - * Block the user. |
|
179 | - * |
|
180 | - * @param integer $userId |
|
181 | - * @return object |
|
182 | - */ |
|
183 | - public function block($userId) |
|
184 | - { |
|
185 | - if ( ! $user = $this->find($userId)) |
|
186 | - { |
|
187 | - \ErrorHandler::notFound('user'); |
|
188 | - } |
|
189 | - if ( ! $this->hasGroup(['Admin'])) |
|
190 | - { |
|
191 | - \ErrorHandler::noPermissions(); |
|
192 | - } |
|
193 | - else if (\Auth::id() == $userId) |
|
194 | - { |
|
195 | - \ErrorHandler::noPermissions(); |
|
196 | - } |
|
197 | - else if ($user->groups->pluck('name')->search('Admin', true) !== false) |
|
198 | - { |
|
199 | - \ErrorHandler::noPermissions(); |
|
200 | - } |
|
201 | - |
|
202 | - $user->blocked = 1; |
|
203 | - $user->save(); |
|
177 | + /** |
|
178 | + * Block the user. |
|
179 | + * |
|
180 | + * @param integer $userId |
|
181 | + * @return object |
|
182 | + */ |
|
183 | + public function block($userId) |
|
184 | + { |
|
185 | + if ( ! $user = $this->find($userId)) |
|
186 | + { |
|
187 | + \ErrorHandler::notFound('user'); |
|
188 | + } |
|
189 | + if ( ! $this->hasGroup(['Admin'])) |
|
190 | + { |
|
191 | + \ErrorHandler::noPermissions(); |
|
192 | + } |
|
193 | + else if (\Auth::id() == $userId) |
|
194 | + { |
|
195 | + \ErrorHandler::noPermissions(); |
|
196 | + } |
|
197 | + else if ($user->groups->pluck('name')->search('Admin', true) !== false) |
|
198 | + { |
|
199 | + \ErrorHandler::noPermissions(); |
|
200 | + } |
|
201 | + |
|
202 | + $user->blocked = 1; |
|
203 | + $user->save(); |
|
204 | 204 | |
205 | - return $user; |
|
206 | - } |
|
207 | - |
|
208 | - /** |
|
209 | - * Unblock the user. |
|
210 | - * |
|
211 | - * @param integer $userId |
|
212 | - * @return object |
|
213 | - */ |
|
214 | - public function unblock($userId) |
|
215 | - { |
|
216 | - if ( ! $this->hasGroup(['Admin'])) |
|
217 | - { |
|
218 | - \ErrorHandler::noPermissions(); |
|
219 | - } |
|
220 | - |
|
221 | - $user = $this->find($userId); |
|
222 | - $user->blocked = 0; |
|
223 | - $user->save(); |
|
224 | - |
|
225 | - return $user; |
|
226 | - } |
|
227 | - |
|
228 | - /** |
|
229 | - * Send a reset link to the given user. |
|
230 | - * |
|
231 | - * @param string $email |
|
232 | - * @return void |
|
233 | - */ |
|
234 | - public function sendReset($email) |
|
235 | - { |
|
236 | - if ( ! $user = $this->model->where('email', $email)->first()) |
|
237 | - { |
|
238 | - \ErrorHandler::notFound('email'); |
|
239 | - } |
|
240 | - |
|
241 | - $token = \Password::getRepository()->create($user); |
|
242 | - \Core::notifications()->notify($user, 'ResetPassword', $token); |
|
243 | - } |
|
244 | - |
|
245 | - /** |
|
246 | - * Reset the given user's password. |
|
247 | - * |
|
248 | - * @param array $credentials |
|
249 | - * @return array |
|
250 | - */ |
|
251 | - public function resetPassword($credentials) |
|
252 | - { |
|
253 | - $response = \Password::reset($credentials, function ($user, $password) { |
|
254 | - $user->password = $password; |
|
255 | - $user->save(); |
|
256 | - }); |
|
257 | - |
|
258 | - switch ($response) { |
|
259 | - case \Password::PASSWORD_RESET: |
|
260 | - return 'success'; |
|
205 | + return $user; |
|
206 | + } |
|
207 | + |
|
208 | + /** |
|
209 | + * Unblock the user. |
|
210 | + * |
|
211 | + * @param integer $userId |
|
212 | + * @return object |
|
213 | + */ |
|
214 | + public function unblock($userId) |
|
215 | + { |
|
216 | + if ( ! $this->hasGroup(['Admin'])) |
|
217 | + { |
|
218 | + \ErrorHandler::noPermissions(); |
|
219 | + } |
|
220 | + |
|
221 | + $user = $this->find($userId); |
|
222 | + $user->blocked = 0; |
|
223 | + $user->save(); |
|
224 | + |
|
225 | + return $user; |
|
226 | + } |
|
227 | + |
|
228 | + /** |
|
229 | + * Send a reset link to the given user. |
|
230 | + * |
|
231 | + * @param string $email |
|
232 | + * @return void |
|
233 | + */ |
|
234 | + public function sendReset($email) |
|
235 | + { |
|
236 | + if ( ! $user = $this->model->where('email', $email)->first()) |
|
237 | + { |
|
238 | + \ErrorHandler::notFound('email'); |
|
239 | + } |
|
240 | + |
|
241 | + $token = \Password::getRepository()->create($user); |
|
242 | + \Core::notifications()->notify($user, 'ResetPassword', $token); |
|
243 | + } |
|
244 | + |
|
245 | + /** |
|
246 | + * Reset the given user's password. |
|
247 | + * |
|
248 | + * @param array $credentials |
|
249 | + * @return array |
|
250 | + */ |
|
251 | + public function resetPassword($credentials) |
|
252 | + { |
|
253 | + $response = \Password::reset($credentials, function ($user, $password) { |
|
254 | + $user->password = $password; |
|
255 | + $user->save(); |
|
256 | + }); |
|
257 | + |
|
258 | + switch ($response) { |
|
259 | + case \Password::PASSWORD_RESET: |
|
260 | + return 'success'; |
|
261 | 261 | |
262 | - case \Password::INVALID_TOKEN: |
|
263 | - \ErrorHandler::invalidResetToken('token'); |
|
264 | - |
|
265 | - case \Password::INVALID_PASSWORD: |
|
266 | - \ErrorHandler::invalidResetPassword('email'); |
|
267 | - |
|
268 | - case \Password::INVALID_USER: |
|
269 | - \ErrorHandler::notFound('user'); |
|
270 | - |
|
271 | - default: |
|
272 | - \ErrorHandler::generalError(); |
|
273 | - } |
|
274 | - } |
|
275 | - |
|
276 | - /** |
|
277 | - * Change the logged in user password. |
|
278 | - * |
|
279 | - * @param array $credentials |
|
280 | - * @return void |
|
281 | - */ |
|
282 | - public function changePassword($credentials) |
|
283 | - { |
|
284 | - $user = \Auth::user(); |
|
285 | - if ( ! \Hash::check($credentials['old_password'], $user->password)) |
|
286 | - { |
|
287 | - \ErrorHandler::invalidOldPassword(); |
|
288 | - } |
|
289 | - |
|
290 | - $user->password = $credentials['password']; |
|
291 | - $user->save(); |
|
292 | - } |
|
293 | - |
|
294 | - /** |
|
295 | - * Confirm email using the confirmation code. |
|
296 | - * |
|
297 | - * @param string $confirmationCode |
|
298 | - * @return void |
|
299 | - */ |
|
300 | - public function confirmEmail($confirmationCode) |
|
301 | - { |
|
302 | - $user = $this->first(['confirmation_code' => $confirmationCode]); |
|
303 | - $user->confirmed = 1; |
|
304 | - $user->confirmation_code = null; |
|
305 | - $user->save(); |
|
306 | - } |
|
307 | - |
|
308 | - /** |
|
309 | - * Send the confirmation mail. |
|
310 | - * |
|
311 | - * @param string $email |
|
312 | - * @return void |
|
313 | - */ |
|
314 | - public function sendConfirmationEmail($email) |
|
315 | - { |
|
316 | - $user = $this->first(['email' => $email]); |
|
317 | - if ($user->confirmed) |
|
318 | - { |
|
319 | - \ErrorHandler::emailAlreadyConfirmed(); |
|
320 | - } |
|
321 | - |
|
322 | - $user->confirmed = 0; |
|
323 | - $user->confirmation_code = sha1(microtime()); |
|
324 | - $user->save(); |
|
325 | - \Core::notifications()->notify($user, 'ConfirmEmail'); |
|
326 | - } |
|
327 | - |
|
328 | - /** |
|
329 | - * Paginate all users in the given group based on the given conditions. |
|
330 | - * |
|
331 | - * @param string $groupName |
|
332 | - * @param array $relations |
|
333 | - * @param integer $perPage |
|
334 | - * @param string $sortBy |
|
335 | - * @param boolean $desc |
|
336 | - * @return \Illuminate\Http\Response |
|
337 | - */ |
|
338 | - public function group($conditions, $groupName, $relations, $perPage, $sortBy, $desc) |
|
339 | - { |
|
340 | - unset($conditions['page']); |
|
341 | - $conditions = $this->constructConditions($conditions, $this->model); |
|
342 | - $sort = $desc ? 'desc' : 'asc'; |
|
343 | - $model = call_user_func_array("{$this->getModel()}::with", array($relations)); |
|
344 | - |
|
345 | - $model->whereHas('groups', function($q) use ($groupName){ |
|
346 | - $q->where('name', $groupName); |
|
347 | - }); |
|
262 | + case \Password::INVALID_TOKEN: |
|
263 | + \ErrorHandler::invalidResetToken('token'); |
|
264 | + |
|
265 | + case \Password::INVALID_PASSWORD: |
|
266 | + \ErrorHandler::invalidResetPassword('email'); |
|
267 | + |
|
268 | + case \Password::INVALID_USER: |
|
269 | + \ErrorHandler::notFound('user'); |
|
270 | + |
|
271 | + default: |
|
272 | + \ErrorHandler::generalError(); |
|
273 | + } |
|
274 | + } |
|
275 | + |
|
276 | + /** |
|
277 | + * Change the logged in user password. |
|
278 | + * |
|
279 | + * @param array $credentials |
|
280 | + * @return void |
|
281 | + */ |
|
282 | + public function changePassword($credentials) |
|
283 | + { |
|
284 | + $user = \Auth::user(); |
|
285 | + if ( ! \Hash::check($credentials['old_password'], $user->password)) |
|
286 | + { |
|
287 | + \ErrorHandler::invalidOldPassword(); |
|
288 | + } |
|
289 | + |
|
290 | + $user->password = $credentials['password']; |
|
291 | + $user->save(); |
|
292 | + } |
|
293 | + |
|
294 | + /** |
|
295 | + * Confirm email using the confirmation code. |
|
296 | + * |
|
297 | + * @param string $confirmationCode |
|
298 | + * @return void |
|
299 | + */ |
|
300 | + public function confirmEmail($confirmationCode) |
|
301 | + { |
|
302 | + $user = $this->first(['confirmation_code' => $confirmationCode]); |
|
303 | + $user->confirmed = 1; |
|
304 | + $user->confirmation_code = null; |
|
305 | + $user->save(); |
|
306 | + } |
|
307 | + |
|
308 | + /** |
|
309 | + * Send the confirmation mail. |
|
310 | + * |
|
311 | + * @param string $email |
|
312 | + * @return void |
|
313 | + */ |
|
314 | + public function sendConfirmationEmail($email) |
|
315 | + { |
|
316 | + $user = $this->first(['email' => $email]); |
|
317 | + if ($user->confirmed) |
|
318 | + { |
|
319 | + \ErrorHandler::emailAlreadyConfirmed(); |
|
320 | + } |
|
321 | + |
|
322 | + $user->confirmed = 0; |
|
323 | + $user->confirmation_code = sha1(microtime()); |
|
324 | + $user->save(); |
|
325 | + \Core::notifications()->notify($user, 'ConfirmEmail'); |
|
326 | + } |
|
327 | + |
|
328 | + /** |
|
329 | + * Paginate all users in the given group based on the given conditions. |
|
330 | + * |
|
331 | + * @param string $groupName |
|
332 | + * @param array $relations |
|
333 | + * @param integer $perPage |
|
334 | + * @param string $sortBy |
|
335 | + * @param boolean $desc |
|
336 | + * @return \Illuminate\Http\Response |
|
337 | + */ |
|
338 | + public function group($conditions, $groupName, $relations, $perPage, $sortBy, $desc) |
|
339 | + { |
|
340 | + unset($conditions['page']); |
|
341 | + $conditions = $this->constructConditions($conditions, $this->model); |
|
342 | + $sort = $desc ? 'desc' : 'asc'; |
|
343 | + $model = call_user_func_array("{$this->getModel()}::with", array($relations)); |
|
344 | + |
|
345 | + $model->whereHas('groups', function($q) use ($groupName){ |
|
346 | + $q->where('name', $groupName); |
|
347 | + }); |
|
348 | 348 | |
349 | 349 | |
350 | - if (count($conditions['conditionValues'])) |
|
351 | - { |
|
352 | - $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']); |
|
353 | - } |
|
354 | - |
|
355 | - if ($perPage) |
|
356 | - { |
|
357 | - return $model->orderBy($sortBy, $sort)->paginate($perPage); |
|
358 | - } |
|
359 | - |
|
360 | - return $model->orderBy($sortBy, $sort)->get(); |
|
361 | - } |
|
362 | - |
|
363 | - /** |
|
364 | - * Save the given data to the logged in user. |
|
365 | - * |
|
366 | - * @param array $credentials |
|
367 | - * @return void |
|
368 | - */ |
|
369 | - public function saveProfile($data) |
|
370 | - { |
|
371 | - if (array_key_exists('profile_picture', $data)) |
|
372 | - { |
|
373 | - $data['profile_picture'] = \Media::uploadImageBas64($data['profile_picture'], 'admins/profile_pictures'); |
|
374 | - } |
|
350 | + if (count($conditions['conditionValues'])) |
|
351 | + { |
|
352 | + $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']); |
|
353 | + } |
|
354 | + |
|
355 | + if ($perPage) |
|
356 | + { |
|
357 | + return $model->orderBy($sortBy, $sort)->paginate($perPage); |
|
358 | + } |
|
359 | + |
|
360 | + return $model->orderBy($sortBy, $sort)->get(); |
|
361 | + } |
|
362 | + |
|
363 | + /** |
|
364 | + * Save the given data to the logged in user. |
|
365 | + * |
|
366 | + * @param array $credentials |
|
367 | + * @return void |
|
368 | + */ |
|
369 | + public function saveProfile($data) |
|
370 | + { |
|
371 | + if (array_key_exists('profile_picture', $data)) |
|
372 | + { |
|
373 | + $data['profile_picture'] = \Media::uploadImageBas64($data['profile_picture'], 'admins/profile_pictures'); |
|
374 | + } |
|
375 | 375 | |
376 | - $data['id'] = \Auth::id(); |
|
377 | - $this->save($data); |
|
378 | - } |
|
379 | - |
|
380 | - /** |
|
381 | - * Ensure access token hasn't expired or revoked. |
|
382 | - * |
|
383 | - * @param string $accessToken |
|
384 | - * @return boolean |
|
385 | - */ |
|
386 | - public function accessTokenExpiredOrRevoked($accessToken) |
|
387 | - { |
|
388 | - |
|
389 | - $accessTokenRepository = \App::make('League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface'); |
|
390 | - $data = new ValidationData(); |
|
391 | - $data->setCurrentTime(time()); |
|
392 | - |
|
393 | - if ($accessToken->validate($data) === false || $accessTokenRepository->isAccessTokenRevoked($accessToken->getClaim('jti'))) |
|
394 | - { |
|
395 | - return true; |
|
396 | - } |
|
397 | - |
|
398 | - return false; |
|
399 | - } |
|
400 | - |
|
401 | - /** |
|
402 | - * Revoke the given access token and all |
|
403 | - * associated refresh tokens. |
|
404 | - * |
|
405 | - * @param string $accessToken |
|
406 | - * @return void |
|
407 | - */ |
|
408 | - public function revokeAccessToken($accessToken) |
|
409 | - { |
|
410 | - \DB::table('oauth_refresh_tokens') |
|
411 | - ->where('access_token_id', $accessToken->id) |
|
412 | - ->update([ |
|
413 | - 'revoked' => true |
|
414 | - ]); |
|
415 | - |
|
416 | - $accessToken->revoke(); |
|
417 | - } |
|
376 | + $data['id'] = \Auth::id(); |
|
377 | + $this->save($data); |
|
378 | + } |
|
379 | + |
|
380 | + /** |
|
381 | + * Ensure access token hasn't expired or revoked. |
|
382 | + * |
|
383 | + * @param string $accessToken |
|
384 | + * @return boolean |
|
385 | + */ |
|
386 | + public function accessTokenExpiredOrRevoked($accessToken) |
|
387 | + { |
|
388 | + |
|
389 | + $accessTokenRepository = \App::make('League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface'); |
|
390 | + $data = new ValidationData(); |
|
391 | + $data->setCurrentTime(time()); |
|
392 | + |
|
393 | + if ($accessToken->validate($data) === false || $accessTokenRepository->isAccessTokenRevoked($accessToken->getClaim('jti'))) |
|
394 | + { |
|
395 | + return true; |
|
396 | + } |
|
397 | + |
|
398 | + return false; |
|
399 | + } |
|
400 | + |
|
401 | + /** |
|
402 | + * Revoke the given access token and all |
|
403 | + * associated refresh tokens. |
|
404 | + * |
|
405 | + * @param string $accessToken |
|
406 | + * @return void |
|
407 | + */ |
|
408 | + public function revokeAccessToken($accessToken) |
|
409 | + { |
|
410 | + \DB::table('oauth_refresh_tokens') |
|
411 | + ->where('access_token_id', $accessToken->id) |
|
412 | + ->update([ |
|
413 | + 'revoked' => true |
|
414 | + ]); |
|
415 | + |
|
416 | + $accessToken->revoke(); |
|
417 | + } |
|
418 | 418 | } |
@@ -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 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function assignGroups($userId, $group_ids) |
82 | 82 | { |
83 | - \DB::transaction(function () use ($userId, $group_ids) { |
|
83 | + \DB::transaction(function() use ($userId, $group_ids) { |
|
84 | 84 | $user = $this->find($userId); |
85 | 85 | $user->groups()->detach(); |
86 | 86 | $user->groups()->attach($group_ids); |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | */ |
251 | 251 | public function resetPassword($credentials) |
252 | 252 | { |
253 | - $response = \Password::reset($credentials, function ($user, $password) { |
|
253 | + $response = \Password::reset($credentials, function($user, $password) { |
|
254 | 254 | $user->password = $password; |
255 | 255 | $user->save(); |
256 | 256 | }); |
@@ -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('skeleton.disable_confirm_email') && ! $user->confirmed) |
|
114 | + } else if ( ! config('skeleton.disable_confirm_email') && ! $user->confirmed) |
|
119 | 115 | { |
120 | 116 | \ErrorHandler::emailNotConfirmed(); |
121 | 117 | } |
@@ -165,8 +161,7 @@ discard block |
||
165 | 161 | { |
166 | 162 | $user->confirmed = 1; |
167 | 163 | $user->save(); |
168 | - } |
|
169 | - else if ( ! config('skeleton.disable_confirm_email')) |
|
164 | + } else if ( ! config('skeleton.disable_confirm_email')) |
|
170 | 165 | { |
171 | 166 | $this->sendConfirmationEmail($user->email); |
172 | 167 | } |
@@ -189,12 +184,10 @@ discard block |
||
189 | 184 | if ( ! $this->hasGroup(['Admin'])) |
190 | 185 | { |
191 | 186 | \ErrorHandler::noPermissions(); |
192 | - } |
|
193 | - else if (\Auth::id() == $userId) |
|
187 | + } else if (\Auth::id() == $userId) |
|
194 | 188 | { |
195 | 189 | \ErrorHandler::noPermissions(); |
196 | - } |
|
197 | - else if ($user->groups->pluck('name')->search('Admin', true) !== false) |
|
190 | + } else if ($user->groups->pluck('name')->search('Admin', true) !== false) |
|
198 | 191 | { |
199 | 192 | \ErrorHandler::noPermissions(); |
200 | 193 | } |