@@ -7,33 +7,33 @@ |
||
7 | 7 | |
8 | 8 | class ReportsController extends BaseApiController |
9 | 9 | { |
10 | - /** |
|
11 | - * The name of the model that is used by the base api controller |
|
12 | - * to preform actions like (add, edit ... etc). |
|
13 | - * @var string |
|
14 | - */ |
|
15 | - protected $model = 'reports'; |
|
10 | + /** |
|
11 | + * The name of the model that is used by the base api controller |
|
12 | + * to preform actions like (add, edit ... etc). |
|
13 | + * @var string |
|
14 | + */ |
|
15 | + protected $model = 'reports'; |
|
16 | 16 | |
17 | - /** |
|
18 | - * List of all route actions that the base api controller |
|
19 | - * will skip permissions check for them. |
|
20 | - * @var array |
|
21 | - */ |
|
22 | - protected $skipPermissionCheck = ['getReport']; |
|
17 | + /** |
|
18 | + * List of all route actions that the base api controller |
|
19 | + * will skip permissions check for them. |
|
20 | + * @var array |
|
21 | + */ |
|
22 | + protected $skipPermissionCheck = ['getReport']; |
|
23 | 23 | |
24 | - /** |
|
25 | - * Render the given report name with the given conditions. |
|
26 | - * |
|
27 | - * @param \Illuminate\Http\Request $request |
|
28 | - * @param string $reportName Name of the requested report |
|
29 | - * @param integer $perPage Number of rows per page default all data. |
|
30 | - * @return \Illuminate\Http\Response |
|
31 | - */ |
|
32 | - public function getReport(Request $request, $reportName, $perPage = 0) |
|
33 | - { |
|
34 | - if ($this->model) |
|
35 | - { |
|
36 | - return \Response::json($this->repo->getReport($reportName, $request->all(), $perPage), 200); |
|
37 | - } |
|
38 | - } |
|
24 | + /** |
|
25 | + * Render the given report name with the given conditions. |
|
26 | + * |
|
27 | + * @param \Illuminate\Http\Request $request |
|
28 | + * @param string $reportName Name of the requested report |
|
29 | + * @param integer $perPage Number of rows per page default all data. |
|
30 | + * @return \Illuminate\Http\Response |
|
31 | + */ |
|
32 | + public function getReport(Request $request, $reportName, $perPage = 0) |
|
33 | + { |
|
34 | + if ($this->model) |
|
35 | + { |
|
36 | + return \Response::json($this->repo->getReport($reportName, $request->all(), $perPage), 200); |
|
37 | + } |
|
38 | + } |
|
39 | 39 | } |
@@ -5,48 +5,48 @@ |
||
5 | 5 | |
6 | 6 | class PushNotificationDevice extends Model{ |
7 | 7 | |
8 | - use SoftDeletes; |
|
9 | - protected $table = 'push_notifications_devices'; |
|
10 | - protected $dates = ['created_at', 'updated_at', 'deleted_at']; |
|
11 | - protected $hidden = ['deleted_at', 'access_token']; |
|
12 | - protected $guarded = ['id']; |
|
13 | - protected $fillable = ['device_token', 'user_id', 'access_token']; |
|
14 | - public $searchable = ['device_token']; |
|
15 | - |
|
16 | - public function getCreatedAtAttribute($value) |
|
17 | - { |
|
18 | - return \Carbon\Carbon::parse($value)->addHours(\Session::get('timeZoneDiff'))->toDateTimeString(); |
|
19 | - } |
|
20 | - |
|
21 | - public function getUpdatedAtAttribute($value) |
|
22 | - { |
|
23 | - return \Carbon\Carbon::parse($value)->addHours(\Session::get('timeZoneDiff'))->toDateTimeString(); |
|
24 | - } |
|
25 | - |
|
26 | - public function getDeletedAtAttribute($value) |
|
27 | - { |
|
28 | - return \Carbon\Carbon::parse($value)->addHours(\Session::get('timeZoneDiff'))->toDateTimeString(); |
|
29 | - } |
|
8 | + use SoftDeletes; |
|
9 | + protected $table = 'push_notifications_devices'; |
|
10 | + protected $dates = ['created_at', 'updated_at', 'deleted_at']; |
|
11 | + protected $hidden = ['deleted_at', 'access_token']; |
|
12 | + protected $guarded = ['id']; |
|
13 | + protected $fillable = ['device_token', 'user_id', 'access_token']; |
|
14 | + public $searchable = ['device_token']; |
|
15 | + |
|
16 | + public function getCreatedAtAttribute($value) |
|
17 | + { |
|
18 | + return \Carbon\Carbon::parse($value)->addHours(\Session::get('timeZoneDiff'))->toDateTimeString(); |
|
19 | + } |
|
20 | + |
|
21 | + public function getUpdatedAtAttribute($value) |
|
22 | + { |
|
23 | + return \Carbon\Carbon::parse($value)->addHours(\Session::get('timeZoneDiff'))->toDateTimeString(); |
|
24 | + } |
|
25 | + |
|
26 | + public function getDeletedAtAttribute($value) |
|
27 | + { |
|
28 | + return \Carbon\Carbon::parse($value)->addHours(\Session::get('timeZoneDiff'))->toDateTimeString(); |
|
29 | + } |
|
30 | 30 | |
31 | - public function user() |
|
32 | - { |
|
33 | - return $this->belongsTo('App\Modules\V1\Acl\AclUser'); |
|
34 | - } |
|
35 | - |
|
36 | - /** |
|
37 | - * Encrypt the access_token attribute before |
|
38 | - * saving it in the storage. |
|
39 | - * |
|
40 | - * @param string $value |
|
41 | - */ |
|
42 | - public function setLoginTokenAttribute($value) |
|
43 | - { |
|
44 | - $this->attributes['access_token'] = encrypt($value); |
|
45 | - } |
|
46 | - |
|
47 | - public static function boot() |
|
48 | - { |
|
49 | - parent::boot(); |
|
50 | - parent::observe(\App::make('App\Modules\V1\Notifications\ModelObservers\PushNotificationDeviceObserver')); |
|
51 | - } |
|
31 | + public function user() |
|
32 | + { |
|
33 | + return $this->belongsTo('App\Modules\V1\Acl\AclUser'); |
|
34 | + } |
|
35 | + |
|
36 | + /** |
|
37 | + * Encrypt the access_token attribute before |
|
38 | + * saving it in the storage. |
|
39 | + * |
|
40 | + * @param string $value |
|
41 | + */ |
|
42 | + public function setLoginTokenAttribute($value) |
|
43 | + { |
|
44 | + $this->attributes['access_token'] = encrypt($value); |
|
45 | + } |
|
46 | + |
|
47 | + public static function boot() |
|
48 | + { |
|
49 | + parent::boot(); |
|
50 | + parent::observe(\App::make('App\Modules\V1\Notifications\ModelObservers\PushNotificationDeviceObserver')); |
|
51 | + } |
|
52 | 52 | } |
@@ -7,42 +7,42 @@ |
||
7 | 7 | |
8 | 8 | class PushNotificationsDevicesController extends BaseApiController |
9 | 9 | { |
10 | - /** |
|
11 | - * The name of the model that is used by the base api controller |
|
12 | - * to preform actions like (add, edit ... etc). |
|
13 | - * @var string |
|
14 | - */ |
|
15 | - protected $model = 'pushNotificationDevices'; |
|
10 | + /** |
|
11 | + * The name of the model that is used by the base api controller |
|
12 | + * to preform actions like (add, edit ... etc). |
|
13 | + * @var string |
|
14 | + */ |
|
15 | + protected $model = 'pushNotificationDevices'; |
|
16 | 16 | |
17 | - /** |
|
18 | - * List of all route actions that the base api controller |
|
19 | - * will skip permissions check for them. |
|
20 | - * @var array |
|
21 | - */ |
|
22 | - protected $skipPermissionCheck = ['registerDevice']; |
|
17 | + /** |
|
18 | + * List of all route actions that the base api controller |
|
19 | + * will skip permissions check for them. |
|
20 | + * @var array |
|
21 | + */ |
|
22 | + protected $skipPermissionCheck = ['registerDevice']; |
|
23 | 23 | |
24 | - /** |
|
25 | - * The validations rules used by the base api controller |
|
26 | - * to check before add. |
|
27 | - * @var array |
|
28 | - */ |
|
29 | - protected $validationRules = [ |
|
30 | - 'device_token' => 'required|string|max:255', |
|
31 | - 'user_id' => 'required|exists:users,id' |
|
32 | - ]; |
|
24 | + /** |
|
25 | + * The validations rules used by the base api controller |
|
26 | + * to check before add. |
|
27 | + * @var array |
|
28 | + */ |
|
29 | + protected $validationRules = [ |
|
30 | + 'device_token' => 'required|string|max:255', |
|
31 | + 'user_id' => 'required|exists:users,id' |
|
32 | + ]; |
|
33 | 33 | |
34 | - /** |
|
35 | - * Register the given device to the logged in user. |
|
36 | - * |
|
37 | - * @param \Illuminate\Http\Request $request |
|
38 | - * @return \Illuminate\Http\Response |
|
39 | - */ |
|
40 | - public function registerDevice(Request $request) |
|
41 | - { |
|
42 | - $this->validate($request, [ |
|
43 | - 'device_token' => 'required|string|max:255' |
|
44 | - ]); |
|
34 | + /** |
|
35 | + * Register the given device to the logged in user. |
|
36 | + * |
|
37 | + * @param \Illuminate\Http\Request $request |
|
38 | + * @return \Illuminate\Http\Response |
|
39 | + */ |
|
40 | + public function registerDevice(Request $request) |
|
41 | + { |
|
42 | + $this->validate($request, [ |
|
43 | + 'device_token' => 'required|string|max:255' |
|
44 | + ]); |
|
45 | 45 | |
46 | - return \Response::json($this->repo->registerDevice($request->all()), 200); |
|
47 | - } |
|
46 | + return \Response::json($this->repo->registerDevice($request->all()), 200); |
|
47 | + } |
|
48 | 48 | } |
@@ -4,73 +4,73 @@ |
||
4 | 4 | |
5 | 5 | class NotificationRepository extends AbstractRepository |
6 | 6 | { |
7 | - /** |
|
8 | - * Return the model full namespace. |
|
9 | - * |
|
10 | - * @return string |
|
11 | - */ |
|
12 | - protected function getModel() |
|
13 | - { |
|
14 | - return 'App\Modules\V1\Notifications\Notification'; |
|
15 | - } |
|
7 | + /** |
|
8 | + * Return the model full namespace. |
|
9 | + * |
|
10 | + * @return string |
|
11 | + */ |
|
12 | + protected function getModel() |
|
13 | + { |
|
14 | + return 'App\Modules\V1\Notifications\Notification'; |
|
15 | + } |
|
16 | 16 | |
17 | - /** |
|
18 | - * Retrieve all notifications of the logged in user. |
|
19 | - * |
|
20 | - * @param integer $perPage |
|
21 | - * @return Collection |
|
22 | - */ |
|
23 | - public function list($perPage) |
|
24 | - { |
|
25 | - return \Auth::user()->notifications()->paginate($perPage); |
|
26 | - } |
|
17 | + /** |
|
18 | + * Retrieve all notifications of the logged in user. |
|
19 | + * |
|
20 | + * @param integer $perPage |
|
21 | + * @return Collection |
|
22 | + */ |
|
23 | + public function list($perPage) |
|
24 | + { |
|
25 | + return \Auth::user()->notifications()->paginate($perPage); |
|
26 | + } |
|
27 | 27 | |
28 | - /** |
|
29 | - * Retrieve unread notifications of the logged in user. |
|
30 | - * |
|
31 | - * @param integer $perPage |
|
32 | - * @return Collection |
|
33 | - */ |
|
34 | - public function unread($perPage) |
|
35 | - { |
|
36 | - return \Auth::user()->unreadNotifications()->paginate($perPage); |
|
37 | - } |
|
28 | + /** |
|
29 | + * Retrieve unread notifications of the logged in user. |
|
30 | + * |
|
31 | + * @param integer $perPage |
|
32 | + * @return Collection |
|
33 | + */ |
|
34 | + public function unread($perPage) |
|
35 | + { |
|
36 | + return \Auth::user()->unreadNotifications()->paginate($perPage); |
|
37 | + } |
|
38 | 38 | |
39 | - /** |
|
40 | - * Mark the notification as read. |
|
41 | - * |
|
42 | - * @param integer $id |
|
43 | - * @return object |
|
44 | - */ |
|
45 | - public function markAsRead($id) |
|
46 | - { |
|
47 | - if ($notification = \Auth::user()->unreadNotifications()->where('id', $id)) |
|
48 | - { |
|
49 | - $notification->first()->markAsRead(); |
|
50 | - } |
|
51 | - } |
|
39 | + /** |
|
40 | + * Mark the notification as read. |
|
41 | + * |
|
42 | + * @param integer $id |
|
43 | + * @return object |
|
44 | + */ |
|
45 | + public function markAsRead($id) |
|
46 | + { |
|
47 | + if ($notification = \Auth::user()->unreadNotifications()->where('id', $id)) |
|
48 | + { |
|
49 | + $notification->first()->markAsRead(); |
|
50 | + } |
|
51 | + } |
|
52 | 52 | |
53 | - /** |
|
54 | - * Mark all notifications as read. |
|
55 | - * |
|
56 | - * @return void |
|
57 | - */ |
|
58 | - public function markAllAsRead() |
|
59 | - { |
|
60 | - \Auth::user()->unreadNotifications()->update(['read_at' => now()]); |
|
61 | - } |
|
53 | + /** |
|
54 | + * Mark all notifications as read. |
|
55 | + * |
|
56 | + * @return void |
|
57 | + */ |
|
58 | + public function markAllAsRead() |
|
59 | + { |
|
60 | + \Auth::user()->unreadNotifications()->update(['read_at' => now()]); |
|
61 | + } |
|
62 | 62 | |
63 | - /** |
|
64 | - * Notify th given user with the given notification. |
|
65 | - * |
|
66 | - * @param collection $users |
|
67 | - * @param string $notification |
|
68 | - * @param object $notificationData |
|
69 | - * @return void |
|
70 | - */ |
|
71 | - public function notify($users, $notification, $notificationData = false) |
|
72 | - { |
|
73 | - $notification = 'App\Modules\V1\Notifications\Notifications\\' . $notification; |
|
74 | - \Notification::send($users, new $notification($notificationData)); |
|
75 | - } |
|
63 | + /** |
|
64 | + * Notify th given user with the given notification. |
|
65 | + * |
|
66 | + * @param collection $users |
|
67 | + * @param string $notification |
|
68 | + * @param object $notificationData |
|
69 | + * @return void |
|
70 | + */ |
|
71 | + public function notify($users, $notification, $notificationData = false) |
|
72 | + { |
|
73 | + $notification = 'App\Modules\V1\Notifications\Notifications\\' . $notification; |
|
74 | + \Notification::send($users, new $notification($notificationData)); |
|
75 | + } |
|
76 | 76 | } |
@@ -7,56 +7,56 @@ |
||
7 | 7 | |
8 | 8 | class PushNotificationDeviceRepository extends AbstractRepository |
9 | 9 | { |
10 | - /** |
|
11 | - * Return the model full namespace. |
|
12 | - * |
|
13 | - * @return string |
|
14 | - */ |
|
15 | - protected function getModel() |
|
16 | - { |
|
17 | - return 'App\Modules\V1\Notifications\PushNotificationDevice'; |
|
18 | - } |
|
19 | - |
|
20 | - /** |
|
21 | - * Register the given device to the logged in user. |
|
22 | - * |
|
23 | - * @param string $data |
|
24 | - * @return void |
|
25 | - */ |
|
26 | - public function registerDevice($data) |
|
27 | - { |
|
28 | - $data['access_token'] = \Auth::user()->token(); |
|
29 | - $data['user_id'] = \Auth::id(); |
|
30 | - if ($device = $this->model->where('device_token', $data['device_token'])->where('user_id', $data['user_id'])->first()) |
|
31 | - { |
|
32 | - $data['id'] = $device->id; |
|
33 | - } |
|
34 | - |
|
35 | - return $this->save($data); |
|
36 | - } |
|
37 | - |
|
38 | - /** |
|
39 | - * Generate the given message data. |
|
40 | - * |
|
41 | - * @param string $title |
|
42 | - * @param string $message |
|
43 | - * @param string $data |
|
44 | - * @return void |
|
45 | - */ |
|
46 | - public function generateMessageData($title, $message, $data = []) |
|
47 | - { |
|
48 | - $optionBuilder = new OptionsBuilder(); |
|
49 | - $notificationBuilder = new PayloadNotificationBuilder($title); |
|
50 | - $dataBuilder = new PayloadDataBuilder(); |
|
51 | - |
|
52 | - $optionBuilder->setTimeToLive(60*20); |
|
53 | - $notificationBuilder->setBody($message); |
|
54 | - $dataBuilder->addData($data); |
|
55 | - |
|
56 | - $options = $optionBuilder->build(); |
|
57 | - $notification = $notificationBuilder->build(); |
|
58 | - $data = $dataBuilder->build(); |
|
59 | - |
|
60 | - return compact('options', 'notification', 'data'); |
|
61 | - } |
|
10 | + /** |
|
11 | + * Return the model full namespace. |
|
12 | + * |
|
13 | + * @return string |
|
14 | + */ |
|
15 | + protected function getModel() |
|
16 | + { |
|
17 | + return 'App\Modules\V1\Notifications\PushNotificationDevice'; |
|
18 | + } |
|
19 | + |
|
20 | + /** |
|
21 | + * Register the given device to the logged in user. |
|
22 | + * |
|
23 | + * @param string $data |
|
24 | + * @return void |
|
25 | + */ |
|
26 | + public function registerDevice($data) |
|
27 | + { |
|
28 | + $data['access_token'] = \Auth::user()->token(); |
|
29 | + $data['user_id'] = \Auth::id(); |
|
30 | + if ($device = $this->model->where('device_token', $data['device_token'])->where('user_id', $data['user_id'])->first()) |
|
31 | + { |
|
32 | + $data['id'] = $device->id; |
|
33 | + } |
|
34 | + |
|
35 | + return $this->save($data); |
|
36 | + } |
|
37 | + |
|
38 | + /** |
|
39 | + * Generate the given message data. |
|
40 | + * |
|
41 | + * @param string $title |
|
42 | + * @param string $message |
|
43 | + * @param string $data |
|
44 | + * @return void |
|
45 | + */ |
|
46 | + public function generateMessageData($title, $message, $data = []) |
|
47 | + { |
|
48 | + $optionBuilder = new OptionsBuilder(); |
|
49 | + $notificationBuilder = new PayloadNotificationBuilder($title); |
|
50 | + $dataBuilder = new PayloadDataBuilder(); |
|
51 | + |
|
52 | + $optionBuilder->setTimeToLive(60*20); |
|
53 | + $notificationBuilder->setBody($message); |
|
54 | + $dataBuilder->addData($data); |
|
55 | + |
|
56 | + $options = $optionBuilder->build(); |
|
57 | + $notification = $notificationBuilder->build(); |
|
58 | + $data = $dataBuilder->build(); |
|
59 | + |
|
60 | + return compact('options', 'notification', 'data'); |
|
61 | + } |
|
62 | 62 | } |
@@ -5,53 +5,53 @@ |
||
5 | 5 | */ |
6 | 6 | class NotificationObserver { |
7 | 7 | |
8 | - public function saving($model) |
|
9 | - { |
|
10 | - // |
|
11 | - } |
|
12 | - |
|
13 | - public function saved($model) |
|
14 | - { |
|
15 | - // |
|
16 | - } |
|
17 | - |
|
18 | - public function creating($model) |
|
19 | - { |
|
20 | - // |
|
21 | - } |
|
22 | - |
|
23 | - public function created($model) |
|
24 | - { |
|
25 | - // |
|
26 | - } |
|
27 | - |
|
28 | - public function updating($model) |
|
29 | - { |
|
30 | - // |
|
31 | - } |
|
32 | - |
|
33 | - public function updated($model) |
|
34 | - { |
|
35 | - // |
|
36 | - } |
|
37 | - |
|
38 | - public function deleting($model) |
|
39 | - { |
|
40 | - // |
|
41 | - } |
|
42 | - |
|
43 | - public function deleted($model) |
|
44 | - { |
|
45 | - // |
|
46 | - } |
|
47 | - |
|
48 | - public function restoring($model) |
|
49 | - { |
|
50 | - // |
|
51 | - } |
|
52 | - |
|
53 | - public function restored($model) |
|
54 | - { |
|
55 | - // |
|
56 | - } |
|
8 | + public function saving($model) |
|
9 | + { |
|
10 | + // |
|
11 | + } |
|
12 | + |
|
13 | + public function saved($model) |
|
14 | + { |
|
15 | + // |
|
16 | + } |
|
17 | + |
|
18 | + public function creating($model) |
|
19 | + { |
|
20 | + // |
|
21 | + } |
|
22 | + |
|
23 | + public function created($model) |
|
24 | + { |
|
25 | + // |
|
26 | + } |
|
27 | + |
|
28 | + public function updating($model) |
|
29 | + { |
|
30 | + // |
|
31 | + } |
|
32 | + |
|
33 | + public function updated($model) |
|
34 | + { |
|
35 | + // |
|
36 | + } |
|
37 | + |
|
38 | + public function deleting($model) |
|
39 | + { |
|
40 | + // |
|
41 | + } |
|
42 | + |
|
43 | + public function deleted($model) |
|
44 | + { |
|
45 | + // |
|
46 | + } |
|
47 | + |
|
48 | + public function restoring($model) |
|
49 | + { |
|
50 | + // |
|
51 | + } |
|
52 | + |
|
53 | + public function restored($model) |
|
54 | + { |
|
55 | + // |
|
56 | + } |
|
57 | 57 | } |
58 | 58 | \ No newline at end of file |
@@ -4,65 +4,65 @@ |
||
4 | 4 | |
5 | 5 | class MakeNotificationsCommand extends GeneratorCommand |
6 | 6 | { |
7 | - /** |
|
8 | - * The name and signature of the console command. |
|
9 | - * |
|
10 | - * @var string |
|
11 | - */ |
|
12 | - protected $signature = 'make:module:notification |
|
7 | + /** |
|
8 | + * The name and signature of the console command. |
|
9 | + * |
|
10 | + * @var string |
|
11 | + */ |
|
12 | + protected $signature = 'make:module:notification |
|
13 | 13 | {name : The name of the notification class.}'; |
14 | - /** |
|
15 | - * The console command description. |
|
16 | - * |
|
17 | - * @var string |
|
18 | - */ |
|
19 | - protected $description = 'Create a new module notification class'; |
|
20 | - /** |
|
21 | - * String to store the command type. |
|
22 | - * |
|
23 | - * @var string |
|
24 | - */ |
|
25 | - protected $type = 'Module notification'; |
|
26 | - /** |
|
27 | - * Get the stub file for the generator. |
|
28 | - * |
|
29 | - * @return string |
|
30 | - */ |
|
31 | - protected function getStub() |
|
32 | - { |
|
33 | - return __DIR__.'/stubs/notification.stub'; |
|
34 | - } |
|
35 | - /** |
|
36 | - * Get the destination class path. |
|
37 | - * |
|
38 | - * @param string $name |
|
39 | - * |
|
40 | - * @return string |
|
41 | - */ |
|
42 | - protected function getPath($name) |
|
43 | - { |
|
44 | - return module_path('notifications', 'Notifications/'.$name.'.php'); |
|
45 | - } |
|
46 | - /** |
|
47 | - * Parse the name and format according to the root namespace. |
|
48 | - * |
|
49 | - * @param string $name |
|
50 | - * |
|
51 | - * @return string |
|
52 | - */ |
|
53 | - protected function qualifyClass($name) |
|
54 | - { |
|
55 | - return $name; |
|
56 | - } |
|
57 | - /** |
|
58 | - * Replace namespace in notification stub. |
|
59 | - * |
|
60 | - * @param string $name |
|
61 | - * |
|
62 | - * @return string |
|
63 | - */ |
|
64 | - protected function getNamespace($name) |
|
65 | - { |
|
66 | - return module_class('notifications', 'Notifications'); |
|
67 | - } |
|
14 | + /** |
|
15 | + * The console command description. |
|
16 | + * |
|
17 | + * @var string |
|
18 | + */ |
|
19 | + protected $description = 'Create a new module notification class'; |
|
20 | + /** |
|
21 | + * String to store the command type. |
|
22 | + * |
|
23 | + * @var string |
|
24 | + */ |
|
25 | + protected $type = 'Module notification'; |
|
26 | + /** |
|
27 | + * Get the stub file for the generator. |
|
28 | + * |
|
29 | + * @return string |
|
30 | + */ |
|
31 | + protected function getStub() |
|
32 | + { |
|
33 | + return __DIR__.'/stubs/notification.stub'; |
|
34 | + } |
|
35 | + /** |
|
36 | + * Get the destination class path. |
|
37 | + * |
|
38 | + * @param string $name |
|
39 | + * |
|
40 | + * @return string |
|
41 | + */ |
|
42 | + protected function getPath($name) |
|
43 | + { |
|
44 | + return module_path('notifications', 'Notifications/'.$name.'.php'); |
|
45 | + } |
|
46 | + /** |
|
47 | + * Parse the name and format according to the root namespace. |
|
48 | + * |
|
49 | + * @param string $name |
|
50 | + * |
|
51 | + * @return string |
|
52 | + */ |
|
53 | + protected function qualifyClass($name) |
|
54 | + { |
|
55 | + return $name; |
|
56 | + } |
|
57 | + /** |
|
58 | + * Replace namespace in notification stub. |
|
59 | + * |
|
60 | + * @param string $name |
|
61 | + * |
|
62 | + * @return string |
|
63 | + */ |
|
64 | + protected function getNamespace($name) |
|
65 | + { |
|
66 | + return module_class('notifications', 'Notifications'); |
|
67 | + } |
|
68 | 68 | } |
69 | 69 | \ No newline at end of file |
@@ -6,46 +6,46 @@ |
||
6 | 6 | |
7 | 7 | class NotificationsTableSeeder extends Seeder |
8 | 8 | { |
9 | - /** |
|
10 | - * Run the database seeds. |
|
11 | - * |
|
12 | - * @return void |
|
13 | - */ |
|
14 | - public function run() |
|
15 | - { |
|
16 | - /** |
|
17 | - * Insert the permissions related to settings table. |
|
18 | - */ |
|
19 | - \DB::table('permissions')->insert( |
|
20 | - [ |
|
21 | - /** |
|
22 | - * notifications model permissions. |
|
23 | - */ |
|
24 | - [ |
|
25 | - 'name' => 'all', |
|
26 | - 'model' => 'notifications', |
|
27 | - 'created_at' => \DB::raw('NOW()'), |
|
28 | - 'updated_at' => \DB::raw('NOW()') |
|
29 | - ], |
|
30 | - [ |
|
31 | - 'name' => 'unread', |
|
32 | - 'model' => 'notifications', |
|
33 | - 'created_at' => \DB::raw('NOW()'), |
|
34 | - 'updated_at' => \DB::raw('NOW()') |
|
35 | - ], |
|
36 | - [ |
|
37 | - 'name' => 'markAsRead', |
|
38 | - 'model' => 'notifications', |
|
39 | - 'created_at' => \DB::raw('NOW()'), |
|
40 | - 'updated_at' => \DB::raw('NOW()') |
|
41 | - ], |
|
42 | - [ |
|
43 | - 'name' => 'markAllAsRead', |
|
44 | - 'model' => 'notifications', |
|
45 | - 'created_at' => \DB::raw('NOW()'), |
|
46 | - 'updated_at' => \DB::raw('NOW()') |
|
47 | - ] |
|
48 | - ] |
|
49 | - ); |
|
50 | - } |
|
9 | + /** |
|
10 | + * Run the database seeds. |
|
11 | + * |
|
12 | + * @return void |
|
13 | + */ |
|
14 | + public function run() |
|
15 | + { |
|
16 | + /** |
|
17 | + * Insert the permissions related to settings table. |
|
18 | + */ |
|
19 | + \DB::table('permissions')->insert( |
|
20 | + [ |
|
21 | + /** |
|
22 | + * notifications model permissions. |
|
23 | + */ |
|
24 | + [ |
|
25 | + 'name' => 'all', |
|
26 | + 'model' => 'notifications', |
|
27 | + 'created_at' => \DB::raw('NOW()'), |
|
28 | + 'updated_at' => \DB::raw('NOW()') |
|
29 | + ], |
|
30 | + [ |
|
31 | + 'name' => 'unread', |
|
32 | + 'model' => 'notifications', |
|
33 | + 'created_at' => \DB::raw('NOW()'), |
|
34 | + 'updated_at' => \DB::raw('NOW()') |
|
35 | + ], |
|
36 | + [ |
|
37 | + 'name' => 'markAsRead', |
|
38 | + 'model' => 'notifications', |
|
39 | + 'created_at' => \DB::raw('NOW()'), |
|
40 | + 'updated_at' => \DB::raw('NOW()') |
|
41 | + ], |
|
42 | + [ |
|
43 | + 'name' => 'markAllAsRead', |
|
44 | + 'model' => 'notifications', |
|
45 | + 'created_at' => \DB::raw('NOW()'), |
|
46 | + 'updated_at' => \DB::raw('NOW()') |
|
47 | + ] |
|
48 | + ] |
|
49 | + ); |
|
50 | + } |
|
51 | 51 | } |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | $factory->define(App\Modules\V1\Notifications\Notification::class, function (Faker\Generator $faker) { |
4 | - return [ |
|
4 | + return [ |
|
5 | 5 | 'type' => '', |
6 | 6 | 'notifiable_type' => '', |
7 | 7 | 'notifiable_id' => '', |
@@ -9,5 +9,5 @@ discard block |
||
9 | 9 | 'read_at' => null, |
10 | 10 | 'created_at' => $faker->dateTimeBetween('-1 years', 'now'), |
11 | 11 | 'updated_at' => $faker->dateTimeBetween('-1 years', 'now') |
12 | - ]; |
|
12 | + ]; |
|
13 | 13 | }); |
14 | 14 | \ No newline at end of file |