| 
									
										
										
										
											2008-05-22 07:29:54 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Laconica - a distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-06-20 16:00:04 -07:00
										 |  |  |  * Copyright (C) 2008, Control Yourself, Inc. | 
					
						
							| 
									
										
										
										
											2008-05-22 07:29:54 -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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('LACONICA')) { exit(1); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | require_once(INSTALLDIR.'/lib/rssaction.php'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Formatting of RSS handled by Rss10Action
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:49:23 -05:00
										 |  |  | class UserrssAction extends Rss10Action | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:21:29 -05:00
										 |  |  |     var $user = null; | 
					
						
							| 
									
										
										
										
											2009-05-18 18:18:08 -04:00
										 |  |  |     var $tag  = null; | 
					
						
							| 
									
										
										
										
											2008-05-22 07:29:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 04:10:49 +00:00
										 |  |  |     function prepare($args) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-23 04:10:49 +00:00
										 |  |  |         parent::prepare($args); | 
					
						
							| 
									
										
										
										
											2009-05-18 18:18:08 -04:00
										 |  |  |         $nickname   = $this->trimmed('nickname'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $this->user = User::staticGet('nickname', $nickname); | 
					
						
							| 
									
										
										
										
											2009-05-18 18:18:08 -04:00
										 |  |  |         $this->tag  = $this->trimmed('tag'); | 
					
						
							| 
									
										
										
										
											2008-07-08 05:45:31 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05: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 false; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-07-08 05:45:31 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-18 18:18:08 -04:00
										 |  |  |     function getTaggedNotices($tag = null, $limit=0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $user = $this->user; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_null($user)) { | 
					
						
							|  |  |  |             return null; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $notice = $user->getTaggedNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit, 0, 0, null, $tag); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $notices = array(); | 
					
						
							|  |  |  |         while ($notice->fetch()) { | 
					
						
							|  |  |  |             $notices[] = clone($notice); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $notices; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 04:10:49 +00:00
										 |  |  |     function getNotices($limit=0) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-07-08 05:45:31 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $user = $this->user; | 
					
						
							| 
									
										
										
										
											2009-02-20 17:30:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         if (is_null($user)) { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:21:29 -05:00
										 |  |  |             return null; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-02-20 17:30:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $notice = $user->getNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit); | 
					
						
							| 
									
										
										
										
											2009-02-20 17:30:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-07 23:38:42 +01:00
										 |  |  |         $notices = array(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         while ($notice->fetch()) { | 
					
						
							|  |  |  |             $notices[] = clone($notice); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-07-08 05:45:31 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         return $notices; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-07-08 05:45:31 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 04:10:49 +00:00
										 |  |  |     function getChannel() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $user = $this->user; | 
					
						
							|  |  |  |         $profile = $user->getProfile(); | 
					
						
							|  |  |  |         $c = array('url' => common_local_url('userrss', | 
					
						
							|  |  |  |                                              array('nickname' => | 
					
						
							|  |  |  |                                                    $user->nickname)), | 
					
						
							|  |  |  |                    'title' => $user->nickname, | 
					
						
							|  |  |  |                    'link' => $profile->profileurl, | 
					
						
							|  |  |  |                    'description' => sprintf(_('Microblog by %s'), $user->nickname)); | 
					
						
							|  |  |  |         return $c; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-07-08 05:45:31 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 04:10:49 +00:00
										 |  |  |     function getImage() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $user = $this->user; | 
					
						
							|  |  |  |         $profile = $user->getProfile(); | 
					
						
							|  |  |  |         if (!$profile) { | 
					
						
							|  |  |  |             common_log_db_error($user, 'SELECT', __FILE__); | 
					
						
							| 
									
										
										
										
											2009-01-15 23:03:38 +00:00
										 |  |  |             $this->serverError(_('User without matching profile')); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:21:29 -05:00
										 |  |  |             return null; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |         $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:21:29 -05:00
										 |  |  |         return ($avatar) ? $avatar->url : null; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-10-24 22:28:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     # override parent to add X-SUP-ID URL
 | 
					
						
							| 
									
										
										
										
											2009-02-20 17:30:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 04:10:49 +00:00
										 |  |  |     function initRss($limit=0) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-02-20 17:30:09 -05:00
										 |  |  |         $url = common_local_url('sup', null, null, $this->user->id); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         header('X-SUP-ID: '.$url); | 
					
						
							| 
									
										
										
										
											2009-01-23 04:10:49 +00:00
										 |  |  |         parent::initRss($limit); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-23 09:15:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-13 15:49:26 -04:00
										 |  |  |     function isReadOnly($args) | 
					
						
							| 
									
										
										
										
											2009-01-23 09:15:15 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-23 04:10:49 +00:00
										 |  |  | } |