]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/subscribepeopletag.php
Merge branch 'master' into 1.0.x
[quix0rs-gnu-social.git] / actions / subscribepeopletag.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Subscribe to a peopletag
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Peopletag
23  * @package   StatusNet
24  * @author    Shashi Gowda <connect2shashi@gmail.com>
25  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
26  * @link      http://status.net/
27  */
28
29 if (!defined('STATUSNET') && !defined('LACONICA')) {
30     exit(1);
31 }
32
33 /**
34  * Subscribe to a peopletag
35  *
36  * This is the action for subscribing to a peopletag. It works more or less like the join action
37  * for groups.
38  *
39  * @category Peopletag
40  * @package  StatusNet
41  * @author   Shashi Gowda <connect2shashi@gmail.com>
42  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43  * @link     http://status.net/
44  */
45 class SubscribepeopletagAction extends Action
46 {
47     var $peopletag = null;
48     var $tagger = null;
49
50     /**
51      * Prepare to run
52      */
53     function prepare($args)
54     {
55         parent::prepare($args);
56
57         if (!common_logged_in()) {
58             // TRANS: Client error displayed when trying to perform an action while not logged in.
59             $this->clientError(_('You must be logged in to unsubscribe from a list.'));
60             return false;
61         }
62         // Only allow POST requests
63
64         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
65             // TRANS: Client error displayed when trying to use another method than POST.
66             $this->clientError(_('This action only accepts POST requests.'));
67             return false;
68         }
69
70         // CSRF protection
71
72         $token = $this->trimmed('token');
73
74         if (!$token || $token != common_session_token()) {
75             // TRANS: Client error displayed when the session token does not match or is not given.
76             $this->clientError(_('There was a problem with your session token.'.
77                                  ' Try again, please.'));
78             return false;
79         }
80
81         $tagger_arg = $this->trimmed('tagger');
82         $tag_arg = $this->trimmed('tag');
83
84         $id = intval($this->arg('id'));
85         if ($id) {
86             $this->peopletag = Profile_list::staticGet('id', $id);
87         } else {
88             // TRANS: Client error displayed when trying to perform an action without providing an ID.
89             $this->clientError(_('No ID given.'), 404);
90             return false;
91         }
92
93         if (!$this->peopletag || $this->peopletag->private) {
94             // TRANS: Client error displayed trying to reference a non-existing list.
95             $this->clientError(_('No such list.'), 404);
96             return false;
97         }
98
99         $this->tagger = Profile::staticGet('id', $this->peopletag->tagger);
100
101         return true;
102     }
103
104     /**
105      * Handle the request
106      *
107      * On POST, add the current user to the group
108      *
109      * @param array $args unused
110      *
111      * @return void
112      */
113
114     function handle($args)
115     {
116         parent::handle($args);
117
118         $cur = common_current_user();
119
120         try {
121             Profile_tag_subscription::add($this->peopletag, $cur);
122         } catch (Exception $e) {
123             // TRANS: Server error displayed subscribing to a list fails.
124             // TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period).
125             $this->serverError(sprintf(_('Could not subscribe user %1$s to list %2$s: %3$s'),
126                                        $cur->nickname, $this->peopletag->tag), $e->getMessage());
127         }
128
129         if ($this->boolean('ajax')) {
130             $this->startHTML('text/xml;charset=utf-8');
131             $this->elementStart('head');
132             // TRANS: Title of form to subscribe to a list.
133             // TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname.
134             $this->element('title', null, sprintf(_('%1$s subscribed to list %2$s by %3$s'),
135                                                   $cur->nickname,
136                                                   $this->peopletag->tag,
137                                                   $this->tagger->nickname));
138             $this->elementEnd('head');
139             $this->elementStart('body');
140             $lf = new UnsubscribePeopletagForm($this, $this->peopletag);
141             $lf->show();
142             $this->elementEnd('body');
143             $this->elementEnd('html');
144         } else {
145             common_redirect(common_local_url('peopletagsubscribers',
146                                 array('tagger' => $this->tagger->nickname,
147                                       'tag' =>$this->peopletag->tag)),
148                             303);
149         }
150     }
151 }