3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, Control Yourself, Inc.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 if (!defined('LACONICA')) { exit(1); }
22 class SubscribeAction extends Action
25 function handle($args)
27 parent::handle($args);
29 if (!common_logged_in()) {
30 $this->clientError(_('Not logged in.'));
34 $user = common_current_user();
36 if ($_SERVER['REQUEST_METHOD'] != 'POST') {
37 common_redirect(common_local_url('subscriptions', array('nickname' => $user->nickname)));
43 $token = $this->trimmed('token');
45 if (!$token || $token != common_session_token()) {
46 $this->clientError(_('There was a problem with your session token. Try again, please.'));
50 $other_id = $this->arg('subscribeto');
52 $other = User::staticGet('id', $other_id);
55 $this->clientError(_('Not a local user.'));
59 $result = subs_subscribe_to($user, $other);
62 $this->clientError($result);
66 if ($this->boolean('ajax')) {
67 $this->startHTML('text/xml;charset=utf-8');
68 $this->elementStart('head');
69 $this->element('title', null, _('Subscribed'));
70 $this->elementEnd('head');
71 $this->elementStart('body');
72 $unsubscribe = new UnsubscribeForm($this, $other->getProfile());
74 $this->elementEnd('body');
75 $this->elementEnd('html');
77 common_redirect(common_local_url('subscriptions', array('nickname' =>