]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apiusershow.php
$format is used by every API action. Set it in the base class.
[quix0rs-gnu-social.git] / actions / apiusershow.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Show a user's profile information
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  API
23  * @package   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @copyright 2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR.'/lib/api.php';
35
36 /**
37  * Ouputs information for a user, specified by ID or screen name.
38  * The user's most recent status will be returned inline.
39  *
40  * @category API
41  * @package  StatusNet
42  * @author   Zach Copley <zach@status.net>
43  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44  * @link     http://status.net/
45  */
46
47 class ApiUserShowAction extends TwitterApiAction
48 {
49     var $user   = null;
50
51     /**
52      * Take arguments for running
53      *
54      * @param array $args $_REQUEST args
55      *
56      * @return boolean success flag
57      *
58      */
59
60     function prepare($args)
61     {
62         parent::prepare($args);
63
64         $email = $this->arg('email');
65
66         // XXX: email field deprecated in Twitter's API
67
68         if (!empty($email)) {
69             $this->user = User::staticGet('email', $email);
70         } else {
71             $this->user = $this->getTargetUser($this->arg('id'));
72         }
73
74         return true;
75     }
76
77     /**
78      * Handle the request
79      *
80      * Check the format and show the user info
81      *
82      * @param array $args $_REQUEST data (unused)
83      *
84      * @return void
85      */
86
87     function handle($args)
88     {
89         parent::handle($args);
90
91         if (empty($this->user)) {
92             $this->clientError(_('Not found.'), 404, $this->format);
93             return;
94         }
95
96         if (!in_array($this->format, array('xml', 'json'))) {
97             $this->clientError(_('API method not found!'), $code = 404);
98             return;
99         }
100
101         $profile = $this->user->getProfile();
102
103         if (empty($profile)) {
104             $this->clientError(_('User has no profile.'));
105             return;
106         }
107
108         $twitter_user = $this->twitter_user_array($this->user->getProfile(), true);
109
110         if ($this->format == 'xml') {
111             $this->init_document('xml');
112             $this->show_twitter_xml_user($twitter_user);
113             $this->end_document('xml');
114         } elseif ($this->format == 'json') {
115             $this->init_document('json');
116             $this->show_json_objects($twitter_user);
117             $this->end_document('json');
118         }
119
120     }
121
122 }