1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* A blog tag for keyword descriptions of a blog post. |
5
|
|
|
* |
6
|
|
|
* @package silverstripe |
7
|
|
|
* @subpackage blog |
8
|
|
|
* |
9
|
|
|
* @method Blog Blog() |
10
|
|
|
* |
11
|
|
|
* @property string $Title |
12
|
|
|
* @property string $URLSegment |
13
|
|
|
* @property int $BlogID |
14
|
|
|
*/ |
15
|
|
View Code Duplication |
class BlogTag extends DataObject implements CategorisationObject |
|
|
|
|
16
|
|
|
{ |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Use an exception code so that attempted writes can continue on |
20
|
|
|
* duplicate errors. 600 is completely arbitrary. |
21
|
|
|
* |
22
|
|
|
* @const string |
23
|
|
|
* This must be a string because ValidationException has decided we can't use int |
24
|
|
|
*/ |
25
|
|
|
const DUPLICATE_EXCEPTION = "600"; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* @var array |
29
|
|
|
*/ |
30
|
|
|
private static $db = array( |
|
|
|
|
31
|
|
|
'Title' => 'Varchar(255)', |
32
|
|
|
); |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @var array |
36
|
|
|
*/ |
37
|
|
|
private static $has_one = array( |
|
|
|
|
38
|
|
|
'Blog' => 'Blog', |
39
|
|
|
); |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* @var array |
43
|
|
|
*/ |
44
|
|
|
private static $belongs_many_many = array( |
|
|
|
|
45
|
|
|
'BlogPosts' => 'BlogPost', |
46
|
|
|
); |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* @var array |
50
|
|
|
*/ |
51
|
|
|
private static $extensions = array( |
|
|
|
|
52
|
|
|
'URLSegmentExtension', |
53
|
|
|
); |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* @return DataList |
57
|
|
|
*/ |
58
|
|
|
public function BlogPosts() |
59
|
|
|
{ |
60
|
|
|
$blogPosts = parent::BlogPosts(); |
|
|
|
|
61
|
|
|
|
62
|
|
|
$this->extend("updateGetBlogPosts", $blogPosts); |
63
|
|
|
|
64
|
|
|
return $blogPosts; |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
/** |
68
|
|
|
* {@inheritdoc} |
69
|
|
|
*/ |
70
|
|
|
public function getCMSFields() |
71
|
|
|
{ |
72
|
|
|
$fields = new FieldList( |
73
|
|
|
TextField::create('Title', _t('BlogTag.Title', 'Title')) |
74
|
|
|
); |
75
|
|
|
|
76
|
|
|
$this->extend('updateCMSFields', $fields); |
77
|
|
|
|
78
|
|
|
return $fields; |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* {@inheritdoc} |
83
|
|
|
*/ |
84
|
|
|
protected function validate() { |
85
|
|
|
$validation = parent::validate(); |
86
|
|
|
if($validation->valid()) { |
87
|
|
|
// Check for duplicate tags |
88
|
|
|
$blog = $this->Blog(); |
89
|
|
|
if($blog && $blog->exists()) { |
90
|
|
|
$existing = $blog->Tags()->filter('Title', $this->Title); |
91
|
|
|
if($this->ID) { |
92
|
|
|
$existing = $existing->exclude('ID', $this->ID); |
93
|
|
|
} |
94
|
|
|
if($existing->count() > 0) { |
95
|
|
|
$validation->error(_t( |
96
|
|
|
'BlogTag.Duplicate', |
97
|
|
|
'A blog tags already exists with that name' |
98
|
|
|
), BlogTag::DUPLICATE_EXCEPTION); |
99
|
|
|
} |
100
|
|
|
} |
101
|
|
|
} |
102
|
|
|
return $validation; |
103
|
|
|
} |
104
|
|
|
|
105
|
|
|
/** |
106
|
|
|
* Returns a relative URL for the tag link. |
107
|
|
|
* |
108
|
|
|
* @return string |
109
|
|
|
*/ |
110
|
|
|
public function getLink() |
111
|
|
|
{ |
112
|
|
|
return Controller::join_links($this->Blog()->Link(), 'tag', $this->URLSegment); |
113
|
|
|
} |
114
|
|
|
|
115
|
|
|
/** |
116
|
|
|
* Inherits from the parent blog or can be overwritten using a DataExtension. |
117
|
|
|
* |
118
|
|
|
* @param null|Member $member |
119
|
|
|
* |
120
|
|
|
* @return bool |
121
|
|
|
*/ |
122
|
|
|
public function canView($member = null) |
123
|
|
|
{ |
124
|
|
|
$extended = $this->extendedCan(__FUNCTION__, $member); |
|
|
|
|
125
|
|
|
|
126
|
|
|
if ($extended !== null) { |
127
|
|
|
return $extended; |
128
|
|
|
} |
129
|
|
|
|
130
|
|
|
return $this->Blog()->canView($member); |
131
|
|
|
} |
132
|
|
|
|
133
|
|
|
/** |
134
|
|
|
* Inherits from the parent blog or can be overwritten using a DataExtension. |
135
|
|
|
* |
136
|
|
|
* @param null|Member $member |
137
|
|
|
* |
138
|
|
|
* @return bool |
139
|
|
|
*/ |
140
|
|
|
public function canCreate($member = null) |
141
|
|
|
{ |
142
|
|
|
$extended = $this->extendedCan(__FUNCTION__, $member); |
|
|
|
|
143
|
|
|
|
144
|
|
|
if ($extended !== null) { |
145
|
|
|
return $extended; |
146
|
|
|
} |
147
|
|
|
|
148
|
|
|
$permission = Blog::config()->grant_user_permission; |
149
|
|
|
|
150
|
|
|
return Permission::checkMember($member, $permission); |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
/** |
154
|
|
|
* Inherits from the parent blog or can be overwritten using a DataExtension. |
155
|
|
|
* |
156
|
|
|
* @param null|Member $member |
157
|
|
|
* |
158
|
|
|
* @return bool |
159
|
|
|
*/ |
160
|
|
|
public function canDelete($member = null) |
161
|
|
|
{ |
162
|
|
|
$extended = $this->extendedCan(__FUNCTION__, $member); |
|
|
|
|
163
|
|
|
|
164
|
|
|
if ($extended !== null) { |
165
|
|
|
return $extended; |
166
|
|
|
} |
167
|
|
|
|
168
|
|
|
return $this->Blog()->canEdit($member); |
169
|
|
|
} |
170
|
|
|
|
171
|
|
|
/** |
172
|
|
|
* Inherits from the parent blog or can be overwritten using a DataExtension. |
173
|
|
|
* |
174
|
|
|
* @param null|Member $member |
175
|
|
|
* |
176
|
|
|
* @return bool |
177
|
|
|
*/ |
178
|
|
|
public function canEdit($member = null) |
179
|
|
|
{ |
180
|
|
|
$extended = $this->extendedCan(__FUNCTION__, $member); |
|
|
|
|
181
|
|
|
|
182
|
|
|
if ($extended !== null) { |
183
|
|
|
return $extended; |
184
|
|
|
} |
185
|
|
|
|
186
|
|
|
return $this->Blog()->canEdit($member); |
187
|
|
|
} |
188
|
|
|
} |
189
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.