2008-07-10 00:00:17 +01:00
|
|
|
<?php
|
2009-01-23 01:22:17 +00:00
|
|
|
/**
|
|
|
|
* Notice search action class.
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Action
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @author Robin Millette <millette@controlyourself.ca>
|
2009-01-24 00:58:12 +00:00
|
|
|
* @author Sarven Capadisli <csarven@controlyourself.ca>
|
2009-01-23 01:22:17 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
|
|
|
* @link http://laconi.ca/
|
|
|
|
*
|
2008-07-10 00:00:17 +01: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 01:22:17 +00:00
|
|
|
if (!defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-07-10 00:00:17 +01:00
|
|
|
|
2009-01-23 01:22:17 +00:00
|
|
|
require_once INSTALLDIR.'/lib/searchaction.php';
|
2008-07-10 00:00:17 +01:00
|
|
|
|
2009-01-23 01:22:17 +00:00
|
|
|
/**
|
|
|
|
* Notice 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/
|
|
|
|
* @todo common parent for people and content search?
|
|
|
|
*/
|
2008-12-23 19:49:23 +00:00
|
|
|
class NoticesearchAction extends SearchAction
|
|
|
|
{
|
2009-02-06 00:16:10 +00:00
|
|
|
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
|
|
|
common_set_returnto($this->selfUrl());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-02-11 16:37:50 +00:00
|
|
|
|
2009-01-23 01:22:17 +00:00
|
|
|
/**
|
|
|
|
* Get instructions
|
2009-02-11 16:37:50 +00:00
|
|
|
*
|
|
|
|
* @return string instruction text
|
2009-01-23 01:22:17 +00:00
|
|
|
*/
|
|
|
|
function getInstructions()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more.');
|
|
|
|
}
|
2008-07-10 06:12:01 +01:00
|
|
|
|
2009-01-23 01:22:17 +00:00
|
|
|
/**
|
|
|
|
* Get title
|
2009-02-11 16:37:50 +00:00
|
|
|
*
|
2009-01-23 01:22:17 +00:00
|
|
|
* @return string title
|
|
|
|
*/
|
|
|
|
function title()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('Text search');
|
|
|
|
}
|
2008-07-10 06:12:01 +01:00
|
|
|
|
2009-02-11 16:37:50 +00:00
|
|
|
function getFeeds()
|
2009-02-10 22:04:47 +00:00
|
|
|
{
|
|
|
|
$q = $this->trimmed('q');
|
|
|
|
|
|
|
|
if (!$q) {
|
2009-02-11 16:37:50 +00:00
|
|
|
return null;
|
2009-02-10 22:04:47 +00:00
|
|
|
}
|
|
|
|
|
2009-02-11 16:37:50 +00:00
|
|
|
return array(new Feed(Feed::RSS1, common_local_url('noticesearchrss',
|
|
|
|
array('q' => $q)),
|
|
|
|
sprintf(_('Search results for "%s" on %s'),
|
|
|
|
$q, common_config('site', 'name'))));
|
2009-02-10 22:04:47 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 01:22:17 +00:00
|
|
|
/**
|
|
|
|
* Show results
|
|
|
|
*
|
|
|
|
* @param string $q search query
|
|
|
|
* @param integer $page page number
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showResults($q, $page)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-23 01:22:17 +00:00
|
|
|
$notice = new Notice();
|
|
|
|
$q = strtolower($q);
|
2008-11-20 21:50:41 +00:00
|
|
|
$search_engine = $notice->getSearchEngine('identica_notices');
|
2008-11-23 18:51:36 +00:00
|
|
|
$search_engine->set_sort_mode('chron');
|
2009-01-23 01:22:17 +00:00
|
|
|
// Ask for an extra to see if there's more.
|
2008-12-23 19:19:07 +00:00
|
|
|
$search_engine->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
|
2008-11-23 18:51:36 +00:00
|
|
|
if (false === $search_engine->query($q)) {
|
|
|
|
$cnt = 0;
|
2009-01-23 01:22:17 +00:00
|
|
|
} else {
|
2008-12-23 19:19:07 +00:00
|
|
|
$cnt = $notice->find();
|
2008-11-23 18:51:36 +00:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($cnt > 0) {
|
|
|
|
$terms = preg_split('/[\s,]+/', $q);
|
2009-01-24 00:58:12 +00:00
|
|
|
$this->elementStart('ul', array('class' => 'notices'));
|
2008-12-23 19:19:07 +00:00
|
|
|
for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
|
|
|
|
if ($notice->fetch()) {
|
2009-01-23 01:22:17 +00:00
|
|
|
$this->showNotice($notice, $terms);
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
// shouldn't happen!
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('ul');
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('p', 'error', _('No results'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 01:22:17 +00:00
|
|
|
$this->pagination($page > 1, $cnt > NOTICES_PER_PAGE,
|
2008-12-23 19:19:07 +00:00
|
|
|
$page, 'noticesearch', array('q' => $q));
|
|
|
|
}
|
|
|
|
|
2009-01-23 01:22:17 +00:00
|
|
|
/**
|
|
|
|
* Show notice
|
|
|
|
*
|
|
|
|
* @param class $notice notice
|
|
|
|
* @param array $terms terms to highlight
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
* @todo refactor and combine with StreamAction::showNotice()
|
|
|
|
*/
|
|
|
|
function showNotice($notice, $terms)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$profile = $notice->getProfile();
|
|
|
|
if (!$profile) {
|
|
|
|
common_log_db_error($notice, 'SELECT', __FILE__);
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('Notice without matching profile'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-01-23 01:22:17 +00:00
|
|
|
// XXX: RDFa
|
2009-01-24 00:58:12 +00:00
|
|
|
$this->elementStart('li', array('class' => 'hentry notice',
|
2008-12-23 19:19:07 +00:00
|
|
|
'id' => 'notice-' . $notice->id));
|
2009-01-24 00:58:12 +00:00
|
|
|
|
|
|
|
$this->elementStart('div', 'entry-title');
|
|
|
|
$this->elementStart('span', 'vcard author');
|
2008-12-23 19:19:07 +00:00
|
|
|
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
|
2009-02-05 21:26:06 +00:00
|
|
|
$this->elementStart('a', array('href' => $profile->profileurl,
|
|
|
|
'class' => 'url'));
|
2009-02-06 08:13:08 +00:00
|
|
|
$this->element('img', array('src' => ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_STREAM_SIZE),
|
2009-01-24 00:58:12 +00:00
|
|
|
'class' => 'avatar photo',
|
2008-12-23 19:19:07 +00:00
|
|
|
'width' => AVATAR_STREAM_SIZE,
|
|
|
|
'height' => AVATAR_STREAM_SIZE,
|
|
|
|
'alt' =>
|
|
|
|
($profile->fullname) ? $profile->fullname :
|
|
|
|
$profile->nickname));
|
2009-01-24 00:58:12 +00:00
|
|
|
$this->element('span', 'nickname fn', $profile->nickname);
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('a');
|
2009-01-24 00:58:12 +00:00
|
|
|
$this->elementEnd('span');
|
|
|
|
|
2009-01-23 01:22:17 +00:00
|
|
|
// FIXME: URL, image, video, audio
|
2009-01-24 00:58:12 +00:00
|
|
|
$this->elementStart('p', array('class' => 'entry-content'));
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($notice->rendered) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->raw($this->highlight($notice->rendered, $terms));
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-23 01:22:17 +00:00
|
|
|
// XXX: may be some uncooked notices in the DB,
|
|
|
|
// we cook them right now. This should probably disappear in future
|
|
|
|
// versions (>> 0.4.x)
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->raw($this->highlight(common_render_content($notice->content, $notice), $terms));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('p');
|
2009-01-24 00:58:12 +00:00
|
|
|
$this->elementEnd('div');
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
|
2009-01-24 00:58:12 +00:00
|
|
|
$this->elementStart('div', 'entry-content');
|
|
|
|
$this->elementStart('dl', 'timestamp');
|
|
|
|
$this->element('dt', null, _('Published'));
|
|
|
|
$this->elementStart('dd', null);
|
|
|
|
$this->elementStart('a', array('rel' => 'bookmark',
|
|
|
|
'href' => $noticeurl));
|
|
|
|
$dt = common_date_iso8601($notice->created);
|
|
|
|
$this->element('abbr', array('class' => 'published',
|
|
|
|
'title' => $dt),
|
|
|
|
common_date_string($notice->created));
|
|
|
|
$this->elementEnd('a');
|
|
|
|
$this->elementEnd('dd');
|
|
|
|
$this->elementEnd('dl');
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($notice->reply_to) {
|
2009-01-24 00:58:12 +00:00
|
|
|
$replyurl = common_local_url('shownotice',
|
|
|
|
array('notice' => $this->notice->reply_to));
|
|
|
|
$this->elementStart('dl', 'response');
|
|
|
|
$this->element('dt', null, _('To'));
|
|
|
|
$this->elementStart('dd');
|
|
|
|
$this->element('a', array('href' => $replyurl,
|
|
|
|
'rel' => 'in-reply-to'),
|
|
|
|
_('in reply to'));
|
|
|
|
$this->elementEnd('dd');
|
|
|
|
$this->elementEnd('dl');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-24 03:14:27 +00:00
|
|
|
$this->elementEnd('div');
|
|
|
|
|
|
|
|
$this->elementStart('div', 'notice-options');
|
2009-01-24 00:58:12 +00:00
|
|
|
|
|
|
|
$reply_url = common_local_url('newnotice',
|
|
|
|
array('replyto' => $profile->nickname));
|
|
|
|
|
|
|
|
$this->elementStart('dl', 'notice_reply');
|
|
|
|
$this->element('dt', null, _('Reply to this notice'));
|
|
|
|
$this->elementStart('dd');
|
|
|
|
$this->elementStart('a', array('href' => $reply_url,
|
|
|
|
'title' => _('Reply to this notice')));
|
|
|
|
$this->text(_('Reply'));
|
|
|
|
$this->element('span', 'notice_id', $notice->id);
|
|
|
|
$this->elementEnd('a');
|
|
|
|
$this->elementEnd('dd');
|
|
|
|
$this->elementEnd('dl');
|
|
|
|
$this->elementEnd('div');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('li');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 01:22:17 +00:00
|
|
|
/**
|
|
|
|
* Highlist query terms
|
|
|
|
*
|
|
|
|
* @param string $text notice text
|
|
|
|
* @param array $terms terms to highlight
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-12-23 19:33:23 +00:00
|
|
|
function highlight($text, $terms)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
/* Highligh serach terms */
|
2009-01-23 01:22:17 +00:00
|
|
|
$pattern = '/('.implode('|', array_map('htmlspecialchars', $terms)).')/i';
|
|
|
|
$result = preg_replace($pattern, '<strong>\\1</strong>', $text);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
/* Remove highlighting from inside links, loop incase multiple highlights in links */
|
2009-01-23 01:22:17 +00:00
|
|
|
$pattern = '/(href="[^"]*)<strong>('.implode('|', array_map('htmlspecialchars', $terms)).')<\/strong>([^"]*")/iU';
|
2008-12-23 19:19:07 +00:00
|
|
|
do {
|
|
|
|
$result = preg_replace($pattern, '\\1\\2\\3', $result, -1, $count);
|
|
|
|
} while ($count);
|
|
|
|
return $result;
|
|
|
|
}
|
2009-01-23 09:15:15 +00:00
|
|
|
|
|
|
|
function isReadOnly()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-07-10 00:00:17 +01:00
|
|
|
}
|
2009-01-23 01:22:17 +00:00
|
|
|
|