123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); }
- abstract class AtompubAction extends ApiAuthAction
- {
- protected function prepare(array $args=array())
- {
- parent::prepare($args);
- return $this->atompubPrepare();
- }
- protected function atompubPrepare() {
- return true;
- }
- protected function handle()
- {
- parent::handle();
- switch ($_SERVER['REQUEST_METHOD']) {
- case 'HEAD':
- $this->handleHead();
- break;
- case 'GET':
- $this->handleGet();
- break;
- case 'POST':
- $this->handlePost();
- break;
- case 'DELETE':
- $this->handleDelete();
- break;
- default:
-
- throw new ClientException(_('HTTP method not supported.'), 405);
- }
- return true;
- }
- protected function handleHead()
- {
- $this->handleGet();
- }
- protected function handleGet()
- {
- throw new ClientException(_('HTTP method not supported.'), 405);
- }
- protected function handlePost()
- {
- throw new ClientException(_('HTTP method not supported.'), 405);
- }
- protected function handleDelete()
- {
- throw new ClientException(_('HTTP method not supported.'), 405);
- }
- function isReadOnly($args)
- {
-
- return in_array($_SERVER['REQUEST_METHOD'], array('GET', 'HEAD'));
- }
- function requiresAuth()
- {
-
- return !in_array($_SERVER['REQUEST_METHOD'], array('GET', 'HEAD'));
- }
- }
|