]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/profiletagbyid.php
Merge branch '1.0.x' into people_tags_rebase
[quix0rs-gnu-social.git] / actions / profiletagbyid.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Permalink for 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 class ProfiletagbyidAction extends Action
34 {
35     /** peopletag we're viewing. */
36     var $peopletag = null;
37
38     /**
39      * Is this page read-only?
40      *
41      * @return boolean true
42      */
43
44     function isReadOnly($args)
45     {
46         return true;
47     }
48
49     function prepare($args)
50     {
51         parent::prepare($args);
52
53         $id = $this->arg('id');
54         $tagger_id = $this->arg('tagger_id');
55
56         if (!$id) {
57             $this->clientError(_('No ID.'));
58             return false;
59         }
60
61         common_debug("Peopletag id $id by user id $tagger_id");
62
63         $this->peopletag = Profile_list::staticGet('id', $id);
64
65         if (!$this->peopletag) {
66             $this->clientError(_('No such people tag.'), 404);
67             return false;
68         }
69
70         $user = User::staticGet('id', $tagger_id);
71         if (!$user) {
72             // remote peopletag, permanently redirect
73             common_redirect($this->peopletag->permalink(), 301);
74         }
75
76         return true;
77     }
78
79     /**
80      * Handle the request
81      *
82      * Shows a profile for the group, some controls, and a list of
83      * group notices.
84      *
85      * @return void
86      */
87
88     function handle($args)
89     {
90         common_redirect($this->peopletag->homeUrl(), 303);
91     }
92 }