| 
									
										
										
										
											2008-07-19 21:58:23 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Opensearch action class. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Action | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author   Robin Millette <millette@status.net> | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-08-25 18:14:12 -04:00
										 |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * Copyright (C) 2008, 2009, StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2008-07-19 21:58:23 -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/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-26 10:41:36 -04:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-07-19 21:58:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Opensearch action class. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Formatting of RSS handled by Rss10Action | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Action | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author   Robin Millette <millette@status.net> | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-12-23 14:49:23 -05:00
										 |  |  | class OpensearchAction extends Action | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Class handler. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args query arguments | 
					
						
							| 
									
										
										
										
											2011-02-17 20:58:22 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2009-11-09 20:01:46 +01:00
										 |  |  |      * @return boolean false if user doesn't exist | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         parent::handle($args); | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |         $type       = $this->trimmed('type'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $short_name = ''; | 
					
						
							|  |  |  |         if ($type == 'people') { | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |             $type       = 'peoplesearch'; | 
					
						
							| 
									
										
										
										
											2011-02-17 20:58:22 +01:00
										 |  |  |             // TRANS: ShortName in the OpenSearch interface when trying to find users.
 | 
					
						
							| 
									
										
										
										
											2009-11-08 23:22:13 +01:00
										 |  |  |             $short_name = _('People Search'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2009-01-22 05:20:29 +00:00
										 |  |  |             $type       = 'noticesearch'; | 
					
						
							| 
									
										
										
										
											2011-03-05 00:12:38 +01:00
										 |  |  |             // TRANS: ShortName in the OpenSearch interface when trying to find notices.
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             $short_name = _('Notice Search'); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-16 11:56:22 -07:00
										 |  |  |         header('Content-Type: application/opensearchdescription+xml'); | 
					
						
							| 
									
										
										
										
											2009-02-01 23:43:07 +00:00
										 |  |  |         $this->startXML(); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->elementStart('OpenSearchDescription', array('xmlns' => 'http://a9.com/-/spec/opensearch/1.1/')); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $short_name =  common_config('site', 'name').' '.$short_name; | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->element('ShortName', null, $short_name); | 
					
						
							|  |  |  |         $this->element('Contact', null, common_config('site', 'email')); | 
					
						
							|  |  |  |         $this->element('Url', array('type' => 'text/html', 'method' => 'get', | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                        'template' => str_replace('---', '{searchTerms}', common_local_url($type, array('q' => '---'))))); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->element('Image', array('height' => 16, 'width' => 16, 'type' => 'image/vnd.microsoft.icon'), common_path('favicon.ico')); | 
					
						
							| 
									
										
										
										
											2009-11-08 17:04:46 -05:00
										 |  |  |         $this->element('Image', array('height' => 50, 'width' => 50, 'type' => 'image/png'), Theme::path('logo.png')); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->element('AdultContent', null, 'false'); | 
					
						
							|  |  |  |         $this->element('Language', null, common_language()); | 
					
						
							|  |  |  |         $this->element('OutputEncoding', null, 'UTF-8'); | 
					
						
							|  |  |  |         $this->element('InputEncoding', null, 'UTF-8'); | 
					
						
							|  |  |  |         $this->elementEnd('OpenSearchDescription'); | 
					
						
							| 
									
										
										
										
											2009-02-01 23:43:07 +00:00
										 |  |  |         $this->endXML(); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-07-19 21:58:23 -04:00
										 |  |  | } |