]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/peoplesearch.php
Merge branch '0.8.x' of git://gitorious.org/~brion/statusnet/brion-fixes into 0.8.x
[quix0rs-gnu-social.git] / actions / peoplesearch.php
1 <?php
2 /**
3  * People search action class.
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @author   Robin Millette <millette@status.net>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://status.net/
13  *
14  * StatusNet - the 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('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/searchaction.php';
36 require_once INSTALLDIR.'/lib/profilelist.php';
37
38 /**
39  * People search action class.
40  *
41  * @category Action
42  * @package  StatusNet
43  * @author   Evan Prodromou <evan@status.net>
44  * @author   Robin Millette <millette@status.net>
45  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
46  * @link     http://status.net/
47  */
48 class PeoplesearchAction extends SearchAction
49 {
50     function getInstructions()
51     {
52         return _('Search for people on %%site.name%% by their name, location, or interests. ' .
53                   'Separate the terms by spaces; they must be 3 characters or more.');
54     }
55
56     function title()
57     {
58         return _('People search');
59     }
60
61     function showResults($q, $page)
62     {
63         $profile = new Profile();
64         $search_engine = $profile->getSearchEngine('identica_people');
65         $search_engine->set_sort_mode('chron');
66         // Ask for an extra to see if there's more.
67         $search_engine->limit((($page-1)*PROFILES_PER_PAGE), PROFILES_PER_PAGE + 1);
68         if (false === $search_engine->query($q)) {
69             $cnt = 0;
70         }
71         else {
72             $cnt = $profile->find();
73         }
74         if ($cnt > 0) {
75             $terms = preg_split('/[\s,]+/', $q);
76             $results = new PeopleSearchResults($profile, $terms, $this);
77             $results->show();
78             $profile->free();
79             $this->pagination($page > 1, $cnt > PROFILES_PER_PAGE,
80                           $page, 'peoplesearch', array('q' => $q));
81
82         } else {
83             $this->element('p', 'error', _('No results.'));
84             $this->searchSuggestions($q);
85             $profile->free();
86         }
87     }
88
89     function showScripts()
90     {
91         parent::showScripts();
92         $this->autofocus('q');
93     }
94 }
95
96 /**
97  * People search results class
98  *
99  * Derivative of ProfileList with specialization for highlighting search terms.
100  *
101  * @category Widget
102  * @package  StatusNet
103  * @author   Evan Prodromou <evan@status.net>
104  * @author   Robin Millette <millette@status.net>
105  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
106  * @link     http://status.net/
107  *
108  * @see PeoplesearchAction
109  */
110
111 class PeopleSearchResults extends ProfileList
112 {
113     var $terms = null;
114     var $pattern = null;
115
116     function __construct($profile, $terms, $action)
117     {
118         parent::__construct($profile, $action);
119
120         $this->terms = array_map('preg_quote',
121                                  array_map('htmlspecialchars', $terms));
122
123         $this->pattern = '/('.implode('|',$terms).')/i';
124     }
125
126     function newProfileItem($profile)
127     {
128         return new PeopleSearchResultItem($profile, $this->action);
129     }
130 }
131
132 class PeopleSearchResultItem extends ProfileListItem
133 {
134     function highlight($text)
135     {
136         return preg_replace($this->pattern, '<strong>\\1</strong>', htmlspecialchars($text));
137     }
138 }
139