]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apitimelinetag.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / actions / apitimelinetag.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Show the latest notices for a given tag
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    Zach Copley <zach@status.net>
28  * @copyright 2009-2010 StatusNet, Inc.
29  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
30  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
31  * @link      http://status.net/
32  */
33
34 if (!defined('STATUSNET')) {
35     exit(1);
36 }
37
38 require_once INSTALLDIR . '/lib/apiprivateauth.php';
39
40 /**
41  * Returns the 20 most recent notices tagged by a given tag
42  *
43  * @category API
44  * @package  StatusNet
45  * @author   Craig Andrews <candrews@integralblue.com>
46  * @author   Evan Prodromou <evan@status.net>
47  * @author   Jeffery To <jeffery.to@gmail.com>
48  * @author   Zach Copley <zach@status.net>
49  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
50  * @link     http://status.net/
51  */
52 class ApiTimelineTagAction extends ApiPrivateAuthAction
53 {
54     var $notices = null;
55
56     /**
57      * Take arguments for running
58      *
59      * @param array $args $_REQUEST args
60      *
61      * @return boolean success flag
62      */
63     function prepare($args)
64     {
65         parent::prepare($args);
66
67         common_debug("apitimelinetag prepare()");
68
69         $this->tag     = $this->arg('tag');
70         $this->notices = $this->getNotices();
71
72         return true;
73     }
74
75     /**
76      * Handle the request
77      *
78      * Just show the notices
79      *
80      * @param array $args $_REQUEST data (unused)
81      *
82      * @return void
83      */
84     function handle($args)
85     {
86         parent::handle($args);
87         $this->showTimeline();
88     }
89
90     /**
91      * Show the timeline of notices
92      *
93      * @return void
94      */
95     function showTimeline()
96     {
97         $sitename   = common_config('site', 'name');
98         $sitelogo   = (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png');
99         // TRANS: Title for timeline with lastest notices with a given tag.
100         // TRANS: %s is the tag.
101         $title      = sprintf(_("Notices tagged with %s"), $this->tag);
102         $subtitle   = sprintf(
103             // TRANS: Subtitle for timeline with lastest notices with a given tag.
104             // TRANS: %1$s is the tag, $2$s is the StatusNet sitename.
105             _('Updates tagged with %1$s on %2$s!'),
106             $this->tag,
107             $sitename
108         );
109         $taguribase = TagURI::base();
110         $id         = "tag:$taguribase:TagTimeline:".$this->tag;
111
112         $link = common_local_url(
113             'tag',
114             array('tag' => $this->tag)
115         );
116
117         $self = $this->getSelfUri();
118
119         switch($this->format) {
120         case 'xml':
121             $this->showXmlTimeline($this->notices);
122             break;
123         case 'rss':
124             $this->showRssTimeline(
125                 $this->notices,
126                 $title,
127                 $link,
128                 $subtitle,
129                 null,
130                 $sitelogo,
131                 $self
132             );
133             break;
134         case 'atom':
135             header('Content-Type: application/atom+xml; charset=utf-8');
136
137             $atom = new AtomNoticeFeed($this->auth_user);
138
139             $atom->setId($id);
140             $atom->setTitle($title);
141             $atom->setSubtitle($subtitle);
142             $atom->setLogo($logo);
143             $atom->setUpdated('now');
144
145             $atom->addLink($link);
146             $atom->setSelfLink($self);
147
148             $atom->addEntryFromNotices($this->notices);
149             $this->raw($atom->getString());
150
151             break;
152         case 'json':
153             $this->showJsonTimeline($this->notices);
154             break;
155         case 'as':
156             header('Content-Type: application/json; charset=utf-8');
157             $doc = new ActivityStreamJSONDocument($this->auth_user);
158             $doc->setTitle($title);
159             $doc->addLink($link, 'alternate', 'text/html');
160             $doc->addItemsFromNotices($this->notices);
161             $this->raw($doc->asString());
162             break;
163         default:
164             // TRANS: Client error displayed when trying to handle an unknown API method.
165             $this->clientError(_('API method not found.'), $code = 404);
166             break;
167         }
168     }
169
170     /**
171      * Get notices
172      *
173      * @return array notices
174      */
175     function getNotices()
176     {
177         $notices = array();
178
179         $notice = Notice_tag::getStream(
180             $this->tag,
181             ($this->page - 1) * $this->count,
182             $this->count + 1
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     function isReadOnly($args)
200     {
201         return true;
202     }
203
204     /**
205      * When was this feed last modified?
206      *
207      * @return string datestamp of the latest notice in the stream
208      */
209     function lastModified()
210     {
211         if (!empty($this->notices) && (count($this->notices) > 0)) {
212             return strtotime($this->notices[0]->created);
213         }
214
215         return null;
216     }
217
218     /**
219      * An entity tag for this stream
220      *
221      * Returns an Etag based on the action name, language, and
222      * timestamps of the first and last notice in the timeline
223      *
224      * @return string etag
225      */
226     function etag()
227     {
228         if (!empty($this->notices) && (count($this->notices) > 0)) {
229
230             $last = count($this->notices) - 1;
231
232             return '"' . implode(
233                 ':',
234                 array($this->arg('action'),
235                       common_user_cache_hash($this->auth_user),
236                       common_language(),
237                       $this->tag,
238                       strtotime($this->notices[0]->created),
239                       strtotime($this->notices[$last]->created))
240             )
241             . '"';
242         }
243
244         return null;
245     }
246 }