| 
									
										
										
										
											2008-09-16 15:53:46 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Laconica, the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2008-09-16 15:53:46 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |  * action handler for message inbox | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: This program is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2008-09-16 15:53:46 -04:00
										 |  |  |  * 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/>. | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @category  Message | 
					
						
							|  |  |  |  * @package   Laconica | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@controlyourself.ca> | 
					
						
							|  |  |  |  * @copyright 2008 Control Yourself, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link      http://laconi.ca/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('LACONICA')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | require_once INSTALLDIR.'/lib/mailbox.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * action handler for message inbox | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Message | 
					
						
							|  |  |  |  * @package  Laconica | 
					
						
							|  |  |  |  * @author   Evan Prodromou <evan@controlyourself.ca> | 
					
						
							|  |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link     http://laconi.ca/ | 
					
						
							|  |  |  |  * @see      MailboxAction | 
					
						
							| 
									
										
										
										
											2008-09-16 15:53:46 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  | class InboxAction extends MailboxAction | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-06-10 08:47:46 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |      * Title of the page | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |      * @return string page title | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2009-06-10 08:47:46 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |     function title() | 
					
						
							| 
									
										
										
										
											2009-06-10 08:47:46 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |         if ($this->page > 1) { | 
					
						
							|  |  |  |             return sprintf(_("Inbox for %s - page %d"), $this->user->nickname, | 
					
						
							|  |  |  |                 $this->page); | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |             return sprintf(_("Inbox for %s"), $this->user->nickname); | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |      * Retrieve the messages for this user and this page | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * Does a query for the right messages | 
					
						
							| 
									
										
										
										
											2009-06-10 08:47:46 -07:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |      * @return Message data object with stream for messages | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see MailboxAction::getMessages() | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |     function getMessages() | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         $message = new Message(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |         $message->to_profile = $this->user->id; | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |         $message->orderBy('created DESC, id DESC'); | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |         $message->limit((($this->page - 1) * MESSAGES_PER_PAGE), | 
					
						
							|  |  |  |             MESSAGES_PER_PAGE + 1); | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ($message->find()) { | 
					
						
							|  |  |  |             return $message; | 
					
						
							| 
									
										
										
										
											2009-06-10 08:47:46 -07:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |             return null; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |      * Returns the profile we want to show with the message | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |      * For inboxes, we show the sender; for outboxes, the recipient. | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @param Message $message The message to get the profile for | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |      * @return Profile The profile that matches the message | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function getMessageProfile($message) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $message->getFrom(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2009-01-20 17:49:47 -08:00
										 |  |  |      * Instructions for using this page | 
					
						
							| 
									
										
										
										
											2008-12-22 15:13:04 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return string localised instructions for using the page | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function getInstructions() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return _('This is your inbox, which lists your incoming private messages.'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-09-16 15:53:46 -04:00
										 |  |  | } |