]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/groupsearch.php
change Laconica and Control Yourself to StatusNet in PHP files
[quix0rs-gnu-social.git] / actions / groupsearch.php
1 <?php
2 /**
3  * Group search action class.
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@controlyourself.ca>
10  * @author   Robin Millette <millette@controlyourself.ca>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://laconi.ca/
13  *
14  * StatusNet - a distributed open-source microblogging tool
15  * Copyright (C) 2008, 2009, StatusNet, Inc.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU Affero General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU Affero General Public License for more details.
26  *
27  * You should have received a copy of the GNU Affero General Public License
28  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
29  */
30
31 if (!defined('LACONICA')) {
32     exit(1);
33 }
34
35 //require_once INSTALLDIR.'/lib/searchaction.php';
36 //require_once INSTALLDIR.'/lib/profilelist.php';
37
38 /**
39  * Group search action class.
40  *
41  * @category Action
42  * @package  StatusNet
43  * @author   Evan Prodromou <evan@controlyourself.ca>
44  * @author   Robin Millette <millette@controlyourself.ca>
45  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
46  * @link     http://laconi.ca/
47  */
48 class GroupsearchAction extends SearchAction
49 {
50     function getInstructions()
51     {
52         return _('Search for groups on %%site.name%% by their name, location, or description. ' .
53                   'Separate the terms by spaces; they must be 3 characters or more.');
54     }
55
56     function title()
57     {
58         return _('Group search');
59     }
60
61     function showResults($q, $page)
62     {
63         $user_group = new User_group;
64         $user_group->limit((($page-1)*GROUPS_PER_PAGE), GROUPS_PER_PAGE + 1);
65         $wheres = array('nickname', 'fullname', 'homepage', 'description', 'location');
66         foreach ($wheres as $where) {
67             $where_q = "$where like '%" . trim($user_group->escape($q), '\'') . '%\'';
68             $user_group->whereAdd($where_q, 'OR');
69         }
70         $cnt = $user_group->find();
71         if ($cnt > 0) {
72             $terms = preg_split('/[\s,]+/', $q);
73             $results = new GroupSearchResults($user_group, $terms, $this);
74             $results->show();
75             $user_group->free();
76             $this->pagination($page > 1, $cnt > GROUPS_PER_PAGE,
77                           $page, 'groupsearch', array('q' => $q));
78         } else {
79             $this->element('p', 'error', _('No results.'));
80             $this->searchSuggestions($q);
81             if (common_logged_in()) {
82                 $message = _('If you can\'t find the group you\'re looking for, you can [create it](%%action.newgroup%%) yourself.');
83             }
84             else {
85                 $message = sprintf(_('Why not [register an account](%%%%action.%s%%%%) and [create the group](%%%%action.newgroup%%%%) yourself!'),
86                                    (!common_config('site','openidonly')) ? 'register' : 'openidlogin');
87             }
88             $this->elementStart('div', 'guide');
89             $this->raw(common_markup_to_html($message));
90             $this->elementEnd('div');
91             $user_group->free();
92         }
93     }
94 }
95
96 class GroupSearchResults extends GroupList
97 {
98     var $terms = null;
99     var $pattern = null;
100
101     function __construct($user_group, $terms, $action)
102     {
103         parent::__construct($user_group, $terms, $action);
104         $this->terms = array_map('preg_quote',
105                                  array_map('htmlspecialchars', $terms));
106         $this->pattern = '/('.implode('|',$terms).')/i';
107     }
108
109     function highlight($text)
110     {
111         return preg_replace($this->pattern, '<strong>\\1</strong>', htmlspecialchars($text));
112     }
113 }
114