Total Complexity | 98 |
Total Lines | 653 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
Complex classes like Restful often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Restful, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
30 | class Restful extends Controller |
||
31 | { |
||
32 | /** |
||
33 | * Push headers flag |
||
34 | * |
||
35 | * Used for push default headers by controller. |
||
36 | * Set to FALSE if you want to set default headers on the web-server configuration. |
||
37 | * |
||
38 | * APACHE via .htaccess |
||
39 | * IIS via .webconfig |
||
40 | * Nginx via config |
||
41 | * |
||
42 | * @type string |
||
43 | */ |
||
44 | protected $pushDefaultHeaders = false; |
||
45 | |||
46 | /** |
||
47 | * Access-Control-Allow-Origin |
||
48 | * |
||
49 | * Used for indicates whether a resource can be shared based by |
||
50 | * returning the value of the Origin request header, "*", or "null" in the response. |
||
51 | * |
||
52 | * @type string |
||
53 | */ |
||
54 | protected $accessControlAllowOrigin = '*'; |
||
55 | |||
56 | /** |
||
57 | * Access-Control-Allow-Credentials |
||
58 | * |
||
59 | * Used for indicates whether the response to request can be exposed when the omit credentials flag is unset. |
||
60 | * When part of the response to a preflight request it indicates that the actual request can include user |
||
61 | * credentials. |
||
62 | * |
||
63 | * @type bool |
||
64 | */ |
||
65 | protected $accessControlAllowCredentials = true; |
||
66 | |||
67 | /** |
||
68 | * Access-Control-Method |
||
69 | * |
||
70 | * @var string |
||
71 | */ |
||
72 | protected $accessControlMethod = 'GET'; |
||
73 | |||
74 | /** |
||
75 | * Access-Control-Params |
||
76 | * |
||
77 | * @var array |
||
78 | */ |
||
79 | protected $accessControlParams = []; |
||
80 | |||
81 | /** |
||
82 | * Access-Control-Allow-Methods |
||
83 | * |
||
84 | * Used for indicates, as part of the response to a preflight request, |
||
85 | * which methods can be used during the actual request. |
||
86 | * |
||
87 | * @type array |
||
88 | */ |
||
89 | protected $accessControlAllowMethods = [ |
||
90 | 'GET', // common request |
||
91 | 'POST', // used for create, update request |
||
92 | //'PUT', // used for upload files request |
||
93 | //'DELETE', // used for delete request |
||
94 | 'OPTIONS', // used for preflight request |
||
95 | ]; |
||
96 | |||
97 | /** |
||
98 | * Access-Control-Allow-Headers |
||
99 | * |
||
100 | * Used for indicates, as part of the response to a preflight request, |
||
101 | * which header field names can be used during the actual request. |
||
102 | * |
||
103 | * @type int |
||
104 | */ |
||
105 | protected $accessControlAllowHeaders = [ |
||
106 | 'Origin', |
||
107 | 'Access-Control-Request-Method', |
||
108 | 'Access-Control-Request-Headers', |
||
109 | 'X-Api-Authenticate', // API-Authenticate: api_key="xxx", api_secret="xxx", api_signature="xxx" |
||
110 | 'X-Api-Token', |
||
111 | 'X-Web-Token', // X-Web-Token: xxx (json-web-token) |
||
112 | 'X-Csrf-Token', |
||
113 | 'X-Xss-Token', |
||
114 | 'X-Request-ID', |
||
115 | 'X-Requested-With', |
||
116 | 'X-Requested-Result', |
||
117 | ]; |
||
118 | |||
119 | /** |
||
120 | * Access-Control-Allow-Headers |
||
121 | * |
||
122 | * Used for indicates, as part of the response to a preflight request, |
||
123 | * which header field names can be used during the actual request. |
||
124 | * |
||
125 | * @type array |
||
126 | */ |
||
127 | protected $accessControlAllowContentTypes = [ |
||
128 | 'text/html', |
||
129 | 'application/json', |
||
130 | 'application/xml', |
||
131 | ]; |
||
132 | |||
133 | /** |
||
134 | * Access-Control-Max-Age |
||
135 | * |
||
136 | * Used for indicates how long the results of a preflight request can be cached in a preflight result cache |
||
137 | * |
||
138 | * @type int |
||
139 | */ |
||
140 | protected $accessControlMaxAge = 86400; |
||
141 | |||
142 | /** |
||
143 | * Restful::$ajaxOnly |
||
144 | * |
||
145 | * @var bool |
||
146 | */ |
||
147 | protected $ajaxOnly = false; |
||
148 | |||
149 | /** |
||
150 | * Restful::$model |
||
151 | * |
||
152 | * @var \O2System\Framework\Models\Sql\Model|\O2System\Framework\Models\NoSql\Model|\O2System\Framework\Models\Files\Model |
||
153 | */ |
||
154 | public $model; |
||
155 | |||
156 | /** |
||
157 | * Restful::$params |
||
158 | * |
||
159 | * @var array |
||
160 | */ |
||
161 | public $params = []; |
||
162 | |||
163 | /** |
||
164 | * Restful::$fillableColumns |
||
165 | * |
||
166 | * @var array |
||
167 | */ |
||
168 | public $fillableColumns = []; |
||
169 | |||
170 | /** |
||
171 | * Restful::$fillableColumnsWithRules |
||
172 | * |
||
173 | * @var array |
||
174 | */ |
||
175 | public $fillableColumnsWithRules = []; |
||
176 | |||
177 | // ------------------------------------------------------------------------ |
||
178 | |||
179 | /** |
||
180 | * Restful::__construct |
||
181 | */ |
||
182 | public function __construct() |
||
183 | { |
||
184 | if (services()->has('presenter')) { |
||
185 | presenter()->setTheme(false); |
||
|
|||
186 | } |
||
187 | |||
188 | if (is_ajax()) { |
||
189 | output()->setContentType('application/json'); |
||
190 | } elseif ($this->ajaxOnly === false) { |
||
191 | output()->setContentType('application/json'); |
||
192 | } else { |
||
193 | output()->setContentType('text/html'); |
||
194 | } |
||
195 | |||
196 | if ($contentType = input()->server('HTTP_X_REQUESTED_CONTENT_TYPE')) { |
||
197 | if (in_array($contentType, $this->accessControlAllowContentTypes)) { |
||
198 | output()->setContentType($contentType); |
||
199 | } |
||
200 | } |
||
201 | |||
202 | if ($this->pushDefaultHeaders) { |
||
203 | |||
204 | $origin = input()->server('HTTP_ORIGIN'); |
||
205 | |||
206 | /** |
||
207 | * Prepare for preflight modern browser request |
||
208 | * |
||
209 | * Since some server cannot use 'Access-Control-Allow-Origin: *' |
||
210 | * the Access-Control-Allow-Origin will be defined based on requested origin |
||
211 | */ |
||
212 | if ($this->accessControlAllowOrigin === '*') { |
||
213 | output()->addHeader(ResponseFieldInterface::RESPONSE_ACCESS_CONTROL_ALLOW_ORIGIN, $origin); |
||
214 | } |
||
215 | |||
216 | // Set response access control allowed credentials |
||
217 | if ($this->accessControlAllowCredentials === false) { |
||
218 | output()->addHeader(ResponseFieldInterface::RESPONSE_ACCESS_CONTROL_ALLOW_CREDENTIALS, 'false'); |
||
219 | } |
||
220 | |||
221 | // Set response access control allowed methods header |
||
222 | if (count($this->accessControlAllowMethods)) { |
||
223 | output()->addHeader( |
||
224 | ResponseFieldInterface::RESPONSE_ACCESS_CONTROL_ALLOW_METHODS, |
||
225 | implode(', ', $this->accessControlAllowMethods) |
||
226 | ); |
||
227 | } |
||
228 | |||
229 | // Set response access control allowed headers header |
||
230 | if (count($this->accessControlAllowHeaders)) { |
||
231 | output()->addHeader( |
||
232 | ResponseFieldInterface::RESPONSE_ACCESS_CONTROL_ALLOW_HEADERS, |
||
233 | implode(', ', $this->accessControlAllowHeaders) |
||
234 | ); |
||
235 | } |
||
236 | |||
237 | // Set response access control allowed content types header |
||
238 | if (count($this->accessControlAllowContentTypes)) { |
||
239 | output()->addHeader( |
||
240 | ResponseFieldInterface::RESPONSE_ACCESS_CONTROL_ALLOW_CONTENT_TYPES, |
||
241 | implode(', ', $this->accessControlAllowContentTypes) |
||
242 | ); |
||
243 | } |
||
244 | |||
245 | // Set response access control max age header |
||
246 | if ($this->accessControlMaxAge > 0) { |
||
247 | output()->addHeader(ResponseFieldInterface::RESPONSE_ACCESS_CONTROL_MAX_AGE, |
||
248 | $this->accessControlMaxAge); |
||
249 | } |
||
250 | } |
||
251 | |||
252 | if (input()->server('REQUEST_METHOD') === 'OPTIONS') { |
||
253 | exit(EXIT_SUCCESS); |
||
254 | } elseif ( ! in_array(input()->server('REQUEST_METHOD'), $this->accessControlAllowMethods)) { |
||
255 | $this->sendError(405); |
||
256 | } elseif (count($this->accessControlParams)) { |
||
257 | if ($this->accessControlMethod === 'GET') { |
||
258 | if (empty($_GET)) { |
||
259 | $this->sendError(400); |
||
260 | } |
||
261 | } elseif ($this->accessControlMethod === 'POST') { |
||
262 | if (empty($_POST)) { |
||
263 | $this->sendError(400); |
||
264 | } |
||
265 | } elseif (in_array($this->accessControlMethod, ['GETPOST', 'POSTGET'])) { |
||
266 | if (empty($_REQUEST)) { |
||
267 | $this->sendError(400); |
||
268 | } |
||
269 | } |
||
270 | } |
||
271 | |||
272 | if (empty($this->model)) { |
||
273 | $controllerClassName = get_called_class(); |
||
274 | $modelClassName = str_replace('Controllers', 'Models', $controllerClassName); |
||
275 | |||
276 | if (class_exists($modelClassName)) { |
||
277 | $this->model = new $modelClassName(); |
||
278 | } |
||
279 | } elseif (class_exists($this->model)) { |
||
280 | $this->model = new $this->model(); |
||
281 | } |
||
282 | } |
||
283 | |||
284 | // ------------------------------------------------------------------------ |
||
285 | |||
286 | /** |
||
287 | * Restful::index |
||
288 | */ |
||
289 | public function index() |
||
290 | { |
||
291 | if(empty($this->model)) { |
||
292 | output()->sendError(204); |
||
293 | } else { |
||
294 | if ( ! $this->model instanceof Model) { |
||
295 | $this->sendError(503, 'Model is not exists!'); |
||
296 | } |
||
297 | |||
298 | if (count($this->params)) { |
||
299 | if ($get = input()->get()) { |
||
300 | $rules = new Rules($get); |
||
301 | $rules->sets($this->rules); |
||
302 | |||
303 | if ( ! $rules->validate()) { |
||
304 | $this->sendError(400, implode(', ', $rules->getErrors())); |
||
305 | } |
||
306 | } else { |
||
307 | $this->sendError(400, 'Get parameters cannot be empty!'); |
||
308 | } |
||
309 | |||
310 | $conditions = $get->getArrayCopy(); |
||
311 | |||
312 | if (false !== ($result = $this->model->withPaging()->findWhere($conditions))) { |
||
313 | if ($result->count()) { |
||
314 | $this->sendPayload($result); |
||
315 | } else { |
||
316 | $this->sendError(204); |
||
317 | } |
||
318 | } else { |
||
319 | $this->sendError(204); |
||
320 | } |
||
321 | } elseif ($get = input()->get()) { |
||
322 | if (false !== ($result = $this->model->withPaging()->findWhere($get->getArrayCopy()))) { |
||
323 | if ($result->count()) { |
||
324 | $this->sendPayload($result); |
||
325 | } else { |
||
326 | $this->sendError(204); |
||
327 | } |
||
328 | } else { |
||
329 | $this->sendError(204); |
||
330 | } |
||
331 | } else { |
||
332 | if (false !== ($result = $this->model->allWithPaging())) { |
||
333 | $this->sendPayload($result); |
||
334 | } else { |
||
335 | $this->sendError(204); |
||
336 | } |
||
337 | } |
||
338 | } |
||
339 | } |
||
340 | |||
341 | // ------------------------------------------------------------------------ |
||
342 | |||
343 | public function sendError($code, $message = null) |
||
344 | { |
||
345 | if ($this->ajaxOnly === false) { |
||
346 | output()->setContentType('application/json'); |
||
347 | } |
||
348 | |||
349 | if (is_array($code)) { |
||
350 | if (is_numeric(key($code))) { |
||
351 | $message = reset($code); |
||
352 | $code = key($code); |
||
353 | } elseif (isset($code[ 'code' ])) { |
||
354 | $code = $code[ 'code' ]; |
||
355 | $message = $code[ 'message' ]; |
||
356 | } |
||
357 | } |
||
358 | |||
359 | output()->sendError($code, $message); |
||
360 | } |
||
361 | |||
362 | // ------------------------------------------------------------------------ |
||
363 | |||
364 | /** |
||
365 | * Restful::sendPayload |
||
366 | * |
||
367 | * @param mixed $data The payload data to-be send. |
||
368 | * @param bool $longPooling Long pooling flag mode. |
||
369 | * |
||
370 | * @throws \Exception |
||
371 | */ |
||
372 | public function sendPayload($data, $longPooling = false) |
||
373 | { |
||
374 | if ($longPooling === false) { |
||
375 | if ($this->ajaxOnly) { |
||
376 | if (is_ajax()) { |
||
377 | output()->send($data); |
||
378 | } else { |
||
379 | output()->sendError(403); |
||
380 | } |
||
381 | } else { |
||
382 | output()->send($data); |
||
383 | } |
||
384 | } elseif (is_ajax()) { |
||
385 | /** |
||
386 | * Server-side file. |
||
387 | * This file is an infinitive loop. Seriously. |
||
388 | * It gets the cache created timestamp, checks if this is larger than the timestamp of the |
||
389 | * AJAX-submitted timestamp (time of last ajax request), and if so, it sends back a JSON with the data from |
||
390 | * data.txt (and a timestamp). If not, it waits for one seconds and then start the next while step. |
||
391 | * |
||
392 | * Note: This returns a JSON, containing the content of data.txt and the timestamp of the last data.txt change. |
||
393 | * This timestamp is used by the client's JavaScript for the next request, so THIS server-side script here only |
||
394 | * serves new content after the last file change. Sounds weird, but try it out, you'll get into it really fast! |
||
395 | */ |
||
396 | |||
397 | // set php runtime to unlimited |
||
398 | set_time_limit(0); |
||
399 | |||
400 | $longPoolingCacheKey = 'long-pooling-' . session()->get('id'); |
||
401 | $longPoolingCacheData = null; |
||
402 | |||
403 | if ( ! cache()->hasItem($longPoolingCacheKey)) { |
||
404 | cache()->save(new Item($longPoolingCacheKey, $data)); |
||
405 | } |
||
406 | |||
407 | // main loop |
||
408 | while (true) { |
||
409 | // if ajax request has send a timestamp, then $lastCallTimestamp = timestamp, else $last_call = null |
||
410 | $lastCallTimestamp = (int)input()->getPost('last_call_timestamp'); |
||
411 | |||
412 | // PHP caches file data, like requesting the size of a file, by default. clearstatcache() clears that cache |
||
413 | clearstatcache(); |
||
414 | |||
415 | if (cache()->hasItem($longPoolingCacheKey)) { |
||
416 | $longPoolingCacheData = cache()->getItem($longPoolingCacheKey); |
||
417 | } |
||
418 | |||
419 | // get timestamp of when file has been changed the last time |
||
420 | $longPoolingCacheMetadata = $longPoolingCacheData->getMetadata(); |
||
421 | |||
422 | // if no timestamp delivered via ajax or data.txt has been changed SINCE last ajax timestamp |
||
423 | if ($lastCallTimestamp == null || $longPoolingCacheMetadata[ 'ctime' ] > $lastCallTimestamp) { |
||
424 | output()->send([ |
||
425 | 'timestamp' => $longPoolingCacheMetadata, |
||
426 | 'data' => $data, |
||
427 | ]); |
||
428 | } else { |
||
429 | // wait for 1 sec (not very sexy as this blocks the PHP/Apache process, but that's how it goes) |
||
430 | sleep(1); |
||
431 | continue; |
||
432 | } |
||
433 | } |
||
434 | } else { |
||
435 | output()->sendError(501); |
||
436 | } |
||
437 | } |
||
438 | |||
439 | /** |
||
440 | * Controller::create |
||
441 | * |
||
442 | * @throws \O2System\Spl\Exceptions\Logic\BadFunctionCall\BadDependencyCallException |
||
443 | * @throws \O2System\Spl\Exceptions\Logic\OutOfRangeException |
||
444 | */ |
||
445 | public function create() |
||
446 | { |
||
447 | if ($post = input()->post()) { |
||
448 | if (count($this->fillableColumnsWithRules)) { |
||
449 | $rules = new Rules($post); |
||
450 | $rules->sets($this->fillableColumnsWithRules); |
||
451 | if ( ! $rules->validate()) { |
||
452 | $this->sendError(400, $rules->displayErrors(true)); |
||
453 | } |
||
454 | } |
||
455 | |||
456 | if ( ! $this->model instanceof Model) { |
||
457 | $this->sendError(503, 'Model is not ready'); |
||
458 | } |
||
459 | |||
460 | $data = []; |
||
461 | |||
462 | if (count($this->fillableColumnsWithRules)) { |
||
463 | foreach ($this->fillableColumnsWithRules as $column) { |
||
464 | if ($post->offsetExists($column[ 'field' ])) { |
||
465 | $data[ $column[ 'field' ] ] = $post->offsetGet($column[ 'field' ]); |
||
466 | } |
||
467 | } |
||
468 | } elseif (count($this->fillableColumns)) { |
||
469 | foreach ($this->fillableColumns as $column) { |
||
470 | if ($post->offsetExists($column[ 'field' ])) { |
||
471 | $data[ $column[ 'field' ] ] = $post->offsetGet($column[ 'field' ]); |
||
472 | } |
||
473 | } |
||
474 | } else { |
||
475 | $data = $post->getArrayCopy(); |
||
476 | } |
||
477 | |||
478 | if (count($data)) { |
||
479 | $data[ 'record_create_timestamp' ] = $data[ 'record_update_timestamp' ] = timestamp(); |
||
480 | $data[ 'record_create_user' ] = $data[ 'record_update_user' ] = globals()->account->id; |
||
481 | |||
482 | if ($this->model->insert($data)) { |
||
483 | $data[ 'id' ] = $this->model->db->getLastInsertId(); |
||
484 | $this->sendPayload([ |
||
485 | 'code' => 201, |
||
486 | 'Successful insert request', |
||
487 | 'data' => $data, |
||
488 | ]); |
||
489 | } else { |
||
490 | $this->sendError(501, 'Failed update request'); |
||
491 | } |
||
492 | } else { |
||
493 | $this->sendError(400, 'Post parameters cannot be empty!'); |
||
494 | } |
||
495 | } else { |
||
496 | $this->sendError(400); |
||
497 | } |
||
498 | } |
||
499 | |||
500 | // ------------------------------------------------------------------------ |
||
501 | |||
502 | /** |
||
503 | * Restful::update |
||
504 | * |
||
505 | * @throws \O2System\Spl\Exceptions\Logic\BadFunctionCall\BadDependencyCallException |
||
506 | * @throws \O2System\Spl\Exceptions\Logic\OutOfRangeException |
||
507 | */ |
||
508 | public function update() |
||
509 | { |
||
510 | if ($post = input()->post()) { |
||
511 | if (count($this->fillableColumnsWithRules)) { |
||
512 | $rules = new Rules($post); |
||
513 | $rules->sets($this->fillableColumnsWithRules); |
||
514 | $rules->add('id', 'ID', 'required', 'ID field cannot be empty!'); |
||
515 | |||
516 | if ( ! $rules->validate()) { |
||
517 | $this->sendError(400, implode(', ', $rules->displayErrors(true))); |
||
518 | } |
||
519 | } |
||
520 | |||
521 | if ( ! $this->model instanceof Model) { |
||
522 | $this->sendError(503, 'Model is not ready'); |
||
523 | } |
||
524 | |||
525 | $data = []; |
||
526 | |||
527 | if (count($this->fillableColumnsWithRules)) { |
||
528 | foreach ($this->fillableColumnsWithRules as $column) { |
||
529 | if ($post->offsetExists($column[ 'field' ])) { |
||
530 | $data[ $column[ 'field' ] ] = $post->offsetGet($column[ 'field' ]); |
||
531 | } |
||
532 | } |
||
533 | } elseif (count($this->fillableColumns)) { |
||
534 | foreach ($this->fillableColumns as $column) { |
||
535 | if ($post->offsetExists($column[ 'field' ])) { |
||
536 | $data[ $column[ 'field' ] ] = $post->offsetGet($column[ 'field' ]); |
||
537 | } |
||
538 | } |
||
539 | } else { |
||
540 | $data = $post->getArrayCopy(); |
||
541 | } |
||
542 | |||
543 | if (count($data)) { |
||
544 | $data[ 'record_update_timestamp' ] = timestamp(); |
||
545 | $data[ 'record_update_user' ] = globals()->account->id; |
||
546 | |||
547 | if ($this->model->update($data)) { |
||
548 | $this->sendError(201, 'Successful update request'); |
||
549 | } else { |
||
550 | $this->sendError(501, 'Failed update request'); |
||
551 | } |
||
552 | } else { |
||
553 | $this->sendError(400, 'Post parameters cannot be empty!'); |
||
554 | } |
||
555 | } else { |
||
556 | $this->sendError(400); |
||
557 | } |
||
558 | } |
||
559 | |||
560 | // ------------------------------------------------------------------------ |
||
561 | |||
562 | /** |
||
563 | * Restful::delete |
||
564 | * |
||
565 | * @throws \O2System\Spl\Exceptions\Logic\OutOfRangeException |
||
566 | * @throws \O2System\Spl\Exceptions\RuntimeException |
||
567 | * @throws \Psr\Cache\InvalidArgumentException |
||
568 | */ |
||
569 | public function delete() |
||
590 | } |
||
591 | } |
||
592 | |||
593 | // ------------------------------------------------------------------------ |
||
594 | |||
595 | /** |
||
596 | * Restful::publish |
||
597 | * |
||
598 | * @throws OutOfRangeException |
||
599 | */ |
||
600 | public function publish() |
||
601 | { |
||
602 | if ($post = input()->post()) { |
||
603 | $rules = new Rules($post); |
||
604 | $rules->add('id', 'ID', 'required', 'ID field cannot be empty!'); |
||
605 | |||
606 | if ( ! $rules->validate()) { |
||
607 | $this->sendError(400, implode(', ', $rules->getErrors())); |
||
608 | } |
||
609 | |||
610 | if ( ! $this->model instanceof Model) { |
||
611 | $this->sendError(503, 'Model is not ready'); |
||
612 | } |
||
613 | |||
614 | if ($this->model->publish($post->id)) { |
||
615 | $this->sendError(201, 'Successful publish request'); |
||
616 | } else { |
||
617 | $this->sendError(501, 'Failed publish request'); |
||
618 | } |
||
619 | } else { |
||
620 | $this->sendError(400); |
||
621 | } |
||
622 | } |
||
623 | |||
624 | // ------------------------------------------------------------------------ |
||
625 | |||
626 | /** |
||
627 | * Restful::unpublish |
||
628 | * |
||
629 | * @throws OutOfRangeException |
||
630 | */ |
||
631 | public function unpublish() |
||
632 | { |
||
633 | if ($post = input()->post()) { |
||
634 | $rules = new Rules($post); |
||
635 | $rules->add('id', 'ID', 'required', 'ID field cannot be empty!'); |
||
636 | |||
637 | if ( ! $rules->validate()) { |
||
638 | $this->sendError(400, implode(', ', $rules->getErrors())); |
||
639 | } |
||
640 | |||
641 | if ( ! $this->model instanceof Model) { |
||
642 | $this->sendError(503, 'Model is not ready'); |
||
643 | } |
||
644 | |||
645 | if ($this->model->unpublish($post->id)) { |
||
646 | $this->sendError(201, 'Successful unpublish request'); |
||
647 | } else { |
||
648 | $this->sendError(501, 'Failed unpublish request'); |
||
649 | } |
||
650 | } else { |
||
651 | $this->sendError(400); |
||
652 | } |
||
653 | } |
||
654 | |||
655 | // ------------------------------------------------------------------------ |
||
656 | |||
657 | /** |
||
658 | * Controller::archive |
||
659 | * |
||
660 | * @throws OutOfRangeException |
||
661 | */ |
||
662 | public function archive() |
||
683 | } |
||
684 | } |
||
685 | } |