]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/subedit.php
set jabber and sms flags on subscriptions
[quix0rs-gnu-social.git] / actions / subedit.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, 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('LACONICA')) { exit(1); }
21
22 class SubeditAction extends Action {
23
24     var $profile = NULL;
25
26     function prepare($args) {
27
28         parent::prepare($args);
29
30         if (!common_logged_in()) {
31             $this->client_error(_('Not logged in.'));
32             return false;
33         }
34
35                 $token = $this->trimmed('token');
36
37                 if (!$token || $token != common_session_token()) {
38                         $this->client_error(_('There was a problem with your session token. Try again, please.'));
39                         return;
40                 }
41
42         $id = $this->trimmed('profile');
43
44         if (!$id) {
45             $this->client_error(_('No profile specified.'));
46             return false;
47         }
48
49         $this->profile = Profile::staticGet('id', $id);
50
51         if (!$this->profile) {
52             $this->client_error(_('No profile with that ID.'));
53             return false;
54         }
55
56         return true;
57     }
58
59     function handle($args) {
60         parent::handle($args);
61         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
62             $cur = common_current_user();
63
64             $sub = Subscription::pkeyGet(array('subscriber' => $cur->id,
65                                                'subscribed' => $this->profile->id));
66
67             if (!$sub) {
68                 $this->client_error(_('You are not subscribed to that profile.'));
69                 return false;
70             }
71
72             $orig = clone($sub);
73
74             $sub->jabber = $this->boolean('jabber');
75             $sub->sms = $this->boolean('sms');
76
77             $result = $sub->update($orig);
78
79             if (!$result) {
80                 common_log_db_error($sub, 'UPDATE', __FILE__);
81                 $this->server_error(_('Could not save subscription.'));
82                 return false;
83             }
84
85             common_redirect(common_local_url('subscriptions',
86                                              array('nickname' => $cur->nickname)));
87         }
88     }
89 }