| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * widget for displaying a list of 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  UI | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Brion Vibber <brion@status.net> | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-12 19:49:20 +01:00
										 |  |  | if (!defined('GNUSOCIAL')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * widget for displaying a list of notices | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * There are a number of actions that display a list of notices, in | 
					
						
							|  |  |  |  * reverse chronological order. This widget abstracts out most of the | 
					
						
							|  |  |  |  * code for UI for notice lists. It's overridden to hide some | 
					
						
							|  |  |  |  * data for e.g. the profile page. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category UI | 
					
						
							|  |  |  |  * @package  StatusNet | 
					
						
							|  |  |  |  * @author   Evan Prodromou <evan@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/ | 
					
						
							|  |  |  |  * @see      Notice | 
					
						
							|  |  |  |  * @see      NoticeListItem | 
					
						
							|  |  |  |  * @see      ProfileNoticeList | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class ThreadedNoticeList extends NoticeList | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-04-10 20:16:51 -04:00
										 |  |  |     protected $userProfile; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-03 14:02:01 +02:00
										 |  |  |     function __construct(Notice $notice, Action $out=null, $profile=-1) | 
					
						
							| 
									
										
										
										
											2011-04-10 20:16:51 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         parent::__construct($notice, $out); | 
					
						
							| 
									
										
										
										
											2011-04-11 11:19:11 -04:00
										 |  |  |         if (is_int($profile) && $profile == -1) { | 
					
						
							|  |  |  |             $profile = Profile::current(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-10 20:16:51 -04:00
										 |  |  |         $this->userProfile = $profile; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * show the list of notices | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * "Uses up" the stream by looping through it. So, probably can't | 
					
						
							|  |  |  |      * be called twice on the same list. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return int count of notices listed. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function show() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->out->elementStart('div', array('id' =>'notices_primary')); | 
					
						
							| 
									
										
										
										
											2011-03-18 17:59:51 +01:00
										 |  |  |         // TRANS: Header for Notices section.
 | 
					
						
							|  |  |  |         $this->out->element('h2', null, _m('HEADER','Notices')); | 
					
						
							| 
									
										
										
										
											2011-03-01 16:08:37 -08:00
										 |  |  |         $this->out->elementStart('ol', array('class' => 'notices threaded-notices xoxo')); | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-01 16:43:44 -04:00
										 |  |  | 		$notices = $this->notice->fetchAll(); | 
					
						
							| 
									
										
										
										
											2011-08-02 11:22:37 -04:00
										 |  |  | 		$total = count($notices); | 
					
						
							| 
									
										
										
										
											2011-08-01 16:43:44 -04:00
										 |  |  | 		$notices = array_slice($notices, 0, NOTICES_PER_PAGE); | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2013-10-06 03:37:12 +02:00
										 |  |  |         $allnotices = self::_allNotices($notices); | 
					
						
							|  |  |  |     	self::prefill($allnotices); | 
					
						
							| 
									
										
										
										
											2011-08-01 16:43:44 -04:00
										 |  |  |     	 | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  |         $conversations = array(); | 
					
						
							| 
									
										
										
										
											2011-08-01 16:43:44 -04:00
										 |  |  |          | 
					
						
							|  |  |  |         foreach ($notices as $notice) { | 
					
						
							| 
									
										
										
										
											2011-02-28 15:40:43 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-17 15:17:45 -07:00
										 |  |  |             // Collapse repeats into their originals...
 | 
					
						
							| 
									
										
										
										
											2011-08-01 16:43:44 -04:00
										 |  |  |              | 
					
						
							| 
									
										
										
										
											2011-03-17 15:17:45 -07:00
										 |  |  |             if ($notice->repeat_of) { | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |                 $orig = Notice::getKV('id', $notice->repeat_of); | 
					
						
							| 
									
										
										
										
											2014-06-05 00:59:13 +02:00
										 |  |  |                 if ($orig instanceof Notice) { | 
					
						
							| 
									
										
										
										
											2011-03-17 15:17:45 -07:00
										 |  |  |                     $notice = $orig; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $convo = $notice->conversation; | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  |             if (!empty($conversations[$convo])) { | 
					
						
							|  |  |  |                 // Seen this convo already -- skip!
 | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $conversations[$convo] = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // Get the convo's root notice
 | 
					
						
							| 
									
										
										
										
											2011-04-11 11:19:11 -04:00
										 |  |  |             $root = $notice->conversationRoot($this->userProfile); | 
					
						
							| 
									
										
										
										
											2014-06-05 00:59:13 +02:00
										 |  |  |             if ($root instanceof Notice) { | 
					
						
							| 
									
										
										
										
											2011-03-17 17:36:53 -07:00
										 |  |  |                 $notice = $root; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             try { | 
					
						
							| 
									
										
										
										
											2011-03-17 17:36:53 -07:00
										 |  |  |                 $item = $this->newListItem($notice); | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  |                 $item->show(); | 
					
						
							|  |  |  |             } catch (Exception $e) { | 
					
						
							|  |  |  |                 // we log exceptions and continue
 | 
					
						
							|  |  |  |                 common_log(LOG_ERR, $e->getMessage()); | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->out->elementEnd('ol'); | 
					
						
							|  |  |  |         $this->out->elementEnd('div'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-02 11:22:37 -04:00
										 |  |  |         return $total; | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-08 10:39:45 -04:00
										 |  |  |     function _allNotices($notices) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $convId = array(); | 
					
						
							|  |  |  |         foreach ($notices as $notice) { | 
					
						
							|  |  |  |             $convId[] = $notice->conversation; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $convId = array_unique($convId); | 
					
						
							| 
									
										
										
										
											2013-08-18 21:02:33 +02:00
										 |  |  |         $allMap = Notice::listGet('conversation', $convId); | 
					
						
							| 
									
										
										
										
											2011-08-08 10:39:45 -04:00
										 |  |  |         $allArray = array(); | 
					
						
							|  |  |  |         foreach ($allMap as $convId => $convNotices) { | 
					
						
							|  |  |  |             $allArray = array_merge($allArray, $convNotices); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $allArray; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * returns a new list item for the current notice | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Recipe (factory?) method; overridden by sub-classes to give | 
					
						
							|  |  |  |      * a different list item class. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Notice $notice the current notice | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return NoticeListItem a list item for displaying the notice | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2014-06-02 00:20:27 +02:00
										 |  |  |     function newListItem(Notice $notice) | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-04-10 20:16:51 -04:00
										 |  |  |         return new ThreadedNoticeListItem($notice, $this->out, $this->userProfile); | 
					
						
							| 
									
										
										
										
											2011-02-28 11:53:48 -08:00
										 |  |  |     } | 
					
						
							|  |  |  | } |