| 
									
										
										
										
											2009-01-23 07:50:55 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Group search 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-23 07:50:55 +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-23 07:50:55 +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. | 
					
						
							| 
									
										
										
										
											2009-01-23 07:50:55 +00: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-23 07:50:55 +00:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //require_once INSTALLDIR.'/lib/searchaction.php';
 | 
					
						
							|  |  |  | //require_once INSTALLDIR.'/lib/profilelist.php';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Group search action class. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @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-23 07:50:55 +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-23 07:50:55 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | class GroupsearchAction extends SearchAction | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     function getInstructions() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-01-31 18:16:55 +01:00
										 |  |  |         // TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
 | 
					
						
							| 
									
										
										
										
											2009-01-23 07:50:55 +00:00
										 |  |  |         return _('Search for groups on %%site.name%% by their name, location, or description. ' . | 
					
						
							|  |  |  |                   'Separate the terms by spaces; they must be 3 characters or more.'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function title() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-01-31 18:16:55 +01:00
										 |  |  |         // TRANS: Title for page where groups can be searched.
 | 
					
						
							| 
									
										
										
										
											2009-01-23 07:50:55 +00:00
										 |  |  |         return _('Group search'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showResults($q, $page) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $user_group = new User_group; | 
					
						
							|  |  |  |         $user_group->limit((($page-1)*GROUPS_PER_PAGE), GROUPS_PER_PAGE + 1); | 
					
						
							|  |  |  |         $wheres = array('nickname', 'fullname', 'homepage', 'description', 'location'); | 
					
						
							|  |  |  |         foreach ($wheres as $where) { | 
					
						
							|  |  |  |             $where_q = "$where like '%" . trim($user_group->escape($q), '\'') . '%\''; | 
					
						
							|  |  |  |             $user_group->whereAdd($where_q, 'OR'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $cnt = $user_group->find(); | 
					
						
							|  |  |  |         if ($cnt > 0) { | 
					
						
							|  |  |  |             $terms = preg_split('/[\s,]+/', $q); | 
					
						
							|  |  |  |             $results = new GroupSearchResults($user_group, $terms, $this); | 
					
						
							|  |  |  |             $results->show(); | 
					
						
							| 
									
										
										
										
											2009-04-07 03:26:33 +00:00
										 |  |  |             $user_group->free(); | 
					
						
							|  |  |  |             $this->pagination($page > 1, $cnt > GROUPS_PER_PAGE, | 
					
						
							|  |  |  |                           $page, 'groupsearch', array('q' => $q)); | 
					
						
							| 
									
										
										
										
											2009-01-23 07:50:55 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2011-01-31 18:16:55 +01:00
										 |  |  |             // TRANS: Text on page where groups can be searched if no results were found for a query.
 | 
					
						
							| 
									
										
										
										
											2009-04-07 03:26:33 +00:00
										 |  |  |             $this->element('p', 'error', _('No results.')); | 
					
						
							|  |  |  |             $this->searchSuggestions($q); | 
					
						
							|  |  |  |             if (common_logged_in()) { | 
					
						
							| 
									
										
										
										
											2011-01-31 18:16:55 +01:00
										 |  |  |                 // TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
 | 
					
						
							|  |  |  |                 // TRANS: This message contains Markdown links in the form [link text](link).
 | 
					
						
							|  |  |  |                 $message = _('If you cannot find the group you\'re looking for, you can [create it](%%action.newgroup%%) yourself.'); | 
					
						
							| 
									
										
										
										
											2009-04-07 03:26:33 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							| 
									
										
										
										
											2011-01-31 18:16:55 +01:00
										 |  |  |                 // TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
 | 
					
						
							|  |  |  |                 // TRANS: This message contains Markdown links in the form [link text](link).
 | 
					
						
							| 
									
										
										
										
											2009-08-21 16:45:42 -04:00
										 |  |  |                 $message = _('Why not [register an account](%%action.register%%) and [create the group](%%action.newgroup%%) yourself!'); | 
					
						
							| 
									
										
										
										
											2009-04-07 03:26:33 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-04-07 21:09:27 +00:00
										 |  |  |             $this->elementStart('div', 'guide'); | 
					
						
							| 
									
										
										
										
											2009-04-07 03:26:33 +00:00
										 |  |  |             $this->raw(common_markup_to_html($message)); | 
					
						
							|  |  |  |             $this->elementEnd('div'); | 
					
						
							|  |  |  |             $user_group->free(); | 
					
						
							| 
									
										
										
										
											2009-01-23 07:50:55 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-09-03 19:42:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function showScripts() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::showScripts(); | 
					
						
							|  |  |  |         $this->autofocus('q'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-23 07:50:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class GroupSearchResults extends GroupList | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     var $terms = null; | 
					
						
							|  |  |  |     var $pattern = null; | 
					
						
							| 
									
										
										
										
											2009-03-19 11:01:58 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 07:50:55 +00:00
										 |  |  |     function __construct($user_group, $terms, $action) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-10-07 16:18:05 +08:00
										 |  |  |         parent::__construct($user_group, null, $action); | 
					
						
							| 
									
										
										
										
											2009-03-19 11:01:58 -04:00
										 |  |  |         $this->terms = array_map('preg_quote', | 
					
						
							| 
									
										
										
										
											2009-01-23 07:50:55 +00:00
										 |  |  |                                  array_map('htmlspecialchars', $terms)); | 
					
						
							|  |  |  |         $this->pattern = '/('.implode('|',$terms).')/i'; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-19 11:01:58 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 07:50:55 +00:00
										 |  |  |     function highlight($text) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return preg_replace($this->pattern, '<strong>\\1</strong>', htmlspecialchars($text)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |