]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/subedit.php
Merge activity plugin into mainline
[quix0rs-gnu-social.git] / actions / subedit.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 // @todo FIXME: Documentation needed.
23 class SubeditAction extends Action
24 {
25     var $profile = null;
26
27     function prepare($args)
28     {
29         parent::prepare($args);
30
31         if (!common_logged_in()) {
32             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
33             $this->clientError(_('Not logged in.'));
34             return false;
35         }
36
37         $token = $this->trimmed('token');
38
39         if (!$token || $token != common_session_token()) {
40             // TRANS: Client error displayed when the session token does not match or is not given.
41             $this->clientError(_('There was a problem with your session token. '.
42                                  'Try again, please.'));
43             return false;
44         }
45
46         $id = $this->trimmed('profile');
47
48         if (!$id) {
49             // TRANS: Client error displayed trying a change a subscription without providing a profile.
50             $this->clientError(_('No profile specified.'));
51             return false;
52         }
53
54         $this->profile = Profile::staticGet('id', $id);
55
56         if (!$this->profile) {
57             // TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
58             $this->clientError(_('No profile with that ID.'));
59             return false;
60         }
61
62         return true;
63     }
64
65     function handle($args)
66     {
67         parent::handle($args);
68         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
69             $cur = common_current_user();
70
71             $sub = Subscription::pkeyGet(array('subscriber' => $cur->id,
72                                                'subscribed' => $this->profile->id));
73
74             if (!$sub) {
75                 // TRANS: Client error displayed trying a change a subscription for a non-subscribed profile.
76                 $this->clientError(_('You are not subscribed to that profile.'));
77                 return false;
78             }
79
80             $orig = clone($sub);
81
82             $sub->jabber = $this->boolean('jabber');
83             $sub->sms = $this->boolean('sms');
84
85             $result = $sub->update($orig);
86
87             if (!$result) {
88                 common_log_db_error($sub, 'UPDATE', __FILE__);
89                 // TRANS: Server error displayed when updating a subscription fails with a database error.
90                 $this->serverError(_('Could not save subscription.'));
91                 return false;
92             }
93
94             common_redirect(common_local_url('subscriptions',
95                                              array('nickname' => $cur->nickname)),
96                             303);
97         }
98     }
99 }