| 
									
										
										
										
											2008-05-08 22:16:04 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2008-05-20 15:14:12 -04:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  |  * Laconica - a distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2008, Controlez-Vous, Inc. | 
					
						
							| 
									
										
										
										
											2008-05-20 15:14:12 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											2008-05-20 15:14:12 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											2008-05-20 15:14:12 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  |  * 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-05-17 11:47:01 -04:00
										 |  |  | if (!defined('LACONICA')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2008-05-08 22:16:04 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  | require_once INSTALLDIR.'/lib/personalgroupnav.php'; | 
					
						
							|  |  |  | require_once INSTALLDIR.'/lib/noticelist.php'; | 
					
						
							|  |  |  | require_once INSTALLDIR.'/lib/feedlist.php'; | 
					
						
							| 
									
										
										
										
											2008-05-17 15:10:34 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  | class AllAction extends Action | 
					
						
							| 
									
										
										
										
											2008-12-23 14:49:23 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  |     var $user = null; | 
					
						
							|  |  |  |     var $page = null; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     function isReadOnly() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     function prepare($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  | 	parent::prepare($args); | 
					
						
							|  |  |  |         $nickname = common_canonical_nickname($this->arg('nickname')); | 
					
						
							|  |  |  | 	$this->user = User::staticGet('nickname', $nickname); | 
					
						
							|  |  |  |         $this->page = $this->trimmed('page'); | 
					
						
							|  |  |  |         if (!$this->page) { | 
					
						
							|  |  |  |             $this->page = 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         parent::handle($args); | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  |         if (!$this->user) { | 
					
						
							| 
									
										
										
										
											2009-01-15 23:03:38 +00:00
										 |  |  |             $this->clientError(_('No such user.')); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	$this->showPage(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  |      | 
					
						
							|  |  |  |     function title() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  | 	if ($this->page > 1) { | 
					
						
							|  |  |  | 	    return sprintf(_("%s and friends, page %d"), $this->user->nickname, $this->page); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 	    return sprintf(_("%s and friends"), $this->user->nickname); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     function showFeeds() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->element('link', array('rel' => 'alternate', | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                                      'href' => common_local_url('allrss', array('nickname' => | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  | 										$this->user->nickname)), | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                                      'type' => 'application/rss+xml', | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  |                                      'title' => sprintf(_('Feed for friends of %s'), $this->user->nickname))); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  |      | 
					
						
							|  |  |  |     function showLocalNav() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  | 	$nav = new PersonalGroupNav($this); | 
					
						
							|  |  |  | 	$nav->show(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-07-08 05:51:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  |     function showExportData() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-15 23:46:22 +00:00
										 |  |  |         $fl = new FeedList($this); | 
					
						
							|  |  |  |         $fl->show(array(0=>array('href'=>common_local_url('allrss', array('nickname' => $this->user->nickname)), | 
					
						
							|  |  |  | 				 'type' => 'rss', | 
					
						
							|  |  |  | 				 'version' => 'RSS 1.0', | 
					
						
							|  |  |  | 				 'item' => 'allrss'))); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     function showContent() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $notice = $this->user->noticesWithFriends(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  |         $nl = new NoticeList($notice, $this); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $cnt = $nl->show(); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  |         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, | 
					
						
							|  |  |  |                           $this->page, 'all', array('nickname' => $this->user->nickname)); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-05-08 22:16:04 -04:00
										 |  |  | } |