]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apifriendstimeline.php
New actions for /statuses/friends and /statuses/followers + social graph methods
[quix0rs-gnu-social.git] / actions / apifriendstimeline.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Show the friends 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    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/apibareauth.php';
35
36 /**
37  * Returns the most recent notices (default 20) posted by the target user.
38  * This is the equivalent of 'You and friends' page accessed via Web.
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 ApiFriendsTimelineAction extends ApiBareAuthAction
48 {
49
50     var $user    = null;
51     var $notices = null;
52
53     /**
54      * Take arguments for running
55      *
56      * @param array $args $_REQUEST args
57      *
58      * @return boolean success flag
59      *
60      */
61
62     function prepare($args)
63     {
64         parent::prepare($args);
65
66         $this->page     = (int)$this->arg('page', 1);
67         $this->count    = (int)$this->arg('count', 20);
68         $this->max_id   = (int)$this->arg('max_id', 0);
69         $this->since_id = (int)$this->arg('since_id', 0);
70         $this->since    = $this->arg('since');
71
72         if ($this->requiresAuth()) {
73             if ($this->checkBasicAuthUser() == false) {
74                 return;
75             }
76         }
77
78         $this->user = $this->getTargetUser($this->arg('id'));
79
80         if (empty($this->user)) {
81             $this->clientError(_('No such user!'), 404, $this->arg('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         $sitename   = common_config('site', 'name');
116         $title      = sprintf(_("%s and friends"), $this->user->nickname);
117         $taguribase = common_config('integration', 'taguri');
118         $id         = "tag:$taguribase:FriendsTimeline:" . $this->user->id;
119         $link       = common_local_url(
120             'all', array('nickname' => $this->user->nickname)
121         );
122         $subtitle   = sprintf(
123             _('Updates from %1$s and friends on %2$s!'),
124             $this->user->nickname, $sitename
125         );
126
127         switch($this->arg('format')) {
128         case 'xml':
129             $this->show_xml_timeline($this->notices);
130             break;
131         case 'rss':
132             $this->show_rss_timeline($this->notices, $title, $link, $subtitle);
133             break;
134         case 'atom':
135
136             $target_id = $this->arg('id');
137
138             if (isset($target_id)) {
139                 $selfuri = common_root_url() .
140                     'api/statuses/friends_timeline/' .
141                     $target_id . '.atom';
142             } else {
143                 $selfuri = common_root_url() .
144                     'api/statuses/friends_timeline.atom';
145             }
146
147             $this->show_atom_timeline(
148                 $this->notices, $title, $id, $link,
149                 $subtitle, null, $selfuri
150             );
151             break;
152         case 'json':
153             $this->show_json_timeline($this->notices);
154             break;
155         default:
156             $this->clientError(_('API method not found!'), $code = 404);
157             break;
158         }
159     }
160
161     /**
162      * Get notices
163      *
164      * @return array notices
165      */
166
167     function getNotices()
168     {
169         $notices = array();
170
171         if (!empty($this->auth_user) && $this->auth_user->id == $this->user->id) {
172             $notice = $this->user->noticeInbox(
173                 ($this->page-1) * $this->count,
174                 $this->count, $this->since_id,
175                 $this->max_id, $this->since
176             );
177         } else {
178             $notice = $this->user->noticesWithFriends(
179                 ($this->page-1) * $this->count,
180                 $this->count, $this->since_id,
181                 $this->max_id, $this->since
182             );
183         }
184
185         while ($notice->fetch()) {
186             $notices[] = clone($notice);
187         }
188
189         return $notices;
190     }
191
192     /**
193      * Is this action read only?
194      *
195      * @param array $args other arguments
196      *
197      * @return boolean true
198      */
199
200     function isReadOnly($args)
201     {
202         return true;
203     }
204
205     /**
206      * When was this feed last modified?
207      *
208      * @return string datestamp of the latest notice in the stream
209      */
210
211     function lastModified()
212     {
213         if (!empty($this->notices) && (count($this->notices) > 0)) {
214             return strtotime($this->notices[0]->created);
215         }
216
217         return null;
218     }
219
220     /**
221      * An entity tag for this stream
222      *
223      * Returns an Etag based on the action name, language, user ID, and
224      * timestamps of the first and last notice in the timeline
225      *
226      * @return string etag
227      */
228
229     function etag()
230     {
231         if (!empty($this->notices) && (count($this->notices) > 0)) {
232
233             $last = count($this->notices) - 1;
234
235             return implode(
236                 ':',
237                 array($this->arg('action'),
238                       common_language(),
239                       $this->user->id,
240                       strtotime($this->notices[0]->created),
241                       strtotime($this->notices[$last]->created))
242             )
243             . '"';
244         }
245
246         return null;
247     }
248
249 }