]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apitimelinefriends.php
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
[quix0rs-gnu-social.git] / actions / apitimelinefriends.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    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 target user.
44  * This is the equivalent of 'You and friends' page accessed via Web.
45  *
46  * @category API
47  * @package  StatusNet
48  * @author   Craig Andrews <candrews@integralblue.com>
49  * @author   Evan Prodromou <evan@status.net>
50  * @author   Jeffery To <jeffery.to@gmail.com>
51  * @author   mac65 <mac65@mac65.com>
52  * @author   Mike Cochrane <mikec@mikenz.geek.nz>
53  * @author   Robin Millette <robin@millette.info>
54  * @author   Zach Copley <zach@status.net>
55  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
56  * @link     http://status.net/
57  */
58
59 class ApiTimelineFriendsAction extends ApiBareAuthAction
60 {
61     var $notices  = null;
62
63     /**
64      * Take arguments for running
65      *
66      * @param array $args $_REQUEST args
67      *
68      * @return boolean success flag
69      *
70      */
71
72     function prepare($args)
73     {
74         parent::prepare($args);
75         $this->user = $this->getTargetUser($this->arg('id'));
76
77         if (empty($this->user)) {
78             $this->clientError(_('No such user.'), 404, $this->format);
79             return;
80         }
81
82         $this->notices = $this->getNotices();
83
84         return true;
85     }
86
87     /**
88      * Handle the request
89      *
90      * Just show the notices
91      *
92      * @param array $args $_REQUEST data (unused)
93      *
94      * @return void
95      */
96
97     function handle($args)
98     {
99         parent::handle($args);
100         $this->showTimeline();
101     }
102
103     /**
104      * Show the timeline of notices
105      *
106      * @return void
107      */
108
109     function showTimeline()
110     {
111         $profile    = $this->user->getProfile();
112         $avatar     = $profile->getAvatar(AVATAR_PROFILE_SIZE);
113         $sitename   = common_config('site', 'name');
114         $title      = sprintf(_("%s and friends"), $this->user->nickname);
115         $taguribase = common_config('integration', 'taguri');
116         $id         = "tag:$taguribase:FriendsTimeline:" . $this->user->id;
117
118         $subtitle = sprintf(
119             _('Updates from %1$s and friends on %2$s!'),
120             $this->user->nickname, $sitename
121         );
122
123         $logo = (!empty($avatar))
124             ? $avatar->displayUrl()
125             : Avatar::defaultImage(AVATAR_PROFILE_SIZE);
126
127         switch($this->format) {
128         case 'xml':
129             $this->showXmlTimeline($this->notices);
130             break;
131         case 'rss':
132
133             $link = common_local_url(
134                 'all', array(
135                     'nickname' => $this->user->nickname
136                 )
137             );
138
139             $this->showRssTimeline(
140                 $this->notices,
141                 $title,
142                 $link,
143                 $subtitle,
144                 null,
145                 $logo
146             );
147             break;
148         case 'atom':
149
150             header('Content-Type: application/atom+xml; charset=utf-8');
151
152             $atom = new AtomNoticeFeed();
153
154             $atom->setId($id);
155             $atom->setTitle($title);
156             $atom->setSubtitle($subtitle);
157             $atom->setLogo($logo);
158             $atom->setUpdated('now');
159
160             $atom->addLink(
161                 common_local_url(
162                     'all',
163                     array('nickname' => $this->user->nickname)
164                 )
165             );
166
167             $id = $this->arg('id');
168             $aargs = array('format' => 'atom');
169             if (!empty($id)) {
170                 $aargs['id'] = $id;
171             }
172
173             $atom->addLink(
174                 $this->getSelfUri('ApiTimelineFriends', $aargs),
175                 array('rel' => 'self', 'type' => 'application/atom+xml')
176             );
177
178             $atom->addEntryFromNotices($this->notices);
179
180             $this->raw($atom->getString());
181
182             break;
183         case 'json':
184             $this->showJsonTimeline($this->notices);
185             break;
186         default:
187             $this->clientError(_('API method not found.'), $code = 404);
188             break;
189         }
190     }
191
192     /**
193      * Get notices
194      *
195      * @return array notices
196      */
197
198     function getNotices()
199     {
200         $notices = array();
201
202         if (!empty($this->auth_user) && $this->auth_user->id == $this->user->id) {
203             $notice = $this->user->ownFriendsTimeline(($this->page-1) * $this->count,
204                                                       $this->count, $this->since_id,
205                                                       $this->max_id, $this->since);
206         } else {
207             $notice = $this->user->friendsTimeline(($this->page-1) * $this->count,
208                                                    $this->count, $this->since_id,
209                                                    $this->max_id, $this->since);
210         }
211
212         while ($notice->fetch()) {
213             $notices[] = clone($notice);
214         }
215
216         return $notices;
217     }
218
219     /**
220      * Is this action read only?
221      *
222      * @param array $args other arguments
223      *
224      * @return boolean true
225      */
226
227     function isReadOnly($args)
228     {
229         return true;
230     }
231
232     /**
233      * When was this feed last modified?
234      *
235      * @return string datestamp of the latest notice in the stream
236      */
237
238     function lastModified()
239     {
240         if (!empty($this->notices) && (count($this->notices) > 0)) {
241             return strtotime($this->notices[0]->created);
242         }
243
244         return null;
245     }
246
247     /**
248      * An entity tag for this stream
249      *
250      * Returns an Etag based on the action name, language, user ID, and
251      * timestamps of the first and last notice in the timeline
252      *
253      * @return string etag
254      */
255
256     function etag()
257     {
258         if (!empty($this->notices) && (count($this->notices) > 0)) {
259
260             $last = count($this->notices) - 1;
261
262             return '"' . implode(
263                                  ':',
264                                  array($this->arg('action'),
265                                        common_language(),
266                                        $this->user->id,
267                                        strtotime($this->notices[0]->created),
268                                        strtotime($this->notices[$last]->created))
269                                  )
270               . '"';
271         }
272
273         return null;
274     }
275
276 }