3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, StatusNet, 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('STATUSNET') && !defined('LACONICA')) { exit(1); }
22 class SubeditAction extends Action
26 function prepare($args)
28 parent::prepare($args);
30 if (!common_logged_in()) {
31 $this->clientError(_('Not logged in.'));
35 $token = $this->trimmed('token');
37 if (!$token || $token != common_session_token()) {
38 $this->clientError(_('There was a problem with your session token. '.
39 'Try again, please.'));
43 $id = $this->trimmed('profile');
46 $this->clientError(_('No profile specified.'));
50 $this->profile = Profile::staticGet('id', $id);
52 if (!$this->profile) {
53 $this->clientError(_('No profile with that ID.'));
60 function handle($args)
62 parent::handle($args);
63 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
64 $cur = common_current_user();
66 $sub = Subscription::pkeyGet(array('subscriber' => $cur->id,
67 'subscribed' => $this->profile->id));
70 $this->clientError(_('You are not subscribed to that profile.'));
76 $sub->jabber = $this->boolean('jabber');
77 $sub->sms = $this->boolean('sms');
79 $result = $sub->update($orig);
82 common_log_db_error($sub, 'UPDATE', __FILE__);
83 $this->serverError(_('Could not save subscription.'));
87 common_redirect(common_local_url('subscriptions',
88 array('nickname' => $cur->nickname)),