| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Show a user's timeline | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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> | 
					
						
							|  |  |  |  * @author    mac65 <mac65@mac65.com> | 
					
						
							|  |  |  |  * @author    Mike Cochrane <mikec@mikenz.geek.nz> | 
					
						
							|  |  |  |  * @author    Robin Millette <robin@millette.info> | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |  * @author    Zach Copley <zach@status.net> | 
					
						
							|  |  |  |  * @copyright 2009 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2010-05-27 18:26:47 -04:00
										 |  |  |  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -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 by the authenticating | 
					
						
							|  |  |  |  * user. Another user's timeline can be requested via the id parameter. This | 
					
						
							|  |  |  |  * is the API equivalent of the user profile web page. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @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> | 
					
						
							|  |  |  |  * @author   mac65 <mac65@mac65.com> | 
					
						
							|  |  |  |  * @author   Mike Cochrane <mikec@mikenz.geek.nz> | 
					
						
							|  |  |  |  * @author   Robin Millette <robin@millette.info> | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -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-10-01 18:19:59 -07:00
										 |  |  | class ApiTimelineUserAction extends ApiBareAuthAction | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     var $notices = null; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-08 11:35:38 +02:00
										 |  |  |     var $next_id = null; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * 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-09-27 16:57:06 -07:00
										 |  |  |     { | 
					
						
							|  |  |  |         parent::prepare($args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         $this->target = $this->getTargetProfile($this->arg('id')); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         if (!($this->target instanceof Profile)) { | 
					
						
							| 
									
										
										
										
											2010-10-28 01:19:04 +02:00
										 |  |  |             // TRANS: Client error displayed requesting most recent notices for a non-existing user.
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             $this->clientError(_('No such user.'), 404); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->notices = $this->getNotices(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle the request | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Just show the notices | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |     protected function handle() | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         parent::handle(); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ($this->isPost()) { | 
					
						
							|  |  |  |             $this->handlePost(); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $this->showTimeline(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Show the timeline of notices | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function showTimeline() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-03-03 12:51:23 -08:00
										 |  |  |         // We'll use the shared params from the Atom stub
 | 
					
						
							|  |  |  |         // for other feed types.
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         $atom = new AtomUserNoticeFeed($this->target->getUser(), $this->auth_user); | 
					
						
							| 
									
										
										
										
											2010-03-11 23:43:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $link = common_local_url( | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                                  'showstream', | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |                                  array('nickname' => $this->target->nickname) | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                                  ); | 
					
						
							| 
									
										
										
										
											2010-03-11 23:43:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-12 01:40:52 +00:00
										 |  |  |         $self = $this->getSelfUri(); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // FriendFeed's SUP protocol
 | 
					
						
							|  |  |  |         // Also added RSS and Atom feeds
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         $suplink = common_local_url('sup', null, null, $this->target->id); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |         header('X-SUP-ID: ' . $suplink); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-07 22:40:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // paging links
 | 
					
						
							| 
									
										
										
										
											2014-08-08 11:35:38 +02:00
										 |  |  |         $nextUrl = !empty($this->next_id) | 
					
						
							|  |  |  |                     ? common_local_url('ApiTimelineUser', | 
					
						
							| 
									
										
										
										
											2014-08-07 22:40:36 +02:00
										 |  |  |                                     array('format' => $this->format, | 
					
						
							|  |  |  |                                           'id' => $this->target->id), | 
					
						
							| 
									
										
										
										
											2014-08-08 11:35:38 +02:00
										 |  |  |                                     array('max_id' => $this->next_id)) | 
					
						
							|  |  |  |                     : null; | 
					
						
							| 
									
										
										
										
											2014-08-07 22:40:36 +02:00
										 |  |  |         $lastNotice = $this->notices[0]; | 
					
						
							|  |  |  |         $lastId     = $lastNotice->id; | 
					
						
							|  |  |  |         $prevUrl = common_local_url('ApiTimelineUser', | 
					
						
							|  |  |  |                                     array('format' => $this->format, | 
					
						
							|  |  |  |                                           'id' => $this->target->id), | 
					
						
							|  |  |  |                                     array('since_id' => $lastId)); | 
					
						
							|  |  |  |         $firstUrl = common_local_url('ApiTimelineUser', | 
					
						
							|  |  |  |                                     array('format' => $this->format, | 
					
						
							|  |  |  |                                           'id' => $this->target->id)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-09 17:11:40 -07:00
										 |  |  |         switch($this->format) { | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |         case 'xml': | 
					
						
							| 
									
										
										
										
											2009-10-09 17:53:35 -07:00
										 |  |  |             $this->showXmlTimeline($this->notices); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 'rss': | 
					
						
							| 
									
										
										
										
											2009-10-09 17:53:35 -07:00
										 |  |  |             $this->showRssTimeline( | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                                    $this->notices, | 
					
						
							|  |  |  |                                    $atom->title, | 
					
						
							|  |  |  |                                    $link, | 
					
						
							|  |  |  |                                    $atom->subtitle, | 
					
						
							|  |  |  |                                    $suplink, | 
					
						
							|  |  |  |                                    $atom->logo, | 
					
						
							|  |  |  |                                    $self | 
					
						
							|  |  |  |                                    ); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 'atom': | 
					
						
							| 
									
										
										
										
											2010-02-10 14:24:16 -08:00
										 |  |  |             header('Content-Type: application/atom+xml; charset=utf-8'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-03 12:51:23 -08:00
										 |  |  |             $atom->setId($self); | 
					
						
							|  |  |  |             $atom->setSelfLink($self); | 
					
						
							| 
									
										
										
										
											2010-10-25 11:08:10 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // Add navigation links: next, prev, first
 | 
					
						
							|  |  |  |             // Note: we use IDs rather than pages for navigation; page boundaries
 | 
					
						
							|  |  |  |             // change too quickly!
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!empty($this->next_id)) { | 
					
						
							|  |  |  |                 $atom->addLink($nextUrl, | 
					
						
							|  |  |  |                                array('rel' => 'next', | 
					
						
							|  |  |  |                                      'type' => 'application/atom+xml')); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (($this->page > 1 || !empty($this->max_id)) && !empty($this->notices)) { | 
					
						
							|  |  |  |                 $atom->addLink($prevUrl, | 
					
						
							|  |  |  |                                array('rel' => 'prev', | 
					
						
							|  |  |  |                                      'type' => 'application/atom+xml')); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($this->page > 1 || !empty($this->since_id) || !empty($this->max_id)) { | 
					
						
							|  |  |  |                 $atom->addLink($firstUrl, | 
					
						
							|  |  |  |                                array('rel' => 'first', | 
					
						
							|  |  |  |                                      'type' => 'application/atom+xml')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-10 14:24:16 -08:00
										 |  |  |             $atom->addEntryFromNotices($this->notices); | 
					
						
							| 
									
										
										
										
											2010-03-03 12:51:23 -08:00
										 |  |  |             $this->raw($atom->getString()); | 
					
						
							| 
									
										
										
										
											2010-02-10 14:24:16 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 'json': | 
					
						
							| 
									
										
										
										
											2009-10-09 17:53:35 -07:00
										 |  |  |             $this->showJsonTimeline($this->notices); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-07 22:40:36 +02:00
										 |  |  |             if (!empty($this->next_id)) { | 
					
						
							|  |  |  |                 $doc->addLink($nextUrl, | 
					
						
							|  |  |  |                                array('rel' => 'next', | 
					
						
							|  |  |  |                                      'type' => ActivityStreamJSONDocument::CONTENT_TYPE)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (($this->page > 1 || !empty($this->max_id)) && !empty($this->notices)) { | 
					
						
							|  |  |  |                 $doc->addLink($prevUrl, | 
					
						
							|  |  |  |                                array('rel' => 'prev', | 
					
						
							|  |  |  |                                      'type' => ActivityStreamJSONDocument::CONTENT_TYPE)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($this->page > 1 || !empty($this->since_id) || !empty($this->max_id)) { | 
					
						
							|  |  |  |                 $doc->addLink($firstUrl, | 
					
						
							|  |  |  |                                array('rel' => 'first', | 
					
						
							|  |  |  |                                      'type' => ActivityStreamJSONDocument::CONTENT_TYPE)); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-02-18 15:43:40 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             $this->raw($doc->asString()); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |         default: | 
					
						
							| 
									
										
										
										
											2011-04-04 00:12:52 +02:00
										 |  |  |             // TRANS: Client error displayed when coming across a non-supported API method.
 | 
					
						
							| 
									
										
										
										
											2010-01-10 12:26:24 +01:00
										 |  |  |             $this->clientError(_('API method not found.'), $code = 404); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get notices | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return array notices | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function getNotices() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $notices = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         $notice = $this->target->getNotices(($this->page-1) * $this->count, | 
					
						
							| 
									
										
										
										
											2010-10-25 11:08:10 -04:00
										 |  |  |                                           $this->count + 1, | 
					
						
							|  |  |  |                                           $this->since_id, | 
					
						
							| 
									
										
										
										
											2013-10-06 21:30:29 +02:00
										 |  |  |                                           $this->max_id, | 
					
						
							|  |  |  |                                           $this->scoped); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         while ($notice->fetch()) { | 
					
						
							| 
									
										
										
										
											2010-10-25 11:08:10 -04:00
										 |  |  |             if (count($notices) < $this->count) { | 
					
						
							|  |  |  |                 $notices[] = clone($notice); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $this->next_id = $notice->id; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $notices; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2010-12-14 16:14:15 -08:00
										 |  |  |      * We expose AtomPub here, so non-GET/HEAD reqs must be read/write. | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @param array $args other arguments | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean true | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-01-20 18:45:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |     function isReadOnly($args) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-12-14 16:14:15 -08:00
										 |  |  |         return ($_SERVER['REQUEST_METHOD'] == 'GET' || $_SERVER['REQUEST_METHOD'] == 'HEAD'); | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 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, user 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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 10:27:54 -07:00
										 |  |  |             return '"' . implode( | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                                  ':', | 
					
						
							|  |  |  |                                  array($this->arg('action'), | 
					
						
							|  |  |  |                                        common_user_cache_hash($this->auth_user), | 
					
						
							|  |  |  |                                        common_language(), | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |                                        $this->target->id, | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                                        strtotime($this->notices[0]->created), | 
					
						
							|  |  |  |                                        strtotime($this->notices[$last]->created)) | 
					
						
							|  |  |  |                                  ) | 
					
						
							|  |  |  |               . '"'; | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |     function handlePost() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (empty($this->auth_user) || | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             $this->auth_user->id != $this->target->id) { | 
					
						
							| 
									
										
										
										
											2010-12-02 12:33:03 +01:00
										 |  |  |             // TRANS: Client error displayed trying to add a notice to another user's timeline.
 | 
					
						
							|  |  |  |             $this->clientError(_('Only the user can add to their own timeline.')); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-02 12:33:03 +01:00
										 |  |  |         // Only handle posts for Atom
 | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |         if ($this->format != 'atom') { | 
					
						
							| 
									
										
										
										
											2010-12-02 12:33:03 +01:00
										 |  |  |             // TRANS: Client error displayed when using another format than AtomPub.
 | 
					
						
							|  |  |  |             $this->clientError(_('Only accept AtomPub for Atom feeds.')); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 13:12:24 -08:00
										 |  |  |         $xml = trim(file_get_contents('php://input')); | 
					
						
							|  |  |  |         if (empty($xml)) { | 
					
						
							| 
									
										
										
										
											2011-01-20 18:45:13 +01:00
										 |  |  |             // TRANS: Client error displayed attempting to post an empty API notice.
 | 
					
						
							| 
									
										
										
										
											2010-12-14 13:12:24 -08:00
										 |  |  |             $this->clientError(_('Atom post must not be empty.')); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-15 10:09:20 -07:00
										 |  |  |         $old = error_reporting(error_reporting() & ~(E_WARNING | E_NOTICE)); | 
					
						
							|  |  |  |         $dom = new DOMDocument(); | 
					
						
							|  |  |  |         $ok = $dom->loadXML($xml); | 
					
						
							|  |  |  |         error_reporting($old); | 
					
						
							|  |  |  |         if (!$ok) { | 
					
						
							| 
									
										
										
										
											2011-01-20 18:45:13 +01:00
										 |  |  |             // TRANS: Client error displayed attempting to post an API that is not well-formed XML.
 | 
					
						
							| 
									
										
										
										
											2010-12-14 13:12:24 -08:00
										 |  |  |             $this->clientError(_('Atom post must be well-formed XML.')); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ($dom->documentElement->namespaceURI != Activity::ATOM || | 
					
						
							|  |  |  |             $dom->documentElement->localName != 'entry') { | 
					
						
							| 
									
										
										
										
											2010-12-02 12:33:03 +01:00
										 |  |  |             // TRANS: Client error displayed when not using an Atom entry.
 | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |             $this->clientError(_('Atom post must be an Atom entry.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $activity = new Activity($dom->documentElement); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-27 22:11:30 -08:00
										 |  |  |         $saved = null; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         if (Event::handle('StartAtomPubNewActivity', array(&$activity, $this->target->getUser(), &$saved))) { | 
					
						
							| 
									
										
										
										
											2010-11-15 11:54:42 -05:00
										 |  |  |             if ($activity->verb != ActivityVerb::POST) { | 
					
						
							| 
									
										
										
										
											2011-01-29 00:33:13 +01:00
										 |  |  |                 // TRANS: Client error displayed when not using the POST verb. Do not translate POST.
 | 
					
						
							| 
									
										
										
										
											2010-12-02 12:33:03 +01:00
										 |  |  |                 $this->clientError(_('Can only handle POST activities.')); | 
					
						
							| 
									
										
										
										
											2010-11-15 11:54:42 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-15 11:54:42 -05:00
										 |  |  |             $note = $activity->objects[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!in_array($note->type, array(ActivityObject::NOTE, | 
					
						
							|  |  |  |                                              ActivityObject::BLOGENTRY, | 
					
						
							|  |  |  |                                              ActivityObject::STATUS))) { | 
					
						
							| 
									
										
										
										
											2010-12-02 12:33:03 +01:00
										 |  |  |                 // TRANS: Client error displayed when using an unsupported activity object type.
 | 
					
						
							|  |  |  |                 // TRANS: %s is the unsupported activity object type.
 | 
					
						
							|  |  |  |                 $this->clientError(sprintf(_('Cannot handle activity object type "%s".'), | 
					
						
							|  |  |  |                                              $note->type)); | 
					
						
							| 
									
										
										
										
											2010-11-15 11:54:42 -05:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $saved = $this->postNote($activity); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             Event::handle('EndAtomPubNewActivity', array($activity, $this->target->getUser(), $saved)); | 
					
						
							| 
									
										
										
										
											2010-11-15 11:54:42 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($saved)) { | 
					
						
							| 
									
										
										
										
											2010-12-14 13:12:24 -08:00
										 |  |  |             header('HTTP/1.1 201 Created'); | 
					
						
							| 
									
										
										
										
											2010-12-14 13:19:22 -08:00
										 |  |  |             header("Location: " . common_local_url('ApiStatusesShow', array('id' => $saved->id, | 
					
						
							| 
									
										
										
										
											2010-11-15 11:54:42 -05:00
										 |  |  |                                                                             'format' => 'atom'))); | 
					
						
							|  |  |  |             $this->showSingleAtomStatus($saved); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-11-15 11:54:42 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function postNote($activity) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $note = $activity->objects[0]; | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Use summary as fallback for content
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($note->content)) { | 
					
						
							|  |  |  |             $sourceContent = $note->content; | 
					
						
							|  |  |  |         } else if (!empty($note->summary)) { | 
					
						
							|  |  |  |             $sourceContent = $note->summary; | 
					
						
							|  |  |  |         } else if (!empty($note->title)) { | 
					
						
							|  |  |  |             $sourceContent = $note->title; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             // @fixme fetch from $sourceUrl?
 | 
					
						
							| 
									
										
										
										
											2010-12-02 12:33:03 +01:00
										 |  |  |             // TRANS: Client error displayed when posting a notice without content through the API.
 | 
					
						
							| 
									
										
										
										
											2011-01-20 18:45:13 +01:00
										 |  |  |             // TRANS: %d is the notice ID (number).
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             $this->clientError(sprintf(_('No content for notice %d.'), $note->id)); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Get (safe!) HTML and text versions of the content
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $rendered = $this->purify($sourceContent); | 
					
						
							| 
									
										
										
										
											2014-07-14 13:52:23 +02:00
										 |  |  |         $content = common_strip_html($rendered); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-02 10:56:44 -08:00
										 |  |  |         $shortened = $this->auth_user->shortenLinks($content); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $options = array('is_local' => Notice::LOCAL_PUBLIC, | 
					
						
							|  |  |  |                          'rendered' => $rendered, | 
					
						
							|  |  |  |                          'replies' => array(), | 
					
						
							|  |  |  |                          'groups' => array(), | 
					
						
							|  |  |  |                          'tags' => array(), | 
					
						
							|  |  |  |                          'urls' => array()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // accept remote URI (not necessarily a good idea)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         common_debug("Note ID is {$note->id}"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($note->id)) { | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |             $notice = Notice::getKV('uri', trim($note->id)); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!empty($notice)) { | 
					
						
							| 
									
										
										
										
											2010-12-02 12:33:03 +01:00
										 |  |  |                 // TRANS: Client error displayed when using another format than AtomPub.
 | 
					
						
							| 
									
										
										
										
											2011-02-17 00:39:53 +01:00
										 |  |  |                 // TRANS: %s is the notice URI.
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |                 $this->clientError(sprintf(_('Notice with URI "%s" already exists.'), $note->id)); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |             } | 
					
						
							|  |  |  |             common_log(LOG_NOTICE, "Saving client-supplied notice URI '$note->id'"); | 
					
						
							|  |  |  |             $options['uri'] = $note->id; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // accept remote create time (also maybe not such a good idea)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($activity->time)) { | 
					
						
							|  |  |  |             common_log(LOG_NOTICE, "Saving client-supplied create time {$activity->time}"); | 
					
						
							|  |  |  |             $options['created'] = common_sql_date($activity->time); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Check for optional attributes...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-28 22:21:14 +01:00
										 |  |  |         if ($activity->context instanceof ActivityContext) { | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-28 22:21:14 +01:00
										 |  |  |             foreach ($activity->context->attention as $uri=>$type) { | 
					
						
							| 
									
										
										
										
											2014-05-26 15:05:14 +02:00
										 |  |  |                 try { | 
					
						
							|  |  |  |                     $profile = Profile::fromUri($uri); | 
					
						
							|  |  |  |                     if ($profile->isGroup()) { | 
					
						
							|  |  |  |                         $options['groups'][] = $profile->id; | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                     } else { | 
					
						
							| 
									
										
										
										
											2014-05-26 15:05:14 +02:00
										 |  |  |                         $options['replies'][] = $uri; | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2014-05-26 15:05:14 +02:00
										 |  |  |                 } catch (UnknownUriException $e) { | 
					
						
							|  |  |  |                     common_log(LOG_WARNING, sprintf('AtomPub post with unknown attention URI %s', $uri)); | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // Maintain direct reply associations
 | 
					
						
							|  |  |  |             // @fixme what about conversation ID?
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!empty($activity->context->replyToID)) { | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |                 $orig = Notice::getKV('uri', | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                                           $activity->context->replyToID); | 
					
						
							|  |  |  |                 if (!empty($orig)) { | 
					
						
							|  |  |  |                     $options['reply_to'] = $orig->id; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $location = $activity->context->location; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($location) { | 
					
						
							|  |  |  |                 $options['lat'] = $location->lat; | 
					
						
							|  |  |  |                 $options['lon'] = $location->lon; | 
					
						
							|  |  |  |                 if ($location->location_id) { | 
					
						
							|  |  |  |                     $options['location_ns'] = $location->location_ns; | 
					
						
							|  |  |  |                     $options['location_id'] = $location->location_id; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Atom categories <-> hashtags
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($activity->categories as $cat) { | 
					
						
							|  |  |  |             if ($cat->term) { | 
					
						
							|  |  |  |                 $term = common_canonical_tag($cat->term); | 
					
						
							|  |  |  |                 if ($term) { | 
					
						
							|  |  |  |                     $options['tags'][] = $term; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Atom enclosures -> attachment URLs
 | 
					
						
							|  |  |  |         foreach ($activity->enclosures as $href) { | 
					
						
							|  |  |  |             // @fixme save these locally or....?
 | 
					
						
							|  |  |  |             $options['urls'][] = $href; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         $saved = Notice::saveNew($this->target->id, | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |                                  $content, | 
					
						
							|  |  |  |                                  'atompub', // TODO: deal with this
 | 
					
						
							|  |  |  |                                  $options); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-15 11:54:42 -05:00
										 |  |  |         return $saved; | 
					
						
							| 
									
										
										
										
											2010-10-24 22:50:13 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function purify($content) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         require_once INSTALLDIR.'/extlib/htmLawed/htmLawed.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $config = array('safe' => 1, | 
					
						
							|  |  |  |                         'deny_attribute' => 'id,style,on*'); | 
					
						
							|  |  |  |         return htmLawed($content, $config); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-09-27 16:57:06 -07:00
										 |  |  | } |