2008-07-09 22:44:55 +01:00
|
|
|
<?php
|
2009-01-23 01:00:57 +00:00
|
|
|
/**
|
|
|
|
* People search action class.
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Robin Millette <millette@status.net>
|
2009-01-23 01:00:57 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-23 01:00:57 +00:00
|
|
|
*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-07-09 22:44:55 +01: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 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-23 01:00:57 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2008-07-09 22:44:55 +01:00
|
|
|
|
2009-01-23 01:00:57 +00:00
|
|
|
require_once INSTALLDIR.'/lib/searchaction.php';
|
|
|
|
require_once INSTALLDIR.'/lib/profilelist.php';
|
2008-07-09 22:44:55 +01:00
|
|
|
|
2009-01-23 01:00:57 +00:00
|
|
|
/**
|
|
|
|
* People search action class.
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Robin Millette <millette@status.net>
|
2009-01-23 01:00:57 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-23 01:00:57 +00:00
|
|
|
*/
|
2008-12-23 19:49:23 +00:00
|
|
|
class PeoplesearchAction extends SearchAction
|
|
|
|
{
|
2009-01-23 01:00:57 +00:00
|
|
|
function getInstructions()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2011-02-17 19:58:22 +00:00
|
|
|
// TRANS: Instructions for the "People search" page.
|
|
|
|
// TRANS: %%site.name%% is the name of the StatusNet site.
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('Search for people on %%site.name%% by their name, location, or interests. ' .
|
|
|
|
'Separate the terms by spaces; they must be 3 characters or more.');
|
|
|
|
}
|
2008-07-10 00:10:31 +01:00
|
|
|
|
2009-01-23 01:00:57 +00:00
|
|
|
function title()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2011-02-17 19:58:22 +00:00
|
|
|
// TRANS: Title of a page where users can search for other users.
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('People search');
|
|
|
|
}
|
2008-07-10 06:12:01 +01:00
|
|
|
|
2009-01-23 01:00:57 +00:00
|
|
|
function showResults($q, $page)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$profile = new Profile();
|
2009-11-04 00:57:39 +00:00
|
|
|
$search_engine = $profile->getSearchEngine('profile');
|
2008-11-23 18:51:36 +00:00
|
|
|
$search_engine->set_sort_mode('chron');
|
2009-03-19 15:01:58 +00:00
|
|
|
// Ask for an extra to see if there's more.
|
2008-11-20 21:13:47 +00:00
|
|
|
$search_engine->limit((($page-1)*PROFILES_PER_PAGE), PROFILES_PER_PAGE + 1);
|
2008-11-23 18:51:36 +00:00
|
|
|
if (false === $search_engine->query($q)) {
|
|
|
|
$cnt = 0;
|
|
|
|
}
|
|
|
|
else {
|
2008-12-23 19:19:07 +00:00
|
|
|
$cnt = $profile->find();
|
|
|
|
}
|
|
|
|
if ($cnt > 0) {
|
|
|
|
$terms = preg_split('/[\s,]+/', $q);
|
2009-01-23 01:00:57 +00:00
|
|
|
$results = new PeopleSearchResults($profile, $terms, $this);
|
|
|
|
$results->show();
|
2009-04-06 00:11:40 +01:00
|
|
|
$profile->free();
|
|
|
|
$this->pagination($page > 1, $cnt > PROFILES_PER_PAGE,
|
|
|
|
$page, 'peoplesearch', array('q' => $q));
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2011-02-17 19:58:22 +00:00
|
|
|
// TRANS: Message on the "People search" page where a query has no results.
|
2009-04-06 00:11:40 +01:00
|
|
|
$this->element('p', 'error', _('No results.'));
|
2009-04-06 02:14:59 +01:00
|
|
|
$this->searchSuggestions($q);
|
2009-04-06 00:11:40 +01:00
|
|
|
$profile->free();
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-03 20:42:50 +01:00
|
|
|
|
|
|
|
function showScripts()
|
|
|
|
{
|
|
|
|
parent::showScripts();
|
|
|
|
$this->autofocus('q');
|
|
|
|
}
|
2008-11-20 10:50:27 +00:00
|
|
|
}
|
2008-07-10 06:12:01 +01:00
|
|
|
|
2009-07-03 15:10:12 +01:00
|
|
|
/**
|
|
|
|
* People search results class
|
|
|
|
*
|
|
|
|
* Derivative of ProfileList with specialization for highlighting search terms.
|
|
|
|
*
|
|
|
|
* @category Widget
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Robin Millette <millette@status.net>
|
2009-07-03 15:10:12 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-07-03 15:10:12 +01:00
|
|
|
*
|
|
|
|
* @see PeoplesearchAction
|
|
|
|
*/
|
|
|
|
|
|
|
|
class PeopleSearchResults extends ProfileList
|
|
|
|
{
|
|
|
|
var $terms = null;
|
|
|
|
var $pattern = null;
|
|
|
|
|
|
|
|
function __construct($profile, $terms, $action)
|
|
|
|
{
|
|
|
|
parent::__construct($profile, $action);
|
|
|
|
|
|
|
|
$this->terms = array_map('preg_quote',
|
|
|
|
array_map('htmlspecialchars', $terms));
|
|
|
|
|
|
|
|
$this->pattern = '/('.implode('|',$terms).')/i';
|
|
|
|
}
|
|
|
|
|
|
|
|
function newProfileItem($profile)
|
|
|
|
{
|
|
|
|
return new PeopleSearchResultItem($profile, $this->action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class PeopleSearchResultItem extends ProfileListItem
|
|
|
|
{
|
|
|
|
function highlight($text)
|
|
|
|
{
|
|
|
|
return preg_replace($this->pattern, '<strong>\\1</strong>', htmlspecialchars($text));
|
|
|
|
}
|
|
|
|
}
|