]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apitimelineuser.php
Merge branch 'testing'
[quix0rs-gnu-social.git] / actions / apitimelineuser.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Show a user's timeline
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    Craig Andrews <candrews@integralblue.com>
25  * @author    Evan Prodromou <evan@status.net>
26  * @author    Jeffery To <jeffery.to@gmail.com>
27  * @author    mac65 <mac65@mac65.com>
28  * @author    Mike Cochrane <mikec@mikenz.geek.nz>
29  * @author    Robin Millette <robin@millette.info>
30  * @author    Zach Copley <zach@status.net>
31  * @copyright 2009 StatusNet, Inc.
32  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
33  * @link      http://status.net/
34  */
35
36 if (!defined('STATUSNET')) {
37     exit(1);
38 }
39
40 require_once INSTALLDIR . '/lib/apibareauth.php';
41
42 /**
43  * Returns the most recent notices (default 20) posted by the authenticating
44  * user. Another user's timeline can be requested via the id parameter. This
45  * is the API equivalent of the user profile web page.
46  *
47  * @category API
48  * @package  StatusNet
49  * @author   Craig Andrews <candrews@integralblue.com>
50  * @author   Evan Prodromou <evan@status.net>
51  * @author   Jeffery To <jeffery.to@gmail.com>
52  * @author   mac65 <mac65@mac65.com>
53  * @author   Mike Cochrane <mikec@mikenz.geek.nz>
54  * @author   Robin Millette <robin@millette.info>
55  * @author   Zach Copley <zach@status.net>
56  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
57  * @link     http://status.net/
58  */
59
60 class ApiTimelineUserAction extends ApiBareAuthAction
61 {
62
63     var $notices = null;
64
65     /**
66      * Take arguments for running
67      *
68      * @param array $args $_REQUEST args
69      *
70      * @return boolean success flag
71      *
72      */
73
74     function prepare($args)
75     {
76         parent::prepare($args);
77
78         $this->user = $this->getTargetUser($this->arg('id'));
79
80         if (empty($this->user)) {
81             $this->clientError(_('No such user.'), 404, $this->format);
82             return;
83         }
84
85         $this->notices = $this->getNotices();
86
87         return true;
88     }
89
90     /**
91      * Handle the request
92      *
93      * Just show the notices
94      *
95      * @param array $args $_REQUEST data (unused)
96      *
97      * @return void
98      */
99
100     function handle($args)
101     {
102         parent::handle($args);
103         $this->showTimeline();
104     }
105
106     /**
107      * Show the timeline of notices
108      *
109      * @return void
110      */
111
112     function showTimeline()
113     {
114         $profile = $this->user->getProfile();
115
116         // We'll use the shared params from the Atom stub
117         // for other feed types.
118         $atom = new AtomUserNoticeFeed($this->user);
119         $title      = $atom->title;
120         $link       = common_local_url(
121             'showstream',
122             array('nickname' => $this->user->nickname)
123         );
124         $subtitle = $atom->subtitle;
125         $logo = $atom->logo;
126
127         // FriendFeed's SUP protocol
128         // Also added RSS and Atom feeds
129
130         $suplink = common_local_url('sup', null, null, $this->user->id);
131         header('X-SUP-ID: ' . $suplink);
132
133         switch($this->format) {
134         case 'xml':
135             $this->showXmlTimeline($this->notices);
136             break;
137         case 'rss':
138             $this->showRssTimeline(
139                 $this->notices, $title, $link,
140                 $subtitle, $suplink, $logo
141             );
142             break;
143         case 'atom':
144
145             header('Content-Type: application/atom+xml; charset=utf-8');
146
147             $id = $this->arg('id');
148             $aargs = array('format' => 'atom');
149             if (!empty($id)) {
150                 $aargs['id'] = $id;
151             }
152             $self = $this->getSelfUri('ApiTimelineUser', $aargs);
153             $atom->setId($self);
154             $atom->setSelfLink($self);
155
156             $atom->addEntryFromNotices($this->notices);
157
158             $this->raw($atom->getString());
159
160             break;
161         case 'json':
162             $this->showJsonTimeline($this->notices);
163             break;
164         default:
165             $this->clientError(_('API method not found.'), $code = 404);
166             break;
167         }
168
169     }
170
171     /**
172      * Get notices
173      *
174      * @return array notices
175      */
176
177     function getNotices()
178     {
179         $notices = array();
180
181         $notice = $this->user->getNotices(
182             ($this->page-1) * $this->count, $this->count,
183             $this->since_id, $this->max_id
184         );
185
186         while ($notice->fetch()) {
187             $notices[] = clone($notice);
188         }
189
190         return $notices;
191     }
192
193     /**
194      * Is this action read only?
195      *
196      * @param array $args other arguments
197      *
198      * @return boolean true
199      */
200
201     function isReadOnly($args)
202     {
203         return true;
204     }
205
206     /**
207      * When was this feed last modified?
208      *
209      * @return string datestamp of the latest notice in the stream
210      */
211
212     function lastModified()
213     {
214         if (!empty($this->notices) && (count($this->notices) > 0)) {
215             return strtotime($this->notices[0]->created);
216         }
217
218         return null;
219     }
220
221     /**
222      * An entity tag for this stream
223      *
224      * Returns an Etag based on the action name, language, user ID, and
225      * timestamps of the first and last notice in the timeline
226      *
227      * @return string etag
228      */
229
230     function etag()
231     {
232         if (!empty($this->notices) && (count($this->notices) > 0)) {
233
234             $last = count($this->notices) - 1;
235
236             return '"' . implode(
237                 ':',
238                 array($this->arg('action'),
239                       common_language(),
240                       $this->user->id,
241                       strtotime($this->notices[0]->created),
242                       strtotime($this->notices[$last]->created))
243             )
244             . '"';
245         }
246
247         return null;
248     }
249
250 }