1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* |
4
|
|
|
* Advertisement management. An extension for the phpBB Forum Software package. |
5
|
|
|
* |
6
|
|
|
* @copyright (c) 2017 phpBB Limited <https://www.phpbb.com> |
7
|
|
|
* @license GNU General Public License, version 2 (GPL-2.0) |
8
|
|
|
* |
9
|
|
|
*/ |
10
|
|
|
|
11
|
|
|
namespace phpbb\ads\controller; |
12
|
|
|
|
13
|
|
|
use phpbb\ads\ext; |
14
|
|
|
|
15
|
|
|
/** |
16
|
|
|
* Admin input |
17
|
|
|
*/ |
18
|
|
|
class admin_input |
19
|
|
|
{ |
20
|
|
|
/** @var \phpbb\user */ |
21
|
|
|
protected $user; |
22
|
|
|
|
23
|
|
|
/** @var \phpbb\user_loader */ |
24
|
|
|
protected $user_loader; |
25
|
|
|
|
26
|
|
|
/** @var \phpbb\language\language */ |
27
|
|
|
protected $language; |
28
|
|
|
|
29
|
|
|
/** @var \phpbb\request\request */ |
30
|
|
|
protected $request; |
31
|
|
|
|
32
|
|
|
/** @var \phpbb\ads\banner\banner */ |
33
|
|
|
protected $banner; |
34
|
|
|
|
35
|
|
|
/** @var array Form validation errors */ |
36
|
|
|
protected $errors = array(); |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* Constructor |
40
|
|
|
* |
41
|
|
|
* @param \phpbb\user $user User object |
42
|
|
|
* @param \phpbb\user_loader $user_loader User loader object |
43
|
19 |
|
* @param \phpbb\language\language $language Language object |
44
|
|
|
* @param \phpbb\request\request $request Request object |
45
|
19 |
|
* @param \phpbb\ads\banner\banner $banner Banner upload object |
46
|
19 |
|
*/ |
47
|
19 |
|
public function __construct(\phpbb\user $user, \phpbb\user_loader $user_loader, \phpbb\language\language $language, \phpbb\request\request $request, \phpbb\ads\banner\banner $banner) |
48
|
19 |
|
{ |
49
|
|
|
$this->user = $user; |
50
|
19 |
|
$this->user_loader = $user_loader; |
51
|
19 |
|
$this->language = $language; |
52
|
|
|
$this->request = $request; |
53
|
|
|
$this->banner = $banner; |
54
|
|
|
|
55
|
|
|
add_form_key('phpbb_ads'); |
56
|
|
|
} |
57
|
|
|
|
58
|
14 |
|
/** |
59
|
|
|
* Gets all errors |
60
|
14 |
|
* |
61
|
|
|
* @return array Errors |
62
|
|
|
*/ |
63
|
|
|
public function get_errors() |
64
|
|
|
{ |
65
|
|
|
return $this->errors; |
66
|
|
|
} |
67
|
|
|
|
68
|
14 |
|
/** |
69
|
|
|
* Returns number of errors. |
70
|
14 |
|
* |
71
|
|
|
* @return int Number of errors |
72
|
|
|
*/ |
73
|
|
|
public function has_errors() |
74
|
|
|
{ |
75
|
|
|
return count($this->errors); |
76
|
|
|
} |
77
|
|
|
|
78
|
12 |
|
/** |
79
|
|
|
* Get admin form data. |
80
|
|
|
* |
81
|
12 |
|
* @return array Form data |
82
|
12 |
|
*/ |
83
|
12 |
|
public function get_form_data() |
84
|
12 |
|
{ |
85
|
12 |
|
$data = array( |
86
|
12 |
|
'ad_name' => $this->request->variable('ad_name', '', true), |
87
|
12 |
|
'ad_note' => $this->request->variable('ad_note', '', true), |
88
|
12 |
|
'ad_code' => $this->request->variable('ad_code', '', true), |
89
|
12 |
|
'ad_enabled' => $this->request->variable('ad_enabled', 0), |
90
|
12 |
|
'ad_locations' => $this->request->variable('ad_locations', array('')), |
91
|
12 |
|
'ad_end_date' => $this->request->variable('ad_end_date', ''), |
92
|
|
|
'ad_priority' => $this->request->variable('ad_priority', ext::DEFAULT_PRIORITY), |
93
|
|
|
'ad_views_limit' => $this->request->variable('ad_views_limit', 0), |
94
|
12 |
|
'ad_clicks_limit' => $this->request->variable('ad_clicks_limit', 0), |
95
|
12 |
|
'ad_owner' => $this->request->variable('ad_owner', '', true), |
96
|
2 |
|
); |
97
|
2 |
|
|
98
|
|
|
// Validate form key |
99
|
|
|
if (!check_form_key('phpbb_ads')) |
100
|
12 |
|
{ |
101
|
|
|
$this->errors[] = 'FORM_INVALID'; |
102
|
12 |
|
} |
103
|
12 |
|
|
104
|
12 |
|
// Validate each property. Some validators update the property value. Errors are added to $this->errors. |
105
|
12 |
|
foreach ($data as $prop_name => $prop_val) |
106
|
12 |
|
{ |
107
|
|
|
$method = 'validate_' . $prop_name; |
108
|
|
|
if (method_exists($this, $method)) |
109
|
12 |
|
{ |
110
|
12 |
|
$data[$prop_name] = $this->{$method}($prop_val); |
111
|
12 |
|
} |
112
|
10 |
|
} |
113
|
10 |
|
|
114
|
|
|
return $data; |
115
|
12 |
|
} |
116
|
|
|
|
117
|
|
|
/** |
118
|
|
|
* Upload image and return updated ad code or <img> of new banner when using ajax. |
119
|
|
|
* |
120
|
|
|
* @param string $ad_code Current ad code |
121
|
|
|
* @return string \phpbb\json_response when request is ajax or updated ad code otherwise. |
122
|
|
|
*/ |
123
|
|
|
public function banner_upload($ad_code) |
124
|
7 |
|
{ |
125
|
|
|
try |
126
|
|
|
{ |
127
|
|
|
$this->banner->create_storage_dir(); |
128
|
7 |
|
$realname = $this->banner->upload(); |
129
|
4 |
|
|
130
|
|
|
$banner_html = '<img src="' . generate_board_url() . '/images/phpbb_ads/' . $realname . '" />'; |
131
|
3 |
|
|
132
|
|
|
if ($this->request->is_ajax()) |
133
|
3 |
|
{ |
134
|
3 |
|
$this->send_ajax_response(true, $banner_html); |
135
|
1 |
|
} |
136
|
|
|
|
137
|
|
|
$ad_code = ($ad_code ? $ad_code . "\n\n" : '') . $banner_html; |
138
|
2 |
|
} |
139
|
|
|
catch (\phpbb\exception\runtime_exception $e) |
|
|
|
|
140
|
7 |
|
{ |
141
|
|
|
$this->banner->remove(); |
142
|
4 |
|
|
143
|
|
|
if ($this->request->is_ajax()) |
144
|
4 |
|
{ |
145
|
4 |
|
$this->send_ajax_response(false, $this->language->lang($e->getMessage())); |
146
|
1 |
|
} |
147
|
|
|
|
148
|
|
|
$this->errors[] = $this->language->lang($e->getMessage()); |
149
|
3 |
|
} |
150
|
|
|
|
151
|
|
|
return $ad_code; |
152
|
5 |
|
} |
153
|
|
|
|
154
|
|
|
/** |
155
|
|
|
* Validate advertisement name |
156
|
|
|
* |
157
|
|
|
* @param string $ad_name Advertisement name |
158
|
|
|
* @return string Advertisement name |
159
|
|
|
*/ |
160
|
12 |
|
protected function validate_ad_name($ad_name) |
161
|
|
|
{ |
162
|
12 |
|
if ($ad_name === '') |
163
|
12 |
|
{ |
164
|
2 |
|
$this->errors[] = 'AD_NAME_REQUIRED'; |
165
|
2 |
|
} |
166
|
12 |
|
|
167
|
12 |
|
if (truncate_string($ad_name, ext::MAX_NAME_LENGTH) !== $ad_name) |
168
|
1 |
|
{ |
169
|
1 |
|
$this->errors[] = $this->language->lang('AD_NAME_TOO_LONG', ext::MAX_NAME_LENGTH); |
170
|
12 |
|
} |
171
|
|
|
|
172
|
|
|
return $ad_name; |
173
|
|
|
} |
174
|
|
|
|
175
|
|
|
/** |
176
|
|
|
* Validate advertisement code |
177
|
12 |
|
* |
178
|
|
|
* @param string $ad_code Advertisement code |
179
|
12 |
|
* @return string Advertisement code |
180
|
12 |
|
*/ |
181
|
2 |
|
protected function validate_ad_code($ad_code) |
182
|
|
|
{ |
183
|
2 |
|
if (preg_match_all('/[\x{10000}-\x{10FFFF}]/u', $ad_code, $matches)) |
184
|
2 |
|
{ |
185
|
1 |
|
$characters = implode(' ', $matches[0]); |
186
|
1 |
|
$this->errors[] = $this->language->lang('AD_CODE_ILLEGAL_CHARS', $characters); |
187
|
2 |
|
} |
188
|
10 |
|
|
189
|
10 |
|
return $ad_code; |
190
|
2 |
|
} |
191
|
2 |
|
|
192
|
12 |
|
/** |
193
|
|
|
* Validate advertisement end date |
194
|
|
|
* |
195
|
|
|
* @param string $end_date Advertisement end date |
196
|
|
|
* @return int The end date converted to timestamp if valid, otherwise 0. |
197
|
|
|
*/ |
198
|
|
|
protected function validate_ad_end_date($end_date) |
199
|
12 |
|
{ |
200
|
|
|
$timestamp = 0; |
201
|
12 |
|
if (preg_match('#^\d{4}\-\d{2}\-\d{2}$#', $end_date)) |
202
|
12 |
|
{ |
203
|
3 |
|
$timestamp = (int) $this->user->get_timestamp_from_format(ext::DATE_FORMAT, $end_date); |
204
|
3 |
|
|
205
|
12 |
|
if ($timestamp < time()) |
206
|
|
|
{ |
207
|
|
|
$this->errors[] = 'AD_END_DATE_INVALID'; |
208
|
|
|
} |
209
|
|
|
} |
210
|
|
|
else if ($end_date !== '') |
211
|
|
|
{ |
212
|
12 |
|
$this->errors[] = 'AD_END_DATE_INVALID'; |
213
|
|
|
} |
214
|
12 |
|
|
215
|
12 |
|
return $timestamp; |
216
|
2 |
|
} |
217
|
2 |
|
|
218
|
12 |
|
/** |
219
|
|
|
* Validate advertisement priority |
220
|
|
|
* |
221
|
|
|
* @param int $ad_priority Advertisement priority |
222
|
|
|
* @return int Advertisement priority |
223
|
|
|
*/ |
224
|
|
|
protected function validate_ad_priority($ad_priority) |
225
|
12 |
|
{ |
226
|
|
|
if ($ad_priority < 1 || $ad_priority > 10) |
227
|
12 |
|
{ |
228
|
12 |
|
$this->errors[] = 'AD_PRIORITY_INVALID'; |
229
|
2 |
|
} |
230
|
2 |
|
|
231
|
12 |
|
return $ad_priority; |
232
|
|
|
} |
233
|
|
|
|
234
|
|
|
/** |
235
|
|
|
* Validate advertisement views limit |
236
|
|
|
* |
237
|
|
|
* @param int $ad_views_limit Advertisement views limit |
238
|
12 |
|
* @return int Advertisement views limit |
239
|
|
|
*/ |
240
|
|
|
protected function validate_ad_views_limit($ad_views_limit) |
241
|
12 |
|
{ |
242
|
12 |
|
if ($ad_views_limit < 0) |
243
|
2 |
|
{ |
244
|
2 |
|
$this->errors[] = 'AD_VIEWS_LIMIT_INVALID'; |
245
|
12 |
|
} |
246
|
|
|
|
247
|
|
|
return $ad_views_limit; |
248
|
|
|
} |
249
|
|
|
|
250
|
|
|
/** |
251
|
|
|
* Validate advertisement clicks limit |
252
|
|
|
* |
253
|
12 |
|
* @param int $ad_clicks_limit Advertisement clicks limit |
254
|
|
|
* @return int Advertisement clicks limit |
255
|
12 |
|
*/ |
256
|
|
|
protected function validate_ad_clicks_limit($ad_clicks_limit) |
257
|
|
|
{ |
258
|
|
|
if ($ad_clicks_limit < 0) |
259
|
|
|
{ |
260
|
|
|
$this->errors[] = 'AD_CLICKS_LIMIT_INVALID'; |
261
|
|
|
} |
262
|
|
|
|
263
|
|
|
return $ad_clicks_limit; |
264
|
10 |
|
} |
265
|
|
|
|
266
|
10 |
|
/** |
267
|
10 |
|
* Validate advertisement owner |
268
|
9 |
|
* |
269
|
|
|
* @param string $ad_owner User name |
270
|
|
|
* @return int User id if user exists, otherwise 0. |
271
|
1 |
|
*/ |
272
|
1 |
|
protected function validate_ad_owner($ad_owner) |
273
|
|
|
{ |
274
|
|
|
$user_id = 0; |
275
|
|
|
if (!empty($ad_owner) && ANONYMOUS === ($user_id = (int) $this->user_loader->load_user_by_username($ad_owner))) |
276
|
|
|
{ |
277
|
|
|
$this->errors[] = 'AD_OWNER_INVALID'; |
278
|
|
|
} |
279
|
|
|
|
280
|
|
|
return ANONYMOUS !== $user_id ? $user_id : 0; |
281
|
2 |
|
} |
282
|
|
|
|
283
|
2 |
|
/** |
284
|
2 |
|
* Send ajax response |
285
|
2 |
|
* |
286
|
2 |
|
* @param bool $success Is request successful? |
287
|
2 |
|
* @param string $text Text to return |
288
|
2 |
|
*/ |
289
|
|
|
protected function send_ajax_response($success, $text) |
290
|
|
|
{ |
291
|
|
|
$json_response = new \phpbb\json_response; |
292
|
|
|
$json_response->send(array( |
293
|
|
|
'success' => $success, |
294
|
|
|
'title' => $this->language->lang('INFORMATION'), |
295
|
|
|
'text' => $text, |
296
|
|
|
)); |
297
|
|
|
} |
298
|
|
|
} |
299
|
|
|
|
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.