2008-07-10 06:44:55 +09:00
|
|
|
<?php
|
2009-01-23 10:00:57 +09: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-10 06:44:55 +09:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
|
|
|
*
|
|
|
|
* 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 10:00:57 +09:00
|
|
|
if (!defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-07-10 06:44:55 +09:00
|
|
|
|
2009-01-23 10:00:57 +09:00
|
|
|
require_once INSTALLDIR.'/lib/searchaction.php';
|
|
|
|
require_once INSTALLDIR.'/lib/profilelist.php';
|
2008-07-10 06:44:55 +09:00
|
|
|
|
2009-01-23 10:00:57 +09: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-24 04:49:23 +09:00
|
|
|
class PeoplesearchAction extends SearchAction
|
|
|
|
{
|
2009-01-23 10:00:57 +09:00
|
|
|
function getInstructions()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2008-12-24 04:19:07 +09: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 08:10:31 +09:00
|
|
|
|
2009-01-23 10:00:57 +09:00
|
|
|
function title()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
return _('People search');
|
|
|
|
}
|
2008-07-10 14:12:01 +09:00
|
|
|
|
2009-01-23 10:00:57 +09:00
|
|
|
function showResults($q, $page)
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
$profile = new Profile();
|
2008-11-21 06:50:41 +09:00
|
|
|
$search_engine = $profile->getSearchEngine('identica_people');
|
2008-11-24 03:51:36 +09:00
|
|
|
$search_engine->set_sort_mode('chron');
|
2009-03-20 00:01:58 +09:00
|
|
|
// Ask for an extra to see if there's more.
|
2008-11-21 06:13:47 +09:00
|
|
|
$search_engine->limit((($page-1)*PROFILES_PER_PAGE), PROFILES_PER_PAGE + 1);
|
2008-11-24 03:51:36 +09:00
|
|
|
if (false === $search_engine->query($q)) {
|
|
|
|
$cnt = 0;
|
|
|
|
}
|
|
|
|
else {
|
2008-12-24 04:19:07 +09:00
|
|
|
$cnt = $profile->find();
|
|
|
|
}
|
|
|
|
if ($cnt > 0) {
|
|
|
|
$terms = preg_split('/[\s,]+/', $q);
|
2009-01-23 10:00:57 +09:00
|
|
|
$results = new PeopleSearchResults($profile, $terms, $this);
|
|
|
|
$results->show();
|
2009-04-06 08:11:40 +09:00
|
|
|
$profile->free();
|
|
|
|
$this->pagination($page > 1, $cnt > PROFILES_PER_PAGE,
|
|
|
|
$page, 'peoplesearch', array('q' => $q));
|
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
} else {
|
2009-04-06 08:11:40 +09:00
|
|
|
$this->element('p', 'error', _('No results.'));
|
2008-07-10 14:12:01 +09:00
|
|
|
|
2009-04-06 08:11:40 +09:00
|
|
|
$qe = urlencode($q);
|
|
|
|
$message = _(<<<E_O_T
|
|
|
|
* Make sure all words are spelled correctly.
|
|
|
|
* Try different keywords.
|
|
|
|
* Try more general keywords.
|
|
|
|
* Try fewer keywords.
|
2009-02-18 23:35:59 +09:00
|
|
|
|
2009-04-06 08:11:40 +09:00
|
|
|
You can also try your search on other engines:
|
|
|
|
|
|
|
|
* [Twingly](http://www.twingly.com/search?q=$qe&content=microblog&site=identi.ca)
|
|
|
|
* [Tweet scan](http://www.tweetscan.com/indexi.php?s=$qe)
|
|
|
|
* [Google](http://www.google.com/search?q=site%3Aidenti.ca+$qe)
|
|
|
|
* [Yahoo](http://search.yahoo.com/search?p=site%3Aidenti.ca+$qe)
|
|
|
|
|
|
|
|
E_O_T
|
|
|
|
);
|
|
|
|
$this->elementStart('div', 'blankfiller');
|
|
|
|
$this->raw(common_markup_to_html($message));
|
|
|
|
$this->elementEnd('div');
|
|
|
|
$profile->free();
|
|
|
|
}
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-11-20 19:50:27 +09:00
|
|
|
}
|
2008-07-10 14:12:01 +09:00
|
|
|
|