| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2011-03-25 12:22:22 -04:00
										 |  |  | /** | 
					
						
							|  |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2011, StatusNet, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Notice stream for a conversation | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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/>. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-08-22 12:25:04 -04:00
										 |  |  |  * @category  NoticeStream | 
					
						
							| 
									
										
										
										
											2011-03-25 12:22:22 -04:00
										 |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-14 20:46:13 +01:00
										 |  |  | if (!defined('GNUSOCIAL')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2011-03-25 12:22:22 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Notice stream for a conversation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Stream | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class ConversationNoticeStream extends ScopingNoticeStream | 
					
						
							| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-01 14:51:47 +01:00
										 |  |  |     function __construct($id, Profile $scoped=null) | 
					
						
							| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-08-22 12:25:04 -04:00
										 |  |  |         parent::__construct(new RawConversationNoticeStream($id), | 
					
						
							| 
									
										
										
										
											2016-03-01 14:51:47 +01:00
										 |  |  |                             $scoped); | 
					
						
							| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-25 12:22:22 -04:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Notice stream for a conversation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Stream | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  | class RawConversationNoticeStream extends NoticeStream | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     protected $id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function __construct($id) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-07-15 14:27:03 +02:00
										 |  |  |         parent::__construct(); | 
					
						
							| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  |         $this->id = $id; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-12 11:41:51 +02:00
										 |  |  |     function getNoticeIds($offset, $limit, $since_id=null, $max_id=null) | 
					
						
							| 
									
										
										
										
											2011-08-22 12:25:04 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-05-11 22:46:40 +02:00
										 |  |  |         $notice = new Notice(); | 
					
						
							|  |  |  |         // SELECT
 | 
					
						
							|  |  |  |         $notice->selectAdd(); | 
					
						
							|  |  |  |         $notice->selectAdd('id'); | 
					
						
							| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-11 22:46:40 +02:00
										 |  |  |         // WHERE
 | 
					
						
							|  |  |  |         $notice->conversation = $this->id; | 
					
						
							|  |  |  |         if (!empty($since_id)) { | 
					
						
							|  |  |  |             $notice->whereAdd(sprintf('notice.id > %d', $since_id)); | 
					
						
							| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-05-11 22:46:40 +02:00
										 |  |  |         if (!empty($max_id)) { | 
					
						
							|  |  |  |             $notice->whereAdd(sprintf('notice.id <= %d', $max_id)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-05-12 11:41:51 +02:00
										 |  |  |         if (!is_null($offset)) { | 
					
						
							|  |  |  |             $notice->limit($offset, $limit); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-05-11 22:46:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-14 20:46:13 +01:00
										 |  |  |         self::filterVerbs($notice, $this->selectVerbs); | 
					
						
							| 
									
										
										
										
											2014-07-09 13:37:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-11 22:46:40 +02:00
										 |  |  |         // ORDER BY
 | 
					
						
							|  |  |  |         // currently imitates the previously used "_reverseChron" sorting
 | 
					
						
							|  |  |  |         $notice->orderBy('notice.created DESC'); | 
					
						
							| 
									
										
										
										
											2014-05-12 11:41:51 +02:00
										 |  |  |         $notice->find(); | 
					
						
							| 
									
										
										
										
											2014-05-11 22:46:40 +02:00
										 |  |  |         return $notice->fetchAll('id'); | 
					
						
							| 
									
										
										
										
											2011-03-24 18:04:19 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-22 12:25:04 -04:00
										 |  |  | } |