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
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @author Robin Millette <millette@controlyourself.ca>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
|
|
|
* @link http://laconi.ca/
|
|
|
|
*
|
2008-07-09 22:44:55 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
2009-06-21 00:12:55 +01:00
|
|
|
* Copyright (C) 2008, 2009, Control Yourself, 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-01-23 01:00:57 +00:00
|
|
|
if (!defined('LACONICA')) {
|
|
|
|
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
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @author Robin Millette <millette@controlyourself.ca>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
|
|
|
* @link http://laconi.ca/
|
|
|
|
*/
|
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
|
|
|
{
|
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
|
|
|
{
|
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();
|
2008-11-20 21:50:41 +00:00
|
|
|
$search_engine = $profile->getSearchEngine('identica_people');
|
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 {
|
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
|
|
|
}
|
2008-11-20 10:50:27 +00:00
|
|
|
}
|
2008-07-10 06:12:01 +01:00
|
|
|
|