1
|
|
|
<?php |
2
|
|
|
namespace App\Controller; |
3
|
|
|
|
4
|
|
|
use Cake\Network\Exception\NotFoundException; |
5
|
|
|
|
6
|
|
|
class NotificationsController extends AppController |
7
|
|
|
{ |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* Initialization hook method. |
11
|
|
|
* |
12
|
|
|
* @return void |
13
|
|
|
*/ |
14
|
|
|
public function initialize() |
15
|
|
|
{ |
16
|
|
|
parent::initialize(); |
17
|
|
|
|
18
|
|
|
$this->loadComponent('RequestHandler'); |
19
|
|
|
} |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* Mark a notification as readed. |
23
|
|
|
* |
24
|
|
|
* @return void|\Cake\Network\Response |
25
|
|
|
*/ |
26
|
|
|
public function markAsRead() |
27
|
|
|
{ |
28
|
|
|
if (!$this->request->is('ajax')) { |
29
|
|
|
throw new NotFoundException(); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
$this->Notifications = $this->loadModel('Notifications'); |
|
|
|
|
33
|
|
|
|
34
|
|
|
$json = [ |
35
|
|
|
'error' => false |
36
|
|
|
]; |
37
|
|
|
|
38
|
|
|
$notification = $this->Notifications |
|
|
|
|
39
|
|
|
->find() |
40
|
|
|
->where([ |
41
|
|
|
'id' => $this->request->getData('id') |
42
|
|
|
]) |
43
|
|
|
->first(); |
44
|
|
|
|
45
|
|
|
//If the notification doesn't exist or if the owner of the |
46
|
|
|
//notification is not the current user, return an error. |
47
|
|
|
if (is_null($notification) || $notification->user_id != $this->Auth->user('id')) { |
48
|
|
|
$json['error'] = true; |
49
|
|
|
|
50
|
|
|
$this->set(compact('json')); |
51
|
|
|
|
52
|
|
|
$this->set('_serialize', 'json'); |
53
|
|
|
|
54
|
|
|
return; |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
if ($notification->is_read) { |
58
|
|
|
$this->set(compact('json')); |
59
|
|
|
$this->set('_serialize', 'json'); |
60
|
|
|
|
61
|
|
|
return; |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
$notification->is_read = 1; |
65
|
|
|
$this->Notifications->save($notification); |
|
|
|
|
66
|
|
|
|
67
|
|
|
$this->set(compact('json')); |
68
|
|
|
$this->set('_serialize', ['json']); |
69
|
|
|
} |
70
|
|
|
} |
71
|
|
|
|
Since your code implements the magic setter
_set
, this function will be called for any write access on an undefined variable. You can add the@property
annotation to your class or interface to document the existence of this variable.Since the property has write access only, you can use the @property-write annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.