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