|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Fenos\Notifynder\Models; |
|
4
|
|
|
|
|
5
|
|
|
use Fenos\Notifynder\Builder\Notification as BuilderNotification; |
|
6
|
|
|
use Fenos\Notifynder\Parsers\NotificationParser; |
|
7
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
8
|
|
|
|
|
9
|
|
|
class Notification extends Model |
|
10
|
|
|
{ |
|
11
|
|
|
protected $fillable = [ |
|
12
|
|
|
'to_id', |
|
13
|
|
|
'to_type', |
|
14
|
|
|
'from_id', |
|
15
|
|
|
'from_type', |
|
16
|
|
|
'category_id', |
|
17
|
|
|
'read', |
|
18
|
|
|
'url', |
|
19
|
|
|
'extra', |
|
20
|
|
|
'expire_time', // ToDo: rename to `expires_at` |
|
21
|
|
|
'stack_id', |
|
22
|
|
|
]; |
|
23
|
|
|
|
|
24
|
|
|
protected $appends = [ |
|
25
|
|
|
'text', |
|
26
|
|
|
]; |
|
27
|
|
|
|
|
28
|
|
|
protected $casts = [ |
|
29
|
|
|
'extra' => 'array', |
|
30
|
|
|
]; |
|
31
|
|
|
|
|
32
|
|
|
public function __construct($attributes = []) |
|
33
|
|
|
{ |
|
34
|
|
|
$this->fillable($this->mergeFillables()); |
|
35
|
|
|
|
|
36
|
|
|
if ($attributes instanceof BuilderNotification) { |
|
37
|
|
|
$attributes = $attributes->toArray(); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
parent::__construct($attributes); |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
public function category() |
|
44
|
|
|
{ |
|
45
|
|
|
return $this->belongsTo(NotificationCategory::class, 'category_id'); |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
public function from() |
|
49
|
|
|
{ |
|
50
|
|
|
if (notifynder_config()->isPolymorphic()) { |
|
51
|
|
|
return $this->belongsTo(notifynder_config()->getModel(), 'from_id'); |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
return $this->morphTo(); |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
public function to() |
|
58
|
|
|
{ |
|
59
|
|
|
if (notifynder_config()->isPolymorphic()) { |
|
60
|
|
|
return $this->belongsTo(notifynder_config()->getModel(), 'to_id'); |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
return $this->morphTo(); |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
public function getCustomFillableFields() |
|
67
|
|
|
{ |
|
68
|
|
|
return notifynder_config()->getAdditionalFields(); |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
protected function mergeFillables() |
|
72
|
|
|
{ |
|
73
|
|
|
$fillables = array_unique($this->getFillable() + $this->getCustomFillableFields()); |
|
74
|
|
|
|
|
75
|
|
|
return $fillables; |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
public function getTemplateBodyAttribute() |
|
79
|
|
|
{ |
|
80
|
|
|
if (notifynder_config()->isTranslated()) { |
|
81
|
|
|
$key = notifynder_config()->getTranslationDomain().'.'.$this->category->name; |
|
|
|
|
|
|
82
|
|
|
$trans = trans($key); |
|
83
|
|
|
if ($trans != $key) { |
|
84
|
|
|
return $trans; |
|
85
|
|
|
} |
|
86
|
|
|
} |
|
87
|
|
|
return $this->category->text; |
|
|
|
|
|
|
88
|
|
|
} |
|
89
|
|
|
|
|
90
|
|
|
public function getTextAttribute() |
|
91
|
|
|
{ |
|
92
|
|
|
if(!array_key_exists('text', $this->attributes)) { |
|
93
|
|
|
$notifynderParse = new NotificationParser(); |
|
94
|
|
|
$this->attributes['text'] = $notifynderParse->parse($this); |
|
95
|
|
|
} |
|
96
|
|
|
return $this->attributes['text']; |
|
97
|
|
|
} |
|
98
|
|
|
} |
|
99
|
|
|
|
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read 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.