X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fatompubsubscriptionfeed.php;h=6a483b95c09f7c1cfea1d7ea0749add33a300758;hb=9b7773343460514c5c5811c9add5cd96a2770c42;hp=f02c16e1f864affbf8b8149811dc75262ed83e35;hpb=627d84a1e2db2aca5d2ce1272f6e83fb7faa8ad2;p=quix0rs-gnu-social.git diff --git a/actions/atompubsubscriptionfeed.php b/actions/atompubsubscriptionfeed.php index f02c16e1f8..6a483b95c0 100644 --- a/actions/atompubsubscriptionfeed.php +++ b/actions/atompubsubscriptionfeed.php @@ -28,11 +28,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET')) { - // This check helps protect against security problems; - // your code file can't be executed directly from the web. - exit(1); -} +if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); } /** * Subscription feed class for AtomPub @@ -46,68 +42,39 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class AtompubsubscriptionfeedAction extends ApiAuthAction +class AtompubsubscriptionfeedAction extends AtompubAction { private $_profile = null; private $_subscriptions = null; - /** - * For initializing members of the class. - * - * @param array $argarray misc. arguments - * - * @return boolean true - */ - function prepare($argarray) + protected function atompubPrepare() { - parent::prepare($argarray); - $subscriber = $this->trimmed('subscriber'); $this->_profile = Profile::getKV('id', $subscriber); - if (empty($this->_profile)) { + if (!$this->_profile instanceof Profile) { // TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. // TRANS: %d is the non-existing profile ID number. throw new ClientException(sprintf(_('No such profile id: %d.'), $subscriber), 404); } - // page and count from ApiAction - - $offset = ($this->page-1) * $this->count; - - $this->_subscriptions = Subscription::bySubscriber($subscriber, - $offset, - $this->count + 1); + $this->_subscriptions = Subscription::bySubscriber($this->_profile->id, + $this->offset, + $this->limit); return true; } - /** - * Handler method - * - * @param array $argarray is ignored since it's now passed in in prepare() - * - * @return void - */ - function handle($argarray=null) + protected function handleGet() { - parent::handle($argarray); - switch ($_SERVER['REQUEST_METHOD']) { - case 'HEAD': - case 'GET': - $this->showFeed(); - break; - case 'POST': - $this->addSubscription(); - break; - default: - // TRANS: Client exception thrown when using an unsupported HTTP method. - $this->clientError(_('HTTP method not supported.'), 405); - } + $this->showFeed(); + } - return; + protected function handlePost() + { + $this->addSubscription(); } /** @@ -263,18 +230,11 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction $this->clientError(sprintf(_('Unknown profile %s.'), $person->id)); } - if (Subscription::exists($this->_profile, $profile)) { + try { + $sub = Subscription::start($this->_profile, $profile); + } catch (AlreadyFulfilledException $e) { // 409 Conflict - // TRANS: Client error displayed trying to subscribe to an already subscribed profile. - // TRANS: %s is the profile the user already has a subscription on. - $this->clientError(sprintf(_('Already subscribed to %s.'), - $person->id), - 409); - } - - if (Subscription::start($this->_profile, $profile)) { - $sub = Subscription::pkeyGet(array('subscriber' => $this->_profile->id, - 'subscribed' => $profile->id)); + $this->clientError($e->getMessage(), 409); } Event::handle('EndAtomPubNewActivity', array($activity, $sub)); @@ -291,50 +251,4 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction $this->endXML(); } } - - /** - * Return true if read only. - * - * @param array $args other arguments - * - * @return boolean is read only action? - */ - function isReadOnly(array $args=array()) - { - return $_SERVER['REQUEST_METHOD'] != 'POST'; - } - - /** - * Return last modified, if applicable. - * - * @return string last modified http header - */ - function lastModified() - { - return null; - } - - /** - * Return etag, if applicable. - * - * @return string etag http header - */ - function etag() - { - return null; - } - - /** - * Does this require authentication? - * - * @return boolean true if delete, else false - */ - function requiresAuth() - { - if ($_SERVER['REQUEST_METHOD'] == 'POST') { - return true; - } else { - return false; - } - } }