]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/userbyid.php
Type-hint is array here.
[quix0rs-gnu-social.git] / actions / userbyid.php
1 <?php
2 /**
3  * User by ID action class.
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @author   Robin Millette <millette@status.net>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://status.net/
13
14  * StatusNet - the distributed open-source microblogging tool
15  * Copyright (C) 2008, 2009, StatusNet, Inc.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU Affero General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU Affero General Public License for more details.
26  *
27  * You should have received a copy of the GNU Affero General Public License
28  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
29  */
30
31 if (!defined('GNUSOCIAL')) { exit(1); }
32
33 /**
34  * User by ID action class.
35  *
36  * @category Action
37  * @package  StatusNet
38  * @author   Evan Prodromou <evan@status.net>
39  * @author   Robin Millette <millette@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41  * @link     http://status.net/
42  */
43 class UserbyidAction extends ShowstreamAction
44 {
45     protected function doPreparation()
46     {
47         // accessing by ID just requires an ID, not a nickname
48         $this->target = Profile::getByID($this->trimmed('id'));
49
50         // For local users when accessed by id number, redirect with
51         // the nickname as argument instead of id.
52         if ($this->target->isLocal()) {
53             // Support redirecting to FOAF rdf/xml if the agent prefers it...
54             // Internet Explorer doesn't specify "text/html" and does list "*/*"
55             // at least through version 8. We need to list text/html up front to
56             // ensure that only user-agents who specifically ask for RDF get it.
57             $page_prefs = 'text/html,application/xhtml+xml,application/rdf+xml,application/xml;q=0.3,text/xml;q=0.2';
58             $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : null;
59             $type       = common_negotiate_type(common_accept_to_prefs($httpaccept),
60                                                 common_accept_to_prefs($page_prefs));
61             $page       = $type === 'application/rdf+xml' ? 'foaf' : 'showstream';
62             $url        = common_local_url($page, array('nickname' => $this->target->getNickname()));
63             common_redirect($url, 303);
64         }
65     }
66 }