2008-11-20 21:13:47 +00:00
|
|
|
<?php
|
|
|
|
/*
|
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-11-20 21:13:47 +00: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')) { exit(1); }
|
2008-11-20 21:13:47 +00:00
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class SearchEngine
|
|
|
|
{
|
2008-11-23 18:51:36 +00:00
|
|
|
protected $target;
|
2008-11-20 21:50:41 +00:00
|
|
|
protected $table;
|
2008-11-20 21:13:47 +00:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function __construct($target, $table)
|
|
|
|
{
|
2008-11-23 18:51:36 +00:00
|
|
|
$this->target = $target;
|
2008-11-20 21:50:41 +00:00
|
|
|
$this->table = $table;
|
2008-11-20 21:13:47 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function query($q)
|
|
|
|
{
|
2008-11-20 21:13:47 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function limit($offset, $count, $rss = false)
|
|
|
|
{
|
2008-11-23 18:51:36 +00:00
|
|
|
return $this->target->limit($offset, $count);
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function set_sort_mode($mode)
|
|
|
|
{
|
2008-11-23 18:51:36 +00:00
|
|
|
if ('chron' === $mode)
|
|
|
|
return $this->target->orderBy('created desc');
|
2008-11-20 21:13:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class MySQLSearch extends SearchEngine
|
|
|
|
{
|
2008-12-23 19:33:23 +00:00
|
|
|
function query($q)
|
|
|
|
{
|
2009-11-04 00:57:39 +00:00
|
|
|
if ('profile' === $this->table) {
|
2009-03-19 15:01:58 +00:00
|
|
|
$this->target->whereAdd('MATCH(nickname, fullname, location, bio, homepage) ' .
|
|
|
|
'AGAINST (\''.addslashes($q).'\' IN BOOLEAN MODE)');
|
|
|
|
if (strtolower($q) != $q) {
|
|
|
|
$this->target->whereAdd('MATCH(nickname, fullname, location, bio, homepage) ' .
|
|
|
|
'AGAINST (\''.addslashes(strtolower($q)).'\' IN BOOLEAN MODE)', 'OR');
|
|
|
|
}
|
|
|
|
return true;
|
2009-11-04 00:57:39 +00:00
|
|
|
} else if ('notice' === $this->table) {
|
2009-06-20 04:21:57 +01:00
|
|
|
|
2009-11-09 19:01:46 +00:00
|
|
|
// Don't show imported notices
|
2009-08-19 07:34:17 +01:00
|
|
|
$this->target->whereAdd('notice.is_local != ' . Notice::GATEWAY);
|
2009-06-20 04:21:57 +01:00
|
|
|
|
2009-03-19 15:01:58 +00:00
|
|
|
if (strtolower($q) != $q) {
|
2009-06-20 04:21:57 +01:00
|
|
|
$this->target->whereAdd("( MATCH(content) AGAINST ('" . addslashes($q) .
|
|
|
|
"' IN BOOLEAN MODE)) OR ( MATCH(content) " .
|
|
|
|
"AGAINST ('" . addslashes(strtolower($q)) .
|
|
|
|
"' IN BOOLEAN MODE))");
|
|
|
|
} else {
|
2009-03-19 15:01:58 +00:00
|
|
|
$this->target->whereAdd('MATCH(content) ' .
|
2009-06-20 04:21:57 +01:00
|
|
|
'AGAINST (\''.addslashes($q).'\' IN BOOLEAN MODE)');
|
2009-03-19 15:01:58 +00:00
|
|
|
}
|
2009-06-20 04:21:57 +01:00
|
|
|
|
2009-03-19 15:01:58 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
throw new ServerException('Unknown table: ' . $this->table);
|
|
|
|
}
|
2008-11-20 21:13:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-22 05:50:35 +01:00
|
|
|
class MySQLLikeSearch extends SearchEngine
|
|
|
|
{
|
|
|
|
function query($q)
|
|
|
|
{
|
2009-11-04 00:57:39 +00:00
|
|
|
if ('profile' === $this->table) {
|
2009-06-22 05:50:35 +01:00
|
|
|
$qry = sprintf('(nickname LIKE "%%%1$s%%" OR '.
|
|
|
|
' fullname LIKE "%%%1$s%%" OR '.
|
|
|
|
' location LIKE "%%%1$s%%" OR '.
|
|
|
|
' bio LIKE "%%%1$s%%" OR '.
|
|
|
|
' homepage LIKE "%%%1$s%%")', addslashes($q));
|
2009-11-04 00:57:39 +00:00
|
|
|
} else if ('notice' === $this->table) {
|
2009-06-22 05:50:35 +01:00
|
|
|
$qry = sprintf('content LIKE "%%%1$s%%"', addslashes($q));
|
|
|
|
} else {
|
|
|
|
throw new ServerException('Unknown table: ' . $this->table);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->target->whereAdd($qry);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class PGSearch extends SearchEngine
|
|
|
|
{
|
2008-12-23 19:33:23 +00:00
|
|
|
function query($q)
|
|
|
|
{
|
2009-11-04 00:57:39 +00:00
|
|
|
if ('profile' === $this->table) {
|
2008-11-23 18:51:36 +00:00
|
|
|
return $this->target->whereAdd('textsearch @@ plainto_tsquery(\''.addslashes($q).'\')');
|
2009-11-04 00:57:39 +00:00
|
|
|
} else if ('notice' === $this->table) {
|
2009-06-20 04:21:57 +01:00
|
|
|
|
|
|
|
// XXX: We need to filter out gateway notices (notice.is_local = -2) --Zach
|
|
|
|
|
2008-11-23 18:51:36 +00:00
|
|
|
return $this->target->whereAdd('to_tsvector(\'english\', content) @@ plainto_tsquery(\''.addslashes($q).'\')');
|
2009-03-19 15:01:58 +00:00
|
|
|
} else {
|
|
|
|
throw new ServerException('Unknown table: ' . $this->table);
|
|
|
|
}
|
2008-11-20 21:13:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|