Completed
Push — master ( a6c9e2...cdc345 )
by Sherif
03:17
created
src/Modules/V1/Core/AbstractRepositories/AbstractRepository.php 2 patches
Doc Comments   +9 added lines, -8 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
      */
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      * @param  integer $perPage
140 140
      * @param  array   $relations
141 141
      * @param  string  $sortBy
142
-     * @param  boolean $desc
142
+     * @param  integer $desc
143 143
      * @param  array   $columns
144 144
      * @return collection
145 145
      */
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      * @param  integer $perPage
158 158
      * @param  array   $relations
159 159
      * @param  string  $sortBy
160
-     * @param  boolean $desc
160
+     * @param  integer $desc
161 161
      * @param  array   $columns
162 162
      * @return collection
163 163
      */
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
      * Update record in the storage based on the given
419 419
      * condition.
420 420
      * 
421
-     * @param  var $value condition value
421
+     * @param  boolean $value condition value
422 422
      * @param  array $data
423 423
      * @param  string $attribute condition column name
424 424
      * @return void
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
      * id.
480 480
      * 
481 481
      * @param  integer $id
482
-     * @param  array   $relations
482
+     * @param  string[]   $relations
483 483
      * @param  array   $columns
484 484
      * @return object
485 485
      */
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
      * @param  array   $conditions array of conditions
496 496
      * @param  array   $relations
497 497
      * @param  string  $sortBy
498
-     * @param  boolean $desc
498
+     * @param  integer $desc
499 499
      * @param  array   $columns
500 500
      * @return collection
501 501
      */
@@ -527,7 +527,7 @@  discard block
 block discarded – undo
527 527
      * @param  array   $conditions array of conditions
528 528
      * @param  integer $perPage
529 529
      * @param  string  $sortBy
530
-     * @param  boolean $desc
530
+     * @param  integer $desc
531 531
      * @param  array   $columns
532 532
      * @return collection
533 533
      */
@@ -567,6 +567,7 @@  discard block
 block discarded – undo
567 567
     /**
568 568
      * Build the conditions recursively for the retrieving methods.
569 569
      * @param  array $conditions
570
+     * @param string $model
570 571
      * @return array
571 572
      */
572 573
     protected function constructConditions($conditions, $model)
Please login to merge, or discard this patch.
Indentation   +641 added lines, -641 removed lines patch added patch discarded remove patch
@@ -4,655 +4,655 @@
 block discarded – undo
4 4
 
5 5
 abstract class AbstractRepository implements RepositoryInterface
6 6
 {
7
-    /**
8
-     * The model implementation.
9
-     * 
10
-     * @var string
11
-     */
12
-    public $model;
7
+	/**
8
+	 * The model implementation.
9
+	 * 
10
+	 * @var string
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
-                /**
71
-                 * Use the first element in the model columns to construct the first condition.
72
-                 */
73
-                $q->where(\DB::raw('LOWER(' . array_shift($conditionColumns) . ')'), 'LIKE', '%' . strtolower($query) . '%');
74
-            }
75
-
76
-            /**
77
-             * Loop through the rest of the columns to construct or where conditions.
78
-             */
79
-            foreach ($conditionColumns as $column) 
80
-            {
81
-                $q->orWhere(\DB::raw('LOWER(' . $column . ')'), 'LIKE', '%' . strtolower($query) . '%');
82
-            }
83
-
84
-            /**
85
-             * Loop through the model relations.
86
-             */
87
-            foreach ($relations as $relation) 
88
-            {
89
-                /**
90
-                 * Remove the sub relation if exists.
91
-                 */
92
-                $relation = explode('.', $relation)[0];
93
-
94
-                /**
95
-                 * Try to fetch the relation repository from the core.
96
-                 */
97
-                if (\Core::$relation()) 
98
-                {
99
-                    /**
100
-                     * Construct the relation condition.
101
-                     */
102
-                    $q->orWhereHas($relation, function ($subModel) use ($query, $relation){
103
-
104
-                        $subModel->where(function ($q) use ($query, $relation){
105
-
106
-                            /**
107
-                             * Get columns of the relation.
108
-                             */
109
-                            $subConditionColumns = \Core::$relation()->model->searchable;
110
-
111
-                            if (count($subConditionColumns)) 
112
-                            {
113
-                                /**
114
-                                * Use the first element in the relation model columns to construct the first condition.
115
-                                 */
116
-                                $q->where(\DB::raw('LOWER(' . array_shift($subConditionColumns) . ')'), 'LIKE', '%' . strtolower($query) . '%');
117
-                            }
118
-
119
-                            /**
120
-                             * Loop through the rest of the columns to construct or where conditions.
121
-                             */
122
-                            foreach ($subConditionColumns as $subConditionColumn)
123
-                            {
124
-                                $q->orWhere(\DB::raw('LOWER(' . $subConditionColumn . ')'), 'LIKE', '%' . strtolower($query) . '%');
125
-                            } 
126
-                        });
127
-
128
-                    });
129
-                }
130
-            }
131
-        });
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
+				/**
71
+				 * Use the first element in the model columns to construct the first condition.
72
+				 */
73
+				$q->where(\DB::raw('LOWER(' . array_shift($conditionColumns) . ')'), 'LIKE', '%' . strtolower($query) . '%');
74
+			}
75
+
76
+			/**
77
+			 * Loop through the rest of the columns to construct or where conditions.
78
+			 */
79
+			foreach ($conditionColumns as $column) 
80
+			{
81
+				$q->orWhere(\DB::raw('LOWER(' . $column . ')'), 'LIKE', '%' . strtolower($query) . '%');
82
+			}
83
+
84
+			/**
85
+			 * Loop through the model relations.
86
+			 */
87
+			foreach ($relations as $relation) 
88
+			{
89
+				/**
90
+				 * Remove the sub relation if exists.
91
+				 */
92
+				$relation = explode('.', $relation)[0];
93
+
94
+				/**
95
+				 * Try to fetch the relation repository from the core.
96
+				 */
97
+				if (\Core::$relation()) 
98
+				{
99
+					/**
100
+					 * Construct the relation condition.
101
+					 */
102
+					$q->orWhereHas($relation, function ($subModel) use ($query, $relation){
103
+
104
+						$subModel->where(function ($q) use ($query, $relation){
105
+
106
+							/**
107
+							 * Get columns of the relation.
108
+							 */
109
+							$subConditionColumns = \Core::$relation()->model->searchable;
110
+
111
+							if (count($subConditionColumns)) 
112
+							{
113
+								/**
114
+								 * Use the first element in the relation model columns to construct the first condition.
115
+								 */
116
+								$q->where(\DB::raw('LOWER(' . array_shift($subConditionColumns) . ')'), 'LIKE', '%' . strtolower($query) . '%');
117
+							}
118
+
119
+							/**
120
+							 * Loop through the rest of the columns to construct or where conditions.
121
+							 */
122
+							foreach ($subConditionColumns as $subConditionColumn)
123
+							{
124
+								$q->orWhere(\DB::raw('LOWER(' . $subConditionColumn . ')'), 'LIKE', '%' . strtolower($query) . '%');
125
+							} 
126
+						});
127
+
128
+					});
129
+				}
130
+			}
131
+		});
132 132
         
133
-        return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns);
134
-    }
133
+		return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns);
134
+	}
135 135
     
136
-    /**
137
-     * Fetch all records with relations from storage in pages.
138
-     * 
139
-     * @param  integer $perPage
140
-     * @param  array   $relations
141
-     * @param  string  $sortBy
142
-     * @param  boolean $desc
143
-     * @param  array   $columns
144
-     * @return collection
145
-     */
146
-    public function paginate($perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*'))
147
-    {
148
-        $sort = $desc ? 'desc' : 'asc';
149
-        return call_user_func_array("{$this->getModel()}::with", array($relations))->orderBy($sortBy, $sort)->paginate($perPage, $columns);
150
-    }
151
-
152
-    /**
153
-     * Fetch all records with relations based on
154
-     * the given condition from storage in pages.
155
-     * 
156
-     * @param  array   $conditions array of conditions
157
-     * @param  integer $perPage
158
-     * @param  array   $relations
159
-     * @param  string  $sortBy
160
-     * @param  boolean $desc
161
-     * @param  array   $columns
162
-     * @return collection
163
-     */
164
-    public function paginateBy($conditions, $perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*'))
165
-    {
166
-        unset($conditions['page']);
167
-        $conditions = $this->constructConditions($conditions, $this->model);
168
-        $sort       = $desc ? 'desc' : 'asc';
169
-        return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->paginate($perPage, $columns);
170
-    }
136
+	/**
137
+	 * Fetch all records with relations from storage in pages.
138
+	 * 
139
+	 * @param  integer $perPage
140
+	 * @param  array   $relations
141
+	 * @param  string  $sortBy
142
+	 * @param  boolean $desc
143
+	 * @param  array   $columns
144
+	 * @return collection
145
+	 */
146
+	public function paginate($perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*'))
147
+	{
148
+		$sort = $desc ? 'desc' : 'asc';
149
+		return call_user_func_array("{$this->getModel()}::with", array($relations))->orderBy($sortBy, $sort)->paginate($perPage, $columns);
150
+	}
151
+
152
+	/**
153
+	 * Fetch all records with relations based on
154
+	 * the given condition from storage in pages.
155
+	 * 
156
+	 * @param  array   $conditions array of conditions
157
+	 * @param  integer $perPage
158
+	 * @param  array   $relations
159
+	 * @param  string  $sortBy
160
+	 * @param  boolean $desc
161
+	 * @param  array   $columns
162
+	 * @return collection
163
+	 */
164
+	public function paginateBy($conditions, $perPage = 15, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*'))
165
+	{
166
+		unset($conditions['page']);
167
+		$conditions = $this->constructConditions($conditions, $this->model);
168
+		$sort       = $desc ? 'desc' : 'asc';
169
+		return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->paginate($perPage, $columns);
170
+	}
171 171
     
172
-    /**
173
-     * Save the given model to the storage.
174
-     * 
175
-     * @param  array   $data
176
-     * @param  boolean $saveLog
177
-     * @return void
178
-     */
179
-    public function save(array $data, $saveLog = true)
180
-    {
181
-        $model      = false;
182
-        $modelClass = $this->model;
183
-        $relations  = [];
184
-
185
-        \DB::transaction(function () use (&$model, &$relations, $data, $saveLog, $modelClass) {
186
-            /**
187
-             * If the id is present in the data then select the model for updating,
188
-             * else create new model.
189
-             * @var array
190
-             */
191
-            $model = array_key_exists('id', $data) ? $modelClass->lockForUpdate()->find($data['id']) : new $modelClass;
192
-            if ( ! $model) 
193
-            {
194
-                \ErrorHandler::notFound(class_basename($modelClass) . ' with id : ' . $data['id']);
195
-            }
196
-
197
-            /**
198
-             * Construct the model object with the given data,
199
-             * and if there is a relation add it to relations array,
200
-             * then save the model.
201
-             */
202
-            foreach ($data as $key => $value) 
203
-            {
204
-                /**
205
-                 * If the attribute is a relation.
206
-                 */
207
-                $relation = camel_case($key);
208
-                if (method_exists($model, $relation) && \Core::$relation())
209
-                {
210
-                    /**
211
-                     * Check if the relation is a collection.
212
-                     */
213
-                    if (class_basename($model->$relation) == 'Collection') 
214
-                    {   
215
-                        /**
216
-                         * If the relation has no value then marke the relation data 
217
-                         * related to the model to be deleted.
218
-                         */
219
-                        if ( ! $value || ! count($value)) 
220
-                        {
221
-                            $relations[$relation] = 'delete';
222
-                        }   
223
-                    }
224
-                    if (is_array($value)) 
225
-                    {
226
-                        /**
227
-                         * Loop through the relation data.
228
-                         */
229
-                        foreach ($value as $attr => $val) 
230
-                        {
231
-                            /**
232
-                             * Get the relation model.
233
-                             */
234
-                            $relationBaseModel = \Core::$relation()->model;
235
-
236
-                            /**
237
-                             * Check if the relation is a collection.
238
-                             */
239
-                            if (class_basename($model->$relation) == 'Collection')
240
-                            {
241
-                                /**
242
-                                 * If the id is present in the data then select the relation model for updating,
243
-                                 * else create new model.
244
-                                 */
245
-                                $relationModel = array_key_exists('id', $val) ? $relationBaseModel->lockForUpdate()->find($val['id']) : new $relationBaseModel;
246
-
247
-                                /**
248
-                                 * If model doesn't exists.
249
-                                 */
250
-                                if ( ! $relationModel) 
251
-                                {
252
-                                    \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $val['id']);
253
-                                }
254
-
255
-                                /**
256
-                                 * Loop through the relation attributes.
257
-                                 */
258
-                                foreach ($val as $attr => $val) 
259
-                                {
260
-                                    /**
261
-                                     * Prevent the sub relations or attributes not in the fillable.
262
-                                     */
263
-                                    if (gettype($val) !== 'object' && gettype($val) !== 'array' &&  array_search($attr, $relationModel->getFillable(), true) !== false)
264
-                                    {
265
-                                        $relationModel->$attr = $val;
266
-                                    }
267
-                                }
268
-
269
-                                $relations[$relation][] = $relationModel;
270
-                            }
271
-                            /**
272
-                             * If not collection.
273
-                             */
274
-                            else
275
-                            {
276
-                                /**
277
-                                 * Prevent the sub relations.
278
-                                 */
279
-                                if (gettype($val) !== 'object' && gettype($val) !== 'array') 
280
-                                {
281
-
282
-                                    /**
283
-                                     * If the id is present in the data then select the relation model for updating,
284
-                                     * else create new model.
285
-                                     */
286
-                                    $relationModel = array_key_exists('id', $value) ? $relationBaseModel->lockForUpdate()->find($value['id']) : new $relationBaseModel;
287
-
288
-                                    /**
289
-                                     * If model doesn't exists.
290
-                                     */
291
-                                    if ( ! $relationModel) 
292
-                                    {
293
-                                        \ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $value['id']);
294
-                                    }
295
-
296
-                                    foreach ($value as $relationAttribute => $relationValue) 
297
-                                    {
298
-                                        /**
299
-                                         * Prevent attributes not in the fillable.
300
-                                         */
301
-                                        if (array_search($relationAttribute, $relationModel->getFillable(), true) !== false) 
302
-                                        {
303
-                                            $relationModel->$relationAttribute = $relationValue;
304
-                                        }
305
-                                    }
306
-
307
-                                    $relations[$relation] = $relationModel;
308
-                                }
309
-                            }
310
-                        }
311
-                    }
312
-                }
313
-                /**
314
-                 * If the attribute isn't a relation and prevent attributes not in the fillable.
315
-                 */
316
-                else if (array_search($key, $model->getFillable(), true) !== false)
317
-                {
318
-                    $model->$key = $value;   
319
-                }
320
-            }
321
-            /**
322
-             * Save the model.
323
-             */
324
-            $model->save();
325
-
326
-            /**
327
-             * Loop through the relations array.
328
-             */
329
-            foreach ($relations as $key => $value) 
330
-            {
331
-                /**
332
-                 * If the relation is marked for delete then delete it.
333
-                 */
334
-                if ($value == 'delete' && $model->$key()->count())
335
-                {
336
-                    $model->$key()->delete();
337
-                }
338
-                /**
339
-                 * If the relation is an array.
340
-                 */
341
-                else if (gettype($value) == 'array') 
342
-                {
343
-                    $ids = [];
344
-                    /**
345
-                     * Loop through the relations.
346
-                     */
347
-                    foreach ($value as $val) 
348
-                    {
349
-                        switch (class_basename($model->$key())) 
350
-                        {
351
-                            /**
352
-                             * If the relation is one to many then update it's foreign key with
353
-                             * the model id and save it then add its id to ids array to delete all 
354
-                             * relations who's id isn't in the ids array.
355
-                             */
356
-                            case 'HasMany':
357
-                                $foreignKeyName       = $model->$key()->getForeignKeyName();
358
-                                $val->$foreignKeyName = $model->id;
359
-                                $val->save();
360
-                                $ids[] = $val->id;
361
-                                break;
362
-
363
-                            /**
364
-                             * If the relation is many to many then add it's id to the ids array to
365
-                             * attache these ids to the model.
366
-                             */
367
-                            case 'BelongsToMany':
368
-                                $val->save();
369
-                                $ids[] = $val->id;
370
-                                break;
371
-                        }
372
-                    }
373
-                    switch (class_basename($model->$key())) 
374
-                    {
375
-                        /**
376
-                         * If the relation is one to many then delete all 
377
-                         * relations who's id isn't in the ids array.
378
-                         */
379
-                        case 'HasMany':
380
-                            $model->$key()->whereNotIn('id', $ids)->delete();
381
-                            break;
382
-
383
-                        /**
384
-                         * If the relation is many to many then 
385
-                         * detach the previous data and attach 
386
-                         * the ids array to the model.
387
-                         */
388
-                        case 'BelongsToMany':
389
-                            $model->$key()->detach();
390
-                            $model->$key()->attach($ids);
391
-                            break;
392
-                    }
393
-                }
394
-                /**
395
-                 * If the relation isn't array.
396
-                 */
397
-                else
398
-                {
399
-                    switch (class_basename($model->$key())) 
400
-                    {
401
-                        /**
402
-                         * If the relation is one to many or one to one.
403
-                         */
404
-                        case 'HasOne':
405
-                            $foreignKeyName         = $model->$key()->getForeignKeyName();
406
-                            $value->$foreignKeyName = $model->id;
407
-                            $value->save();
408
-                            break;
409
-                    }
410
-                }
411
-            }
412
-
413
-            $saveLog ? \Logging::saveLog(array_key_exists('id', $data) ? 'update' : 'create', class_basename($modelClass), $this->getModel(), $model->id, $model) : false;
414
-        });
415
-    }
172
+	/**
173
+	 * Save the given model to the storage.
174
+	 * 
175
+	 * @param  array   $data
176
+	 * @param  boolean $saveLog
177
+	 * @return void
178
+	 */
179
+	public function save(array $data, $saveLog = true)
180
+	{
181
+		$model      = false;
182
+		$modelClass = $this->model;
183
+		$relations  = [];
184
+
185
+		\DB::transaction(function () use (&$model, &$relations, $data, $saveLog, $modelClass) {
186
+			/**
187
+			 * If the id is present in the data then select the model for updating,
188
+			 * else create new model.
189
+			 * @var array
190
+			 */
191
+			$model = array_key_exists('id', $data) ? $modelClass->lockForUpdate()->find($data['id']) : new $modelClass;
192
+			if ( ! $model) 
193
+			{
194
+				\ErrorHandler::notFound(class_basename($modelClass) . ' with id : ' . $data['id']);
195
+			}
196
+
197
+			/**
198
+			 * Construct the model object with the given data,
199
+			 * and if there is a relation add it to relations array,
200
+			 * then save the model.
201
+			 */
202
+			foreach ($data as $key => $value) 
203
+			{
204
+				/**
205
+				 * If the attribute is a relation.
206
+				 */
207
+				$relation = camel_case($key);
208
+				if (method_exists($model, $relation) && \Core::$relation())
209
+				{
210
+					/**
211
+					 * Check if the relation is a collection.
212
+					 */
213
+					if (class_basename($model->$relation) == 'Collection') 
214
+					{   
215
+						/**
216
+						 * If the relation has no value then marke the relation data 
217
+						 * related to the model to be deleted.
218
+						 */
219
+						if ( ! $value || ! count($value)) 
220
+						{
221
+							$relations[$relation] = 'delete';
222
+						}   
223
+					}
224
+					if (is_array($value)) 
225
+					{
226
+						/**
227
+						 * Loop through the relation data.
228
+						 */
229
+						foreach ($value as $attr => $val) 
230
+						{
231
+							/**
232
+							 * Get the relation model.
233
+							 */
234
+							$relationBaseModel = \Core::$relation()->model;
235
+
236
+							/**
237
+							 * Check if the relation is a collection.
238
+							 */
239
+							if (class_basename($model->$relation) == 'Collection')
240
+							{
241
+								/**
242
+								 * If the id is present in the data then select the relation model for updating,
243
+								 * else create new model.
244
+								 */
245
+								$relationModel = array_key_exists('id', $val) ? $relationBaseModel->lockForUpdate()->find($val['id']) : new $relationBaseModel;
246
+
247
+								/**
248
+								 * If model doesn't exists.
249
+								 */
250
+								if ( ! $relationModel) 
251
+								{
252
+									\ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $val['id']);
253
+								}
254
+
255
+								/**
256
+								 * Loop through the relation attributes.
257
+								 */
258
+								foreach ($val as $attr => $val) 
259
+								{
260
+									/**
261
+									 * Prevent the sub relations or attributes not in the fillable.
262
+									 */
263
+									if (gettype($val) !== 'object' && gettype($val) !== 'array' &&  array_search($attr, $relationModel->getFillable(), true) !== false)
264
+									{
265
+										$relationModel->$attr = $val;
266
+									}
267
+								}
268
+
269
+								$relations[$relation][] = $relationModel;
270
+							}
271
+							/**
272
+							 * If not collection.
273
+							 */
274
+							else
275
+							{
276
+								/**
277
+								 * Prevent the sub relations.
278
+								 */
279
+								if (gettype($val) !== 'object' && gettype($val) !== 'array') 
280
+								{
281
+
282
+									/**
283
+									 * If the id is present in the data then select the relation model for updating,
284
+									 * else create new model.
285
+									 */
286
+									$relationModel = array_key_exists('id', $value) ? $relationBaseModel->lockForUpdate()->find($value['id']) : new $relationBaseModel;
287
+
288
+									/**
289
+									 * If model doesn't exists.
290
+									 */
291
+									if ( ! $relationModel) 
292
+									{
293
+										\ErrorHandler::notFound(class_basename($relationBaseModel) . ' with id : ' . $value['id']);
294
+									}
295
+
296
+									foreach ($value as $relationAttribute => $relationValue) 
297
+									{
298
+										/**
299
+										 * Prevent attributes not in the fillable.
300
+										 */
301
+										if (array_search($relationAttribute, $relationModel->getFillable(), true) !== false) 
302
+										{
303
+											$relationModel->$relationAttribute = $relationValue;
304
+										}
305
+									}
306
+
307
+									$relations[$relation] = $relationModel;
308
+								}
309
+							}
310
+						}
311
+					}
312
+				}
313
+				/**
314
+				 * If the attribute isn't a relation and prevent attributes not in the fillable.
315
+				 */
316
+				else if (array_search($key, $model->getFillable(), true) !== false)
317
+				{
318
+					$model->$key = $value;   
319
+				}
320
+			}
321
+			/**
322
+			 * Save the model.
323
+			 */
324
+			$model->save();
325
+
326
+			/**
327
+			 * Loop through the relations array.
328
+			 */
329
+			foreach ($relations as $key => $value) 
330
+			{
331
+				/**
332
+				 * If the relation is marked for delete then delete it.
333
+				 */
334
+				if ($value == 'delete' && $model->$key()->count())
335
+				{
336
+					$model->$key()->delete();
337
+				}
338
+				/**
339
+				 * If the relation is an array.
340
+				 */
341
+				else if (gettype($value) == 'array') 
342
+				{
343
+					$ids = [];
344
+					/**
345
+					 * Loop through the relations.
346
+					 */
347
+					foreach ($value as $val) 
348
+					{
349
+						switch (class_basename($model->$key())) 
350
+						{
351
+							/**
352
+							 * If the relation is one to many then update it's foreign key with
353
+							 * the model id and save it then add its id to ids array to delete all 
354
+							 * relations who's id isn't in the ids array.
355
+							 */
356
+							case 'HasMany':
357
+								$foreignKeyName       = $model->$key()->getForeignKeyName();
358
+								$val->$foreignKeyName = $model->id;
359
+								$val->save();
360
+								$ids[] = $val->id;
361
+								break;
362
+
363
+							/**
364
+							 * If the relation is many to many then add it's id to the ids array to
365
+							 * attache these ids to the model.
366
+							 */
367
+							case 'BelongsToMany':
368
+								$val->save();
369
+								$ids[] = $val->id;
370
+								break;
371
+						}
372
+					}
373
+					switch (class_basename($model->$key())) 
374
+					{
375
+						/**
376
+						 * If the relation is one to many then delete all 
377
+						 * relations who's id isn't in the ids array.
378
+						 */
379
+						case 'HasMany':
380
+							$model->$key()->whereNotIn('id', $ids)->delete();
381
+							break;
382
+
383
+						/**
384
+						 * If the relation is many to many then 
385
+						 * detach the previous data and attach 
386
+						 * the ids array to the model.
387
+						 */
388
+						case 'BelongsToMany':
389
+							$model->$key()->detach();
390
+							$model->$key()->attach($ids);
391
+							break;
392
+					}
393
+				}
394
+				/**
395
+				 * If the relation isn't array.
396
+				 */
397
+				else
398
+				{
399
+					switch (class_basename($model->$key())) 
400
+					{
401
+						/**
402
+						 * If the relation is one to many or one to one.
403
+						 */
404
+						case 'HasOne':
405
+							$foreignKeyName         = $model->$key()->getForeignKeyName();
406
+							$value->$foreignKeyName = $model->id;
407
+							$value->save();
408
+							break;
409
+					}
410
+				}
411
+			}
412
+
413
+			$saveLog ? \Logging::saveLog(array_key_exists('id', $data) ? 'update' : 'create', class_basename($modelClass), $this->getModel(), $model->id, $model) : false;
414
+		});
415
+	}
416 416
     
417
-    /**
418
-     * Update record in the storage based on the given
419
-     * condition.
420
-     * 
421
-     * @param  var $value condition value
422
-     * @param  array $data
423
-     * @param  string $attribute condition column name
424
-     * @return void
425
-     */
426
-    public function update($value, array $data, $attribute = 'id', $saveLog = true)
427
-    {
428
-        if ($attribute == 'id') 
429
-        {
430
-            $model = $this->model->lockForUpdate()->find($value);
431
-            $model ? $model->update($data) : 0;
432
-            $saveLog ? \Logging::saveLog('update', class_basename($this->model), $this->getModel(), $value, $model) : false;
433
-        }
434
-        else
435
-        {
436
-            call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($data, $saveLog){
437
-                $model->update($data);
438
-                $saveLog ? \Logging::saveLog('update', class_basename($this->model), $this->getModel(), $model->id, $model) : false;
439
-            });
440
-        }
441
-    }
442
-
443
-    /**
444
-     * Delete record from the storage based on the given
445
-     * condition.
446
-     * 
447
-     * @param  var $value condition value
448
-     * @param  string $attribute condition column name
449
-     * @return void
450
-     */
451
-    public function delete($value, $attribute = 'id', $saveLog = true)
452
-    {
453
-        if ($attribute == 'id') 
454
-        {
455
-            \DB::transaction(function () use ($value, $attribute, &$result, $saveLog) {
456
-                $model = $this->model->lockForUpdate()->find($value);
457
-                if ( ! $model) 
458
-                {
459
-                    \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $value);
460
-                }
417
+	/**
418
+	 * Update record in the storage based on the given
419
+	 * condition.
420
+	 * 
421
+	 * @param  var $value condition value
422
+	 * @param  array $data
423
+	 * @param  string $attribute condition column name
424
+	 * @return void
425
+	 */
426
+	public function update($value, array $data, $attribute = 'id', $saveLog = true)
427
+	{
428
+		if ($attribute == 'id') 
429
+		{
430
+			$model = $this->model->lockForUpdate()->find($value);
431
+			$model ? $model->update($data) : 0;
432
+			$saveLog ? \Logging::saveLog('update', class_basename($this->model), $this->getModel(), $value, $model) : false;
433
+		}
434
+		else
435
+		{
436
+			call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($data, $saveLog){
437
+				$model->update($data);
438
+				$saveLog ? \Logging::saveLog('update', class_basename($this->model), $this->getModel(), $model->id, $model) : false;
439
+			});
440
+		}
441
+	}
442
+
443
+	/**
444
+	 * Delete record from the storage based on the given
445
+	 * condition.
446
+	 * 
447
+	 * @param  var $value condition value
448
+	 * @param  string $attribute condition column name
449
+	 * @return void
450
+	 */
451
+	public function delete($value, $attribute = 'id', $saveLog = true)
452
+	{
453
+		if ($attribute == 'id') 
454
+		{
455
+			\DB::transaction(function () use ($value, $attribute, &$result, $saveLog) {
456
+				$model = $this->model->lockForUpdate()->find($value);
457
+				if ( ! $model) 
458
+				{
459
+					\ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $value);
460
+				}
461 461
                 
462
-                $model->delete();
463
-                $saveLog ? \Logging::saveLog('delete', class_basename($this->model), $this->getModel(), $value, $model) : false;
464
-            });
465
-        }
466
-        else
467
-        {
468
-            \DB::transaction(function () use ($value, $attribute, &$result, $saveLog) {
469
-                call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($saveLog){
470
-                    $model->delete();
471
-                    $saveLog ? \Logging::saveLog('delete', class_basename($this->model), $this->getModel(), $model->id, $model) : false;
472
-                });
473
-            });   
474
-        }
475
-    }
462
+				$model->delete();
463
+				$saveLog ? \Logging::saveLog('delete', class_basename($this->model), $this->getModel(), $value, $model) : false;
464
+			});
465
+		}
466
+		else
467
+		{
468
+			\DB::transaction(function () use ($value, $attribute, &$result, $saveLog) {
469
+				call_user_func_array("{$this->getModel()}::where", array($attribute, '=', $value))->lockForUpdate()->get()->each(function ($model) use ($saveLog){
470
+					$model->delete();
471
+					$saveLog ? \Logging::saveLog('delete', class_basename($this->model), $this->getModel(), $model->id, $model) : false;
472
+				});
473
+			});   
474
+		}
475
+	}
476 476
     
477
-    /**
478
-     * Fetch records from the storage based on the given
479
-     * id.
480
-     * 
481
-     * @param  integer $id
482
-     * @param  array   $relations
483
-     * @param  array   $columns
484
-     * @return object
485
-     */
486
-    public function find($id, $relations = [], $columns = array('*'))
487
-    {
488
-        return call_user_func_array("{$this->getModel()}::with", array($relations))->find($id, $columns);
489
-    }
477
+	/**
478
+	 * Fetch records from the storage based on the given
479
+	 * id.
480
+	 * 
481
+	 * @param  integer $id
482
+	 * @param  array   $relations
483
+	 * @param  array   $columns
484
+	 * @return object
485
+	 */
486
+	public function find($id, $relations = [], $columns = array('*'))
487
+	{
488
+		return call_user_func_array("{$this->getModel()}::with", array($relations))->find($id, $columns);
489
+	}
490 490
     
491
-    /**
492
-     * Fetch records from the storage based on the given
493
-     * condition.
494
-     * 
495
-     * @param  array   $conditions array of conditions
496
-     * @param  array   $relations
497
-     * @param  string  $sortBy
498
-     * @param  boolean $desc
499
-     * @param  array   $columns
500
-     * @return collection
501
-     */
502
-    public function findBy($conditions, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*'))
503
-    {
504
-        $conditions = $this->constructConditions($conditions, $this->model);
505
-        $sort       = $desc ? 'desc' : 'asc';
506
-        return call_user_func_array("{$this->getModel()}::with",  array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->get($columns);
507
-    }
508
-
509
-    /**
510
-     * Fetch the first record from the storage based on the given
511
-     * condition.
512
-     *
513
-     * @param  array   $conditions array of conditions
514
-     * @param  array   $relations
515
-     * @param  array   $columns
516
-     * @return object
517
-     */
518
-    public function first($conditions, $relations = [], $columns = array('*'))
519
-    {
520
-        $conditions = $this->constructConditions($conditions, $this->model);
521
-        return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->first($columns);  
522
-    }
523
-
524
-    /**
525
-     * Return the deleted models in pages based on the given conditions.
526
-     * 
527
-     * @param  array   $conditions array of conditions
528
-     * @param  integer $perPage
529
-     * @param  string  $sortBy
530
-     * @param  boolean $desc
531
-     * @param  array   $columns
532
-     * @return collection
533
-     */
534
-    public function deleted($conditions, $perPage = 15, $sortBy = 'created_at', $desc = 1, $columns = array('*'))
535
-    {
536
-        unset($conditions['page']);
537
-        $conditions = $this->constructConditions($conditions, $this->model);
538
-        $sort       = $desc ? 'desc' : 'asc';
539
-        $model      = $this->model->onlyTrashed();
540
-
541
-        if (count($conditions['conditionValues']))
542
-        {
543
-            $model->whereRaw($conditions['conditionString'], $conditions['conditionValues']);
544
-        }
545
-
546
-        return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns);;
547
-    }
548
-
549
-    /**
550
-     * Restore the deleted model.
551
-     * 
552
-     * @param  integer $id
553
-     * @return void
554
-     */
555
-    public function restore($id)
556
-    {
557
-        $model = $this->model->onlyTrashed()->find($id);
558
-
559
-        if ( ! $model) 
560
-        {
561
-            \ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $id);
562
-        }
563
-
564
-        $model->restore();
565
-    }
566
-
567
-    /**
568
-     * Build the conditions recursively for the retrieving methods.
569
-     * @param  array $conditions
570
-     * @return array
571
-     */
572
-    protected function constructConditions($conditions, $model)
573
-    {   
574
-        $conditionString = '';
575
-        $conditionValues = [];
576
-        foreach ($conditions as $key => $value) 
577
-        {
578
-            if ($key == 'and') 
579
-            {
580
-                $conditions       = $this->constructConditions($value, $model);
581
-                $conditionString .= str_replace('{op}', 'and', $conditions['conditionString']) . ' {op} ';
582
-                $conditionValues  = array_merge($conditionValues, $conditions['conditionValues']);
583
-            }
584
-            else if ($key == 'or')
585
-            {
586
-                $conditions       = $this->constructConditions($value, $model);
587
-                $conditionString .= str_replace('{op}', 'or', $conditions['conditionString']) . ' {op} ';
588
-                $conditionValues  = array_merge($conditionValues, $conditions['conditionValues']);
589
-            }
590
-            else
591
-            {
592
-                if (is_array($value)) 
593
-                {
594
-                    $operator = $value['op'];
595
-                    if (strtolower($operator) == 'between') 
596
-                    {
597
-                        $value1 = $value['val1'];
598
-                        $value2 = $value['val2'];
599
-                    }
600
-                    else
601
-                    {
602
-                        $value = array_key_exists('val', $value) ? $value['val'] : '';
603
-                    }
604
-                }
605
-                else
606
-                {
607
-                    $operator = '=';
608
-                }
491
+	/**
492
+	 * Fetch records from the storage based on the given
493
+	 * condition.
494
+	 * 
495
+	 * @param  array   $conditions array of conditions
496
+	 * @param  array   $relations
497
+	 * @param  string  $sortBy
498
+	 * @param  boolean $desc
499
+	 * @param  array   $columns
500
+	 * @return collection
501
+	 */
502
+	public function findBy($conditions, $relations = [], $sortBy = 'created_at', $desc = 1, $columns = array('*'))
503
+	{
504
+		$conditions = $this->constructConditions($conditions, $this->model);
505
+		$sort       = $desc ? 'desc' : 'asc';
506
+		return call_user_func_array("{$this->getModel()}::with",  array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->orderBy($sortBy, $sort)->get($columns);
507
+	}
508
+
509
+	/**
510
+	 * Fetch the first record from the storage based on the given
511
+	 * condition.
512
+	 *
513
+	 * @param  array   $conditions array of conditions
514
+	 * @param  array   $relations
515
+	 * @param  array   $columns
516
+	 * @return object
517
+	 */
518
+	public function first($conditions, $relations = [], $columns = array('*'))
519
+	{
520
+		$conditions = $this->constructConditions($conditions, $this->model);
521
+		return call_user_func_array("{$this->getModel()}::with", array($relations))->whereRaw($conditions['conditionString'], $conditions['conditionValues'])->first($columns);  
522
+	}
523
+
524
+	/**
525
+	 * Return the deleted models in pages based on the given conditions.
526
+	 * 
527
+	 * @param  array   $conditions array of conditions
528
+	 * @param  integer $perPage
529
+	 * @param  string  $sortBy
530
+	 * @param  boolean $desc
531
+	 * @param  array   $columns
532
+	 * @return collection
533
+	 */
534
+	public function deleted($conditions, $perPage = 15, $sortBy = 'created_at', $desc = 1, $columns = array('*'))
535
+	{
536
+		unset($conditions['page']);
537
+		$conditions = $this->constructConditions($conditions, $this->model);
538
+		$sort       = $desc ? 'desc' : 'asc';
539
+		$model      = $this->model->onlyTrashed();
540
+
541
+		if (count($conditions['conditionValues']))
542
+		{
543
+			$model->whereRaw($conditions['conditionString'], $conditions['conditionValues']);
544
+		}
545
+
546
+		return $model->orderBy($sortBy, $sort)->paginate($perPage, $columns);;
547
+	}
548
+
549
+	/**
550
+	 * Restore the deleted model.
551
+	 * 
552
+	 * @param  integer $id
553
+	 * @return void
554
+	 */
555
+	public function restore($id)
556
+	{
557
+		$model = $this->model->onlyTrashed()->find($id);
558
+
559
+		if ( ! $model) 
560
+		{
561
+			\ErrorHandler::notFound(class_basename($this->model) . ' with id : ' . $id);
562
+		}
563
+
564
+		$model->restore();
565
+	}
566
+
567
+	/**
568
+	 * Build the conditions recursively for the retrieving methods.
569
+	 * @param  array $conditions
570
+	 * @return array
571
+	 */
572
+	protected function constructConditions($conditions, $model)
573
+	{   
574
+		$conditionString = '';
575
+		$conditionValues = [];
576
+		foreach ($conditions as $key => $value) 
577
+		{
578
+			if ($key == 'and') 
579
+			{
580
+				$conditions       = $this->constructConditions($value, $model);
581
+				$conditionString .= str_replace('{op}', 'and', $conditions['conditionString']) . ' {op} ';
582
+				$conditionValues  = array_merge($conditionValues, $conditions['conditionValues']);
583
+			}
584
+			else if ($key == 'or')
585
+			{
586
+				$conditions       = $this->constructConditions($value, $model);
587
+				$conditionString .= str_replace('{op}', 'or', $conditions['conditionString']) . ' {op} ';
588
+				$conditionValues  = array_merge($conditionValues, $conditions['conditionValues']);
589
+			}
590
+			else
591
+			{
592
+				if (is_array($value)) 
593
+				{
594
+					$operator = $value['op'];
595
+					if (strtolower($operator) == 'between') 
596
+					{
597
+						$value1 = $value['val1'];
598
+						$value2 = $value['val2'];
599
+					}
600
+					else
601
+					{
602
+						$value = array_key_exists('val', $value) ? $value['val'] : '';
603
+					}
604
+				}
605
+				else
606
+				{
607
+					$operator = '=';
608
+				}
609 609
                 
610
-                if (strtolower($operator) == 'between') 
611
-                {
612
-                    $conditionString  .= $key . ' >= ? and ';
613
-                    $conditionValues[] = $value1;
614
-
615
-                    $conditionString  .= $key . ' <= ? {op} ';
616
-                    $conditionValues[] = $value2;
617
-                }
618
-                elseif (strtolower($operator) == 'in') 
619
-                {
620
-                    $conditionValues  = array_merge($conditionValues, $value);
621
-                    $inBindingsString = rtrim(str_repeat('?,', count($value)), ',');
622
-                    $conditionString .= $key . ' in (' . rtrim($inBindingsString, ',') . ') {op} ';
623
-                }
624
-                elseif (strtolower($operator) == 'null') 
625
-                {
626
-                    $conditionString .= $key . ' is null {op} ';
627
-                }
628
-                elseif (strtolower($operator) == 'not null') 
629
-                {
630
-                    $conditionString .= $key . ' is not null {op} ';
631
-                }
632
-                elseif (strtolower($operator) == 'has') 
633
-                {
634
-                    $sql              = $model->withTrashed()->has($key)->toSql();
635
-                    $conditions       = $this->constructConditions($value, $model->first()->$key);
636
-                    $conditionString .= rtrim(substr($sql, strpos($sql, 'exists')), ')') . ' and ' . $conditions['conditionString'] . ') {op} ';
637
-                    $conditionValues  = array_merge($conditionValues, $conditions['conditionValues']);
638
-                }
639
-                else
640
-                {
641
-                    $conditionString  .= $key . ' ' . $operator . ' ? {op} ';
642
-                    $conditionValues[] = $value;
643
-                }
644
-            }
645
-        }
646
-        $conditionString = '(' . rtrim($conditionString, '{op} ') . ')';
647
-        return ['conditionString' => $conditionString, 'conditionValues' => $conditionValues];
648
-    }
649
-
650
-    /**
651
-     * Abstract method that return the necessary 
652
-     * information (full model namespace)
653
-     * needed to preform the previous actions.
654
-     * 
655
-     * @return string
656
-     */
657
-    abstract protected function getModel();
610
+				if (strtolower($operator) == 'between') 
611
+				{
612
+					$conditionString  .= $key . ' >= ? and ';
613
+					$conditionValues[] = $value1;
614
+
615
+					$conditionString  .= $key . ' <= ? {op} ';
616
+					$conditionValues[] = $value2;
617
+				}
618
+				elseif (strtolower($operator) == 'in') 
619
+				{
620
+					$conditionValues  = array_merge($conditionValues, $value);
621
+					$inBindingsString = rtrim(str_repeat('?,', count($value)), ',');
622
+					$conditionString .= $key . ' in (' . rtrim($inBindingsString, ',') . ') {op} ';
623
+				}
624
+				elseif (strtolower($operator) == 'null') 
625
+				{
626
+					$conditionString .= $key . ' is null {op} ';
627
+				}
628
+				elseif (strtolower($operator) == 'not null') 
629
+				{
630
+					$conditionString .= $key . ' is not null {op} ';
631
+				}
632
+				elseif (strtolower($operator) == 'has') 
633
+				{
634
+					$sql              = $model->withTrashed()->has($key)->toSql();
635
+					$conditions       = $this->constructConditions($value, $model->first()->$key);
636
+					$conditionString .= rtrim(substr($sql, strpos($sql, 'exists')), ')') . ' and ' . $conditions['conditionString'] . ') {op} ';
637
+					$conditionValues  = array_merge($conditionValues, $conditions['conditionValues']);
638
+				}
639
+				else
640
+				{
641
+					$conditionString  .= $key . ' ' . $operator . ' ? {op} ';
642
+					$conditionValues[] = $value;
643
+				}
644
+			}
645
+		}
646
+		$conditionString = '(' . rtrim($conditionString, '{op} ') . ')';
647
+		return ['conditionString' => $conditionString, 'conditionValues' => $conditionValues];
648
+	}
649
+
650
+	/**
651
+	 * Abstract method that return the necessary 
652
+	 * information (full model namespace)
653
+	 * needed to preform the previous actions.
654
+	 * 
655
+	 * @return string
656
+	 */
657
+	abstract protected function getModel();
658 658
 }
659 659
\ No newline at end of file
Please login to merge, or discard this patch.
src/Modules/V1/Core/Decorators/CachingDecorator.php 3 patches
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -2,92 +2,92 @@
 block discarded – undo
2 2
 
3 3
 class CachingDecorator
4 4
 {
5
-    /**
6
-     * The repo implementation.
7
-     * 
8
-     * @var string
9
-     */
10
-    protected $repo;
5
+	/**
6
+	 * The repo implementation.
7
+	 * 
8
+	 * @var string
9
+	 */
10
+	protected $repo;
11 11
 
12
-    /**
13
-     * The cache implementation.
14
-     * 
15
-     * @var object
16
-     */
17
-    protected $cache;
12
+	/**
13
+	 * The cache implementation.
14
+	 * 
15
+	 * @var object
16
+	 */
17
+	protected $cache;
18 18
 
19
-    /**
20
-     * The model implementation.
21
-     * 
22
-     * @var string
23
-     */
24
-    public $model;
19
+	/**
20
+	 * The model implementation.
21
+	 * 
22
+	 * @var string
23
+	 */
24
+	public $model;
25 25
 
26
-    /**
27
-     * The cacheConfig implementation.
28
-     * 
29
-     * @var array
30
-     */
31
-    public $cacheConfig;
26
+	/**
27
+	 * The cacheConfig implementation.
28
+	 * 
29
+	 * @var array
30
+	 */
31
+	public $cacheConfig;
32 32
     
33
-    /**
34
-     * Create new CachingDecorator instance.
35
-     */
36
-    public function __construct($repo, $cache)
37
-    {   
38
-        $this->repo  = $repo;
39
-        $this->cache = $cache;
40
-        $this->model = get_class($this->repo->model);
41
-    }
33
+	/**
34
+	 * Create new CachingDecorator instance.
35
+	 */
36
+	public function __construct($repo, $cache)
37
+	{   
38
+		$this->repo  = $repo;
39
+		$this->cache = $cache;
40
+		$this->model = get_class($this->repo->model);
41
+	}
42 42
 
43
-    /**
44
-     * Handle the cache mechanism for the called method
45
-     * based the configurations.
46
-     * 
47
-     * @param  string $name the called method name
48
-     * @param  array  $arguments the method arguments
49
-     * @return object
50
-     */
51
-    public function __call($name, $arguments)
52
-    {
53
-        $this->setCacheConfig($name);
43
+	/**
44
+	 * Handle the cache mechanism for the called method
45
+	 * based the configurations.
46
+	 * 
47
+	 * @param  string $name the called method name
48
+	 * @param  array  $arguments the method arguments
49
+	 * @return object
50
+	 */
51
+	public function __call($name, $arguments)
52
+	{
53
+		$this->setCacheConfig($name);
54 54
 
55
-        if ($this->cacheConfig && $this->cacheConfig == 'cache') 
56
-        {
57
-            $page     = \Request::get('page') ?? '1';
58
-            $cacheKey = $name . $page . serialize($arguments);
59
-            return $this->cache->tags([$this->model])->rememberForever($cacheKey, function() use ($arguments, $name) {
60
-                return call_user_func_array([$this->repo, $name], $arguments);
61
-            });
62
-        }
63
-        else if ($this->cacheConfig)
64
-        {
65
-            $this->cache->tags($this->cacheConfig)->flush();
66
-            return call_user_func_array([$this->repo, $name], $arguments);
67
-        }
55
+		if ($this->cacheConfig && $this->cacheConfig == 'cache') 
56
+		{
57
+			$page     = \Request::get('page') ?? '1';
58
+			$cacheKey = $name . $page . serialize($arguments);
59
+			return $this->cache->tags([$this->model])->rememberForever($cacheKey, function() use ($arguments, $name) {
60
+				return call_user_func_array([$this->repo, $name], $arguments);
61
+			});
62
+		}
63
+		else if ($this->cacheConfig)
64
+		{
65
+			$this->cache->tags($this->cacheConfig)->flush();
66
+			return call_user_func_array([$this->repo, $name], $arguments);
67
+		}
68 68
 
69
-        return call_user_func_array([$this->repo, $name], $arguments);
70
-    }
69
+		return call_user_func_array([$this->repo, $name], $arguments);
70
+	}
71 71
 
72
-    /**
73
-     * Set cache config based on the called method.
74
-     * 
75
-     * @param  string $name
76
-     * @return void
77
-     */
78
-    private function setCacheConfig($name)
79
-    {
80
-        $config            = \CoreConfig::getConfig();
81
-        $cacheConfig       = array_key_exists($this->model, $config['cacheConfig']) ? $config['cacheConfig'][$this->model] : false;
82
-        $this->cacheConfig = false;
72
+	/**
73
+	 * Set cache config based on the called method.
74
+	 * 
75
+	 * @param  string $name
76
+	 * @return void
77
+	 */
78
+	private function setCacheConfig($name)
79
+	{
80
+		$config            = \CoreConfig::getConfig();
81
+		$cacheConfig       = array_key_exists($this->model, $config['cacheConfig']) ? $config['cacheConfig'][$this->model] : false;
82
+		$this->cacheConfig = false;
83 83
 
84
-        if (in_array($cacheConfig['cache'], $name))
85
-        {
86
-            $this->cacheConfig = 'cache';
87
-        }
88
-        else if (in_array($cacheConfig['clear'], $name))
89
-        {
90
-            $this->cacheConfig = $cacheConfig['clear'][$name];
91
-        }
92
-    }
84
+		if (in_array($cacheConfig['cache'], $name))
85
+		{
86
+			$this->cacheConfig = 'cache';
87
+		}
88
+		else if (in_array($cacheConfig['clear'], $name))
89
+		{
90
+			$this->cacheConfig = $cacheConfig['clear'][$name];
91
+		}
92
+	}
93 93
 }
94 94
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         if ($this->cacheConfig && $this->cacheConfig == 'cache') 
56 56
         {
57 57
             $page     = \Request::get('page') ?? '1';
58
-            $cacheKey = $name . $page . serialize($arguments);
58
+            $cacheKey = $name.$page.serialize($arguments);
59 59
             return $this->cache->tags([$this->model])->rememberForever($cacheKey, function() use ($arguments, $name) {
60 60
                 return call_user_func_array([$this->repo, $name], $arguments);
61 61
             });
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,8 +59,7 @@  discard block
 block discarded – undo
59 59
             return $this->cache->tags([$this->model])->rememberForever($cacheKey, function() use ($arguments, $name) {
60 60
                 return call_user_func_array([$this->repo, $name], $arguments);
61 61
             });
62
-        }
63
-        else if ($this->cacheConfig)
62
+        } else if ($this->cacheConfig)
64 63
         {
65 64
             $this->cache->tags($this->cacheConfig)->flush();
66 65
             return call_user_func_array([$this->repo, $name], $arguments);
@@ -84,8 +83,7 @@  discard block
 block discarded – undo
84 83
         if (in_array($cacheConfig['cache'], $name))
85 84
         {
86 85
             $this->cacheConfig = 'cache';
87
-        }
88
-        else if (in_array($cacheConfig['clear'], $name))
86
+        } else if (in_array($cacheConfig['clear'], $name))
89 87
         {
90 88
             $this->cacheConfig = $cacheConfig['clear'][$name];
91 89
         }
Please login to merge, or discard this patch.
src/Modules/V1/Core/Http/Controllers/BaseApiController.php 1 patch
Indentation   +267 added lines, -267 removed lines patch added patch discarded remove patch
@@ -6,297 +6,297 @@
 block discarded – undo
6 6
 
7 7
 class BaseApiController extends Controller
8 8
 {
9
-    /**
10
-     * The model implementation.
11
-     * 
12
-     * @var string
13
-     */
14
-    protected $model;
9
+	/**
10
+	 * The model implementation.
11
+	 * 
12
+	 * @var string
13
+	 */
14
+	protected $model;
15 15
 
16
-    /**
17
-     * The config implementation.
18
-     * 
19
-     * @var array
20
-     */
21
-    protected $config;
16
+	/**
17
+	 * The config implementation.
18
+	 * 
19
+	 * @var array
20
+	 */
21
+	protected $config;
22 22
 
23
-    /**
24
-     * The relations implementation.
25
-     * 
26
-     * @var array
27
-     */
28
-    protected $relations;
23
+	/**
24
+	 * The relations implementation.
25
+	 * 
26
+	 * @var array
27
+	 */
28
+	protected $relations;
29 29
 
30
-    public function __construct()
31
-    {        
32
-        $this->config              = \CoreConfig::getConfig();
33
-        $this->model               = property_exists($this, 'model') ? $this->model : false;
34
-        $this->validationRules     = property_exists($this, 'validationRules') ? $this->validationRules : false;
35
-        $this->skipPermissionCheck = property_exists($this, 'skipPermissionCheck') ? $this->skipPermissionCheck : [];
36
-        $this->skipLoginCheck      = property_exists($this, 'skipLoginCheck') ? $this->skipLoginCheck : [];
37
-        $route                     = explode('@',\Route::currentRouteAction())[1];
30
+	public function __construct()
31
+	{        
32
+		$this->config              = \CoreConfig::getConfig();
33
+		$this->model               = property_exists($this, 'model') ? $this->model : false;
34
+		$this->validationRules     = property_exists($this, 'validationRules') ? $this->validationRules : false;
35
+		$this->skipPermissionCheck = property_exists($this, 'skipPermissionCheck') ? $this->skipPermissionCheck : [];
36
+		$this->skipLoginCheck      = property_exists($this, 'skipLoginCheck') ? $this->skipLoginCheck : [];
37
+		$route                     = explode('@',\Route::currentRouteAction())[1];
38 38
 
39
-        $this->checkPermission($route);
40
-        $this->setRelations($route);
41
-        $this->setSessions();
42
-    }
39
+		$this->checkPermission($route);
40
+		$this->setRelations($route);
41
+		$this->setSessions();
42
+	}
43 43
 
44
-    /**
45
-     * Fetch all records with relations from model repository.
46
-     * 
47
-     * @param  string  $sortBy
48
-     * @param  boolean $desc
49
-     * @return \Illuminate\Http\Response
50
-     */
51
-    public function index($sortBy = 'created_at', $desc = 1) 
52
-    {
53
-        if ($this->model)
54
-        {
55
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->all($this->relations, $sortBy, $desc), 200);
56
-        }
57
-    }
44
+	/**
45
+	 * Fetch all records with relations from model repository.
46
+	 * 
47
+	 * @param  string  $sortBy
48
+	 * @param  boolean $desc
49
+	 * @return \Illuminate\Http\Response
50
+	 */
51
+	public function index($sortBy = 'created_at', $desc = 1) 
52
+	{
53
+		if ($this->model)
54
+		{
55
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->all($this->relations, $sortBy, $desc), 200);
56
+		}
57
+	}
58 58
 
59
-    /**
60
-     * Fetch the single object with relations from model repository.
61
-     * 
62
-     * @param  integer $id
63
-     * @return \Illuminate\Http\Response
64
-     */
65
-    public function find($id) 
66
-    {
67
-        if ($this->model) 
68
-        {
69
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->find($id, $this->relations), 200);
70
-        }
71
-    }
59
+	/**
60
+	 * Fetch the single object with relations from model repository.
61
+	 * 
62
+	 * @param  integer $id
63
+	 * @return \Illuminate\Http\Response
64
+	 */
65
+	public function find($id) 
66
+	{
67
+		if ($this->model) 
68
+		{
69
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->find($id, $this->relations), 200);
70
+		}
71
+	}
72 72
 
73
-    /**
74
-     * Paginate all records with relations from model repository
75
-     * that matche the given query.
76
-     * 
77
-     * @param  string  $query
78
-     * @param  integer $perPage
79
-     * @param  string  $sortBy
80
-     * @param  boolean $desc
81
-     * @return \Illuminate\Http\Response
82
-     */
83
-    public function search($query = '', $perPage = 15, $sortBy = 'created_at', $desc = 1) 
84
-    {
85
-        if ($this->model) 
86
-        {
87
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->search($query, $perPage, $this->relations, $sortBy, $desc), 200);
88
-        }
89
-    }
73
+	/**
74
+	 * Paginate all records with relations from model repository
75
+	 * that matche the given query.
76
+	 * 
77
+	 * @param  string  $query
78
+	 * @param  integer $perPage
79
+	 * @param  string  $sortBy
80
+	 * @param  boolean $desc
81
+	 * @return \Illuminate\Http\Response
82
+	 */
83
+	public function search($query = '', $perPage = 15, $sortBy = 'created_at', $desc = 1) 
84
+	{
85
+		if ($this->model) 
86
+		{
87
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->search($query, $perPage, $this->relations, $sortBy, $desc), 200);
88
+		}
89
+	}
90 90
 
91
-    /**
92
-     * Fetch records from the storage based on the given
93
-     * condition.
94
-     * 
95
-     * @param  \Illuminate\Http\Request  $request
96
-     * @param  string  $sortBy
97
-     * @param  boolean $desc
98
-     * @return \Illuminate\Http\Response
99
-     */
100
-    public function findby(Request $request, $sortBy = 'created_at', $desc = 1) 
101
-    {
102
-        if ($this->model) 
103
-        {
104
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->findBy($request->all(), $this->relations, $sortBy, $desc), 200);
105
-        }
106
-    }
91
+	/**
92
+	 * Fetch records from the storage based on the given
93
+	 * condition.
94
+	 * 
95
+	 * @param  \Illuminate\Http\Request  $request
96
+	 * @param  string  $sortBy
97
+	 * @param  boolean $desc
98
+	 * @return \Illuminate\Http\Response
99
+	 */
100
+	public function findby(Request $request, $sortBy = 'created_at', $desc = 1) 
101
+	{
102
+		if ($this->model) 
103
+		{
104
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->findBy($request->all(), $this->relations, $sortBy, $desc), 200);
105
+		}
106
+	}
107 107
 
108
-    /**
109
-     * Fetch the first record from the storage based on the given
110
-     * condition.
111
-     * 
112
-     * @param  \Illuminate\Http\Request  $request
113
-     * @return \Illuminate\Http\Response
114
-     */
115
-    public function first(Request $request) 
116
-    {
117
-        if ($this->model) 
118
-        {
119
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->first($request->all(), $this->relations), 200);
120
-        }
121
-    }
108
+	/**
109
+	 * Fetch the first record from the storage based on the given
110
+	 * condition.
111
+	 * 
112
+	 * @param  \Illuminate\Http\Request  $request
113
+	 * @return \Illuminate\Http\Response
114
+	 */
115
+	public function first(Request $request) 
116
+	{
117
+		if ($this->model) 
118
+		{
119
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->first($request->all(), $this->relations), 200);
120
+		}
121
+	}
122 122
 
123
-    /**
124
-     * Paginate all records with relations from model repository.
125
-     * 
126
-     * @param  integer $perPage
127
-     * @param  string  $sortBy
128
-     * @param  boolean $desc
129
-     * @return \Illuminate\Http\Response
130
-     */
131
-    public function paginate($perPage = 15, $sortBy = 'created_at', $desc = 1) 
132
-    {
133
-        if ($this->model) 
134
-        {
135
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->paginate($perPage, $this->relations, $sortBy, $desc), 200);
136
-        }
137
-    }
123
+	/**
124
+	 * Paginate all records with relations from model repository.
125
+	 * 
126
+	 * @param  integer $perPage
127
+	 * @param  string  $sortBy
128
+	 * @param  boolean $desc
129
+	 * @return \Illuminate\Http\Response
130
+	 */
131
+	public function paginate($perPage = 15, $sortBy = 'created_at', $desc = 1) 
132
+	{
133
+		if ($this->model) 
134
+		{
135
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->paginate($perPage, $this->relations, $sortBy, $desc), 200);
136
+		}
137
+	}
138 138
 
139
-    /**
140
-     * Fetch all records with relations based on
141
-     * the given condition from storage in pages.
142
-     * 
143
-     * @param  \Illuminate\Http\Request  $request
144
-     * @param  integer $perPage
145
-     * @param  string  $sortBy
146
-     * @param  boolean $desc
147
-     * @return \Illuminate\Http\Response
148
-     */
149
-    public function paginateby(Request $request, $perPage = 15, $sortBy = 'created_at', $desc = 1) 
150
-    {
151
-        if ($this->model) 
152
-        {
153
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->paginateBy($request->all(), $perPage, $this->relations, $sortBy, $desc), 200);
154
-        }
155
-    }
139
+	/**
140
+	 * Fetch all records with relations based on
141
+	 * the given condition from storage in pages.
142
+	 * 
143
+	 * @param  \Illuminate\Http\Request  $request
144
+	 * @param  integer $perPage
145
+	 * @param  string  $sortBy
146
+	 * @param  boolean $desc
147
+	 * @return \Illuminate\Http\Response
148
+	 */
149
+	public function paginateby(Request $request, $perPage = 15, $sortBy = 'created_at', $desc = 1) 
150
+	{
151
+		if ($this->model) 
152
+		{
153
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->paginateBy($request->all(), $perPage, $this->relations, $sortBy, $desc), 200);
154
+		}
155
+	}
156 156
 
157
-    /**
158
-     * Save the given model to repository.
159
-     * 
160
-     * @param  \Illuminate\Http\Request  $request
161
-     * @return \Illuminate\Http\Response
162
-     */
163
-    public function save(Request $request) 
164
-    {
165
-        foreach ($this->validationRules as &$rule) 
166
-        {
167
-            if (strpos($rule, 'exists') && ! strpos($rule, 'deleted_at,NULL')) 
168
-            {
169
-                $rule .= ',deleted_at,NULL';
170
-            }
157
+	/**
158
+	 * Save the given model to repository.
159
+	 * 
160
+	 * @param  \Illuminate\Http\Request  $request
161
+	 * @return \Illuminate\Http\Response
162
+	 */
163
+	public function save(Request $request) 
164
+	{
165
+		foreach ($this->validationRules as &$rule) 
166
+		{
167
+			if (strpos($rule, 'exists') && ! strpos($rule, 'deleted_at,NULL')) 
168
+			{
169
+				$rule .= ',deleted_at,NULL';
170
+			}
171 171
 
172
-            if ($request->has('id')) 
173
-            {
174
-                $rule = str_replace('{id}', $request->get('id'), $rule);
175
-            }
176
-            else
177
-            {
178
-                $rule = str_replace(',{id}', '', $rule);
179
-            }
180
-        }
172
+			if ($request->has('id')) 
173
+			{
174
+				$rule = str_replace('{id}', $request->get('id'), $rule);
175
+			}
176
+			else
177
+			{
178
+				$rule = str_replace(',{id}', '', $rule);
179
+			}
180
+		}
181 181
         
182
-        $this->validate($request, $this->validationRules);
182
+		$this->validate($request, $this->validationRules);
183 183
 
184
-        if ($this->model) 
185
-        {
186
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->save($request->all()), 200);
187
-        }
188
-    }
184
+		if ($this->model) 
185
+		{
186
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->save($request->all()), 200);
187
+		}
188
+	}
189 189
 
190
-    /**
191
-     * Delete by the given id from model repository.
192
-     * 
193
-     * @param  integer  $id
194
-     * @return \Illuminate\Http\Response
195
-     */
196
-    public function delete($id) 
197
-    {
198
-        if ($this->model) 
199
-        {
200
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->delete($id), 200);
201
-        }
202
-    }
190
+	/**
191
+	 * Delete by the given id from model repository.
192
+	 * 
193
+	 * @param  integer  $id
194
+	 * @return \Illuminate\Http\Response
195
+	 */
196
+	public function delete($id) 
197
+	{
198
+		if ($this->model) 
199
+		{
200
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->delete($id), 200);
201
+		}
202
+	}
203 203
 
204
-    /**
205
-     * Return the deleted models in pages based on the given conditions.
206
-     *
207
-     * @param  \Illuminate\Http\Request  $request
208
-     * @param  integer $perPage
209
-     * @param  string  $sortBy
210
-     * @param  boolean $desc
211
-     * @return \Illuminate\Http\Response
212
-     */
213
-    public function deleted(Request $request, $perPage = 15, $sortBy = 'created_at', $desc = 1) 
214
-    {
215
-        return \Response::json(call_user_func_array("\Core::{$this->model}", [])->deleted($request->all(), $perPage, $sortBy, $desc), 200);
216
-    }
204
+	/**
205
+	 * Return the deleted models in pages based on the given conditions.
206
+	 *
207
+	 * @param  \Illuminate\Http\Request  $request
208
+	 * @param  integer $perPage
209
+	 * @param  string  $sortBy
210
+	 * @param  boolean $desc
211
+	 * @return \Illuminate\Http\Response
212
+	 */
213
+	public function deleted(Request $request, $perPage = 15, $sortBy = 'created_at', $desc = 1) 
214
+	{
215
+		return \Response::json(call_user_func_array("\Core::{$this->model}", [])->deleted($request->all(), $perPage, $sortBy, $desc), 200);
216
+	}
217 217
 
218
-    /**
219
-     * Restore the deleted model.
220
-     * 
221
-     * @param  integer  $id
222
-     * @return \Illuminate\Http\Response
223
-     */
224
-    public function restore($id) 
225
-    {
226
-        if ($this->model) 
227
-        {
228
-            return \Response::json(call_user_func_array("\Core::{$this->model}", [])->restore($id), 200);
229
-        }
230
-    }
218
+	/**
219
+	 * Restore the deleted model.
220
+	 * 
221
+	 * @param  integer  $id
222
+	 * @return \Illuminate\Http\Response
223
+	 */
224
+	public function restore($id) 
225
+	{
226
+		if ($this->model) 
227
+		{
228
+			return \Response::json(call_user_func_array("\Core::{$this->model}", [])->restore($id), 200);
229
+		}
230
+	}
231 231
 
232
-    /**
233
-     * Check if the logged in user can do the given permission.
234
-     * 
235
-     * @param  string $permission
236
-     * @return void
237
-     */
238
-    private function checkPermission($permission)
239
-    {
240
-        $permission = $permission !== 'index' ? $permission : 'list';
241
-        if ( ! in_array($permission, $this->skipLoginCheck)) 
242
-        {
243
-            $user = \Core::users()->find(\JWTAuth::parseToken()->authenticate()->id);
244
-            if ($user->blocked)
245
-            {
246
-                \ErrorHandler::userIsBlocked();
247
-            }
232
+	/**
233
+	 * Check if the logged in user can do the given permission.
234
+	 * 
235
+	 * @param  string $permission
236
+	 * @return void
237
+	 */
238
+	private function checkPermission($permission)
239
+	{
240
+		$permission = $permission !== 'index' ? $permission : 'list';
241
+		if ( ! in_array($permission, $this->skipLoginCheck)) 
242
+		{
243
+			$user = \Core::users()->find(\JWTAuth::parseToken()->authenticate()->id);
244
+			if ($user->blocked)
245
+			{
246
+				\ErrorHandler::userIsBlocked();
247
+			}
248 248
             
249
-            if ( ! in_array($permission, $this->skipPermissionCheck) && ! \Core::users()->can($permission, $this->model))
250
-            {
251
-                \ErrorHandler::noPermissions();
252
-            }
253
-        }
254
-    }
249
+			if ( ! in_array($permission, $this->skipPermissionCheck) && ! \Core::users()->can($permission, $this->model))
250
+			{
251
+				\ErrorHandler::noPermissions();
252
+			}
253
+		}
254
+	}
255 255
 
256
-    /**
257
-     * Set sessions based on the given headers in the request.
258
-     * 
259
-     * @return void
260
-     */
261
-    private function setSessions()
262
-    {
263
-        \Session::put('timeZoneDiff', \Request::header('time-zone-diff') ?: 0);
256
+	/**
257
+	 * Set sessions based on the given headers in the request.
258
+	 * 
259
+	 * @return void
260
+	 */
261
+	private function setSessions()
262
+	{
263
+		\Session::put('timeZoneDiff', \Request::header('time-zone-diff') ?: 0);
264 264
 
265
-        $locale = \Request::header('locale');
266
-        switch ($locale) 
267
-        {
268
-            case 'en':
269
-            \App::setLocale('en');
270
-            \Session::put('locale', 'en');
271
-            break;
265
+		$locale = \Request::header('locale');
266
+		switch ($locale) 
267
+		{
268
+			case 'en':
269
+			\App::setLocale('en');
270
+			\Session::put('locale', 'en');
271
+			break;
272 272
 
273
-            case 'ar':
274
-            \App::setLocale('ar');
275
-            \Session::put('locale', 'ar');
276
-            break;
273
+			case 'ar':
274
+			\App::setLocale('ar');
275
+			\Session::put('locale', 'ar');
276
+			break;
277 277
 
278
-            case 'all':
279
-            \App::setLocale('en');
280
-            \Session::put('locale', 'all');
281
-            break;
278
+			case 'all':
279
+			\App::setLocale('en');
280
+			\Session::put('locale', 'all');
281
+			break;
282 282
 
283
-            default:
284
-            \App::setLocale('en');
285
-            \Session::put('locale', 'en');
286
-            break;
287
-        }
288
-    }
283
+			default:
284
+			\App::setLocale('en');
285
+			\Session::put('locale', 'en');
286
+			break;
287
+		}
288
+	}
289 289
 
290
-    /**
291
-     * Set relation based on the called api.
292
-     * 
293
-     * @param  string $route
294
-     * @return void
295
-     */
296
-    private function setRelations($route)
297
-    {
298
-        $route           = $route !== 'index' ? $route : 'list';
299
-        $relations       = array_key_exists($this->model, $this->config['relations']) ? $this->config['relations'][$this->model] : false;
300
-        $this->relations = $relations && $relations[$route] ? $relations[$route] : [];
301
-    }
290
+	/**
291
+	 * Set relation based on the called api.
292
+	 * 
293
+	 * @param  string $route
294
+	 * @return void
295
+	 */
296
+	private function setRelations($route)
297
+	{
298
+		$route           = $route !== 'index' ? $route : 'list';
299
+		$relations       = array_key_exists($this->model, $this->config['relations']) ? $this->config['relations'][$this->model] : false;
300
+		$this->relations = $relations && $relations[$route] ? $relations[$route] : [];
301
+	}
302 302
 }
Please login to merge, or discard this patch.