]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apilistmemberships.php
Removing unnecessary require_once lines (autoload!)
[quix0rs-gnu-social.git] / actions / apilistmemberships.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Get a list of lists a user belongs to. (people tags for a user)
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    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')) {
30     exit(1);
31 }
32
33 /**
34  * Action handler for API method to list lists a user belongs to.
35  * (people tags for a user)
36  *
37  * @category API
38  * @package  StatusNet
39  * @author   Shashi Gowda <connect2shashi@gmail.com>
40  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41  * @link     http://status.net/
42  * @see      ApiBareAuthAction
43  */
44 class ApiListMembershipsAction extends ApiBareAuthAction
45 {
46     var $lists = array();
47     var $cursor = -1;
48     var $next_cursor = 0;
49     var $prev_cursor = 0;
50
51     /**
52      * Prepare for running the action
53      * Take arguments for running:s
54      *
55      * @param array $args $_REQUEST args
56      *
57      * @return boolean success flag
58      *
59      */
60     function prepare($args)
61     {
62         parent::prepare($args);
63
64         $this->cursor = (int) $this->arg('cursor', -1);
65         $this->user = $this->getTargetUser($this->arg('user'));
66
67         if (empty($this->user)) {
68             // TRANS: Client error displayed trying to perform an action related to a non-existing user.
69             $this->clientError(_('No such user.'), 404, $this->format);
70             return;
71         }
72
73         $this->getLists();
74
75         return true;
76     }
77
78     /**
79      * Handle the request
80      *
81      * Show the lists
82      *
83      * @param array $args $_REQUEST data (unused)
84      *
85      * @return void
86      */
87     function handle($args)
88     {
89         parent::handle($args);
90
91         switch($this->format) {
92         case 'xml':
93             $this->showXmlLists($this->lists, $this->next_cursor, $this->prev_cursor);
94             break;
95         case 'json':
96             $this->showJsonLists($this->lists, $this->next_cursor, $this->prev_cursor);
97             break;
98         default:
99             $this->clientError(
100                 // TRANS: Client error displayed when coming across a non-supported API method.
101                 _('API method not found.'),
102                 400,
103                 $this->format
104             );
105             break;
106         }
107     }
108
109     /**
110      * Return true if read only.
111      *
112      * MAY override
113      *
114      * @param array $args other arguments
115      *
116      * @return boolean is read only action?
117      */
118     function isReadOnly($args)
119     {
120         return true;
121     }
122
123     function getLists()
124     {
125         $profile = $this->user->getProfile();
126         $fn = array($profile, 'getOtherTags');
127
128         # 20 lists
129         list($this->lists, $this->next_cursor, $this->prev_cursor) =
130                 Profile_list::getAtCursor($fn, array($this->auth_user), $this->cursor, 20);
131     }
132 }