]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/removepeopletag.php
Merge branch '1.0.x' of git://gitorious.org/statusnet/mainline
[quix0rs-gnu-social.git] / actions / removepeopletag.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008-2010, StatusNet, Inc.
5  *
6  * Subscription action.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Affero General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Affero General Public License for more details.
17  *
18  * You should have received a copy of the GNU Affero General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  *
21  * PHP version 5
22  *
23  * @category  Action
24  * @package   StatusNet
25  * @author    Shashi Gowda <connect2shashi@gmail.com>
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR . '/lib/togglepeopletag.php';
35
36 /**
37  * Subscription action
38  *
39  * Subscribing to a profile. Does not work for OMB 0.1 remote subscriptions,
40  * but may work for other remote subscription protocols, like OStatus.
41  *
42  * Takes parameters:
43  *
44  *    - subscribeto: a profile ID
45  *    - token: session token to prevent CSRF attacks
46  *    - ajax: boolean; whether to return Ajax or full-browser results
47  *
48  * Only works if the current user is logged in.
49  *
50  * @category  Action
51  * @package   StatusNet
52  * @author    Shashi Gowda <connect2shashi@gmail.com>
53  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
54  * @link      http://status.net/
55  */
56 class RemovepeopletagAction extends Action
57 {
58     var $user;
59     var $tagged;
60     var $peopletag;
61
62     /**
63      * Check pre-requisites and instantiate attributes
64      *
65      * @param Array $args array of arguments (URL, GET, POST)
66      *
67      * @return boolean success flag
68      */
69     function prepare($args)
70     {
71         parent::prepare($args);
72
73         // CSRF protection
74
75         $token = $this->trimmed('token');
76
77         if (!$token || $token != common_session_token()) {
78             // TRANS: Client error displayed when the session token does not match or is not given.
79             $this->clientError(_('There was a problem with your session token.'.
80                                  ' Try again, please.'));
81             return false;
82         }
83
84         // Only for logged-in users
85
86         $this->user = common_current_user();
87
88         if (empty($this->user)) {
89             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
90             $this->clientError(_('Not logged in.'));
91             return false;
92         }
93
94         // Profile to subscribe to
95
96         $tagged_id = $this->arg('tagged');
97
98         $this->tagged = Profile::staticGet('id', $tagged_id);
99
100         if (empty($this->tagged)) {
101             // TRANS: Client error displayed when referring to a non-existing profile.
102             $this->clientError(_('No such profile.'));
103             return false;
104         }
105
106         $id = $this->arg('peopletag_id');
107         $this->peopletag = Profile_list::staticGet('id', $id);
108
109         if (empty($this->peopletag)) {
110             // TRANS: Client error displayed trying to reference a non-existing list.
111             $this->clientError(_('No such list.'));
112             return false;
113         }
114
115         // OMB 0.1 doesn't have a mechanism for local-server-
116         // originated tag.
117
118         $omb01 = Remote_profile::staticGet('id', $tagged_id);
119
120         if (!empty($omb01)) {
121             // TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile.
122             $this->clientError(_('You cannot (un)list an OMB 0.1 '.
123                                  'remote profile with this action.'));
124             return false;
125         }
126
127         return true;
128     }
129
130     /**
131      * Handle request
132      *
133      * Does the subscription and returns results.
134      *
135      * @param Array $args unused.
136      *
137      * @return void
138      */
139     function handle($args)
140     {
141         // Throws exception on error
142
143         $ptag = Profile_tag::unTag($this->user->id, $this->tagged->id,
144                                 $this->peopletag->tag);
145
146         if (!$ptag) {
147             $user = User::staticGet('id', $this->tagged->id);
148             if ($user) {
149                 $this->clientError(
150                         // TRANS: Client error displayed when an unknown error occurs while delisting a user.
151                         // TRANS: %s is a username.
152                         sprintf(_('There was an unexpected error while delisting %s.'),
153                         $user->nickname));
154             } else {
155                 // TRANS: Client error displayed when an unknown error occurs while listing a user.
156                 // TRANS: %s is a profile URL.
157                 $this->clientError(sprintf(_('There was a problem listing %s. ' .
158                                       'The remote server is probably not responding correctly, ' .
159                                       'please try retrying later.'), $this->profile->profileurl));
160             }
161             return false;
162         }
163         if ($this->boolean('ajax')) {
164             $this->startHTML('text/xml;charset=utf-8');
165             $this->elementStart('head');
166             // TRANS: Title after removing a user from a list.
167             $this->element('title', null, _('Unlisted'));
168             $this->elementEnd('head');
169             $this->elementStart('body');
170             $unsubscribe = new TagButton($this, $this->tagged, $this->peopletag);
171             $unsubscribe->show();
172             $this->elementEnd('body');
173             $this->elementEnd('html');
174         } else {
175             $url = common_local_url('subscriptions',
176                                     array('nickname' => $this->user->nickname));
177             common_redirect($url, 303);
178         }
179     }
180 }