| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Show a group's notices | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  API | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							| 
									
										
										
										
											2009-10-12 16:36:00 -07:00
										 |  |  |  * @author    Craig Andrews <candrews@integralblue.com> | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author    Jeffery To <jeffery.to@gmail.com> | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |  * @author    Zach Copley <zach@status.net> | 
					
						
							| 
									
										
										
										
											2010-07-29 20:31:22 +00:00
										 |  |  |  * @copyright 2009-2010 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2010-05-27 18:26:47 -04:00
										 |  |  |  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('STATUSNET')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Returns the most recent notices (default 20) posted to the group specified by ID | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category API | 
					
						
							|  |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-10-12 16:36:00 -07:00
										 |  |  |  * @author   Craig Andrews <candrews@integralblue.com> | 
					
						
							|  |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author   Jeffery To <jeffery.to@gmail.com> | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |  * @author   Zach Copley <zach@status.net> | 
					
						
							|  |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link     http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-11-04 22:03:41 -08:00
										 |  |  | class ApiTimelineGroupAction extends ApiPrivateAuthAction | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     var $group   = null; | 
					
						
							|  |  |  |     var $notices = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Take arguments for running | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success flag | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-10-29 10:26:46 +01:00
										 |  |  |     protected function prepare(array $args=array()) | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |     { | 
					
						
							|  |  |  |         parent::prepare($args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-09 17:32:53 -07:00
										 |  |  |         $this->group   = $this->getTargetGroup($this->arg('id')); | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle the request | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Just show the notices | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |     protected function handle() | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         parent::handle(); | 
					
						
							| 
									
										
										
										
											2009-11-16 14:59:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (empty($this->group)) { | 
					
						
							| 
									
										
										
										
											2010-10-28 01:19:04 +02:00
										 |  |  |             // TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             $this->clientError(_('Group not found.'), 404); | 
					
						
							| 
									
										
										
										
											2009-11-16 14:59:32 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->notices = $this->getNotices(); | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |         $this->showTimeline(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Show the timeline of notices | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function showTimeline() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-03-03 12:51:23 -08:00
										 |  |  |         // We'll pull common formatting out of this for other formats
 | 
					
						
							| 
									
										
										
										
											2010-05-27 13:49:23 -07:00
										 |  |  |         $atom = new AtomGroupNoticeFeed($this->group, $this->auth_user); | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-12 01:40:52 +00:00
										 |  |  |         $self = $this->getSelfUri(); | 
					
						
							| 
									
										
										
										
											2010-03-11 23:43:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-18 17:33:25 -04:00
										 |  |  |         $link = common_local_url('showgroup', | 
					
						
							|  |  |  |                                  array('nickname' => $this->group->nickname)); | 
					
						
							| 
									
										
										
										
											2011-02-18 15:43:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |         switch($this->format) { | 
					
						
							|  |  |  |         case 'xml': | 
					
						
							| 
									
										
										
										
											2009-10-09 17:53:35 -07:00
										 |  |  |             $this->showXmlTimeline($this->notices); | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 'rss': | 
					
						
							| 
									
										
										
										
											2010-03-03 12:51:23 -08:00
										 |  |  |             $this->showRssTimeline( | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |                 $this->notices, | 
					
						
							| 
									
										
										
										
											2010-03-03 12:51:23 -08:00
										 |  |  |                 $atom->title, | 
					
						
							| 
									
										
										
										
											2010-02-12 12:22:12 -08:00
										 |  |  |                 $this->group->homeUrl(), | 
					
						
							| 
									
										
										
										
											2010-03-03 12:51:23 -08:00
										 |  |  |                 $atom->subtitle, | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |                 null, | 
					
						
							| 
									
										
										
										
											2010-03-11 23:43:03 +00:00
										 |  |  |                 $atom->logo, | 
					
						
							|  |  |  |                 $self | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |             ); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2010-02-12 12:22:12 -08:00
										 |  |  |         case 'atom': | 
					
						
							|  |  |  |             header('Content-Type: application/atom+xml; charset=utf-8'); | 
					
						
							|  |  |  |                 $atom->addEntryFromNotices($this->notices); | 
					
						
							| 
									
										
										
										
											2010-03-03 12:51:23 -08:00
										 |  |  |                 $this->raw($atom->getString()); | 
					
						
							| 
									
										
										
										
											2010-02-12 12:22:12 -08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |         case 'json': | 
					
						
							| 
									
										
										
										
											2009-10-09 17:53:35 -07:00
										 |  |  |             $this->showJsonTimeline($this->notices); | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2011-02-18 15:43:40 -08:00
										 |  |  |         case 'as': | 
					
						
							| 
									
										
										
										
											2011-06-23 11:38:46 -04:00
										 |  |  |             header('Content-Type: ' . ActivityStreamJSONDocument::CONTENT_TYPE); | 
					
						
							| 
									
										
										
										
											2011-02-18 15:43:40 -08:00
										 |  |  |             $doc = new ActivityStreamJSONDocument($this->auth_user); | 
					
						
							|  |  |  |             $doc->setTitle($atom->title); | 
					
						
							|  |  |  |             $doc->addLink($link, 'alternate', 'text/html'); | 
					
						
							|  |  |  |             $doc->addItemsFromNotices($this->notices); | 
					
						
							|  |  |  |             $this->raw($doc->asString()); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |         default: | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             // TRANS: Client error displayed when trying to handle an unknown API method.
 | 
					
						
							|  |  |  |             $this->clientError(_('API method not found.'), 404); | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get notices | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return array notices | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function getNotices() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $notices = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $notice = $this->group->getNotices( | 
					
						
							|  |  |  |             ($this->page-1) * $this->count, | 
					
						
							|  |  |  |             $this->count, | 
					
						
							|  |  |  |             $this->since_id, | 
					
						
							| 
									
										
										
										
											2010-03-02 11:54:02 -08:00
										 |  |  |             $this->max_id | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |         ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         while ($notice->fetch()) { | 
					
						
							|  |  |  |             $notices[] = clone($notice); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $notices; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Is this action read only? | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args other arguments | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean true | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function isReadOnly($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * When was this feed last modified? | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string datestamp of the latest notice in the stream | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function lastModified() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!empty($this->notices) && (count($this->notices) > 0)) { | 
					
						
							|  |  |  |             return strtotime($this->notices[0]->created); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * An entity tag for this stream | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Returns an Etag based on the action name, language, group ID and | 
					
						
							|  |  |  |      * timestamps of the first and last notice in the timeline | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string etag | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function etag() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!empty($this->notices) && (count($this->notices) > 0)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $last = count($this->notices) - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return '"' . implode( | 
					
						
							|  |  |  |                 ':', | 
					
						
							|  |  |  |                 array($this->arg('action'), | 
					
						
							| 
									
										
										
										
											2010-09-20 13:42:58 -07:00
										 |  |  |                       common_user_cache_hash($this->auth_user), | 
					
						
							| 
									
										
										
										
											2009-10-06 17:26:45 -07:00
										 |  |  |                       common_language(), | 
					
						
							|  |  |  |                       $this->group->id, | 
					
						
							|  |  |  |                       strtotime($this->notices[0]->created), | 
					
						
							|  |  |  |                       strtotime($this->notices[$last]->created)) | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |             . '"'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |