]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apilistsubscriber.php
Twitter lists compatible people tags api
[quix0rs-gnu-social.git] / actions / apilistsubscriber.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Check if a user is subscribed to a list
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  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
25  * @link      http://status.net/
26  */
27
28 if (!defined('STATUSNET')) {
29     exit(1);
30 }
31
32 require_once INSTALLDIR . '/lib/apiauth.php';
33
34 class ApiListSubscriberAction extends ApiBareAuthAction
35 {
36     var $list   = null;
37
38     function prepare($args)
39     {
40         parent::prepare($args);
41
42         $this->user = $this->getTargetUser($this->arg('id'));
43         $this->list = $this->getTargetList($this->arg('user'), $this->arg('list_id'));
44
45         if (empty($this->list)) {
46             $this->clientError(_('Not found'), 404, $this->format);
47             return false;
48         }
49
50         if (empty($this->user)) {
51             $this->clientError(_('No such user'), 404, $this->format);
52             return false;
53         }
54         return true;
55     }
56
57     function handle($args)
58     {
59         parent::handle($args);
60
61         $arr = array('profile_tag_id' => $this->list->id,
62                       'profile_id' => $this->user->id);
63         $sub = Profile_tag_subscription::pkeyGet($arr);
64
65         if(empty($sub)) {
66             $this->clientError(
67                 _('The specified user is not a subscriber of this list'),
68                 400,
69                 $this->format
70             );
71         }
72
73         $user = $this->twitterUserArray($this->user->getProfile(), true);
74
75         switch($this->format) {
76         case 'xml':
77             $this->showTwitterXmlUser($user, 'user', true);
78             break;
79         case 'json':
80             $this->showSingleJsonUser($user);
81             break;
82         default:
83             $this->clientError(
84                 _('API method not found.'),
85                 404,
86                 $this->format
87             );
88             break;
89         }
90     }
91 }