2008-11-21 06:13:47 +09:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-26 07:14:12 +09:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-26 07:12:20 +09:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-11-21 06:13:47 +09: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/>.
|
|
|
|
*/
|
|
|
|
|
2019-04-26 03:07:54 +09:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-11-21 06:13:47 +09:00
|
|
|
|
2008-12-24 04:49:23 +09:00
|
|
|
class SearchEngine
|
|
|
|
{
|
2008-11-24 03:51:36 +09:00
|
|
|
protected $target;
|
2008-11-21 06:50:41 +09:00
|
|
|
protected $table;
|
2008-11-21 06:13:47 +09:00
|
|
|
|
2008-12-24 04:33:23 +09:00
|
|
|
function __construct($target, $table)
|
|
|
|
{
|
2008-11-24 03:51:36 +09:00
|
|
|
$this->target = $target;
|
2008-11-21 06:50:41 +09:00
|
|
|
$this->table = $table;
|
2008-11-21 06:13:47 +09:00
|
|
|
}
|
|
|
|
|
2008-12-24 04:33:23 +09:00
|
|
|
function query($q)
|
|
|
|
{
|
2008-11-21 06:13:47 +09:00
|
|
|
}
|
|
|
|
|
2008-12-24 04:33:23 +09:00
|
|
|
function limit($offset, $count, $rss = false)
|
|
|
|
{
|
2008-11-24 03:51:36 +09:00
|
|
|
return $this->target->limit($offset, $count);
|
|
|
|
}
|
|
|
|
|
2008-12-24 04:33:23 +09:00
|
|
|
function set_sort_mode($mode)
|
|
|
|
{
|
2011-03-05 18:54:47 +09:00
|
|
|
switch ($mode) {
|
2019-04-26 03:07:54 +09:00
|
|
|
case 'chron':
|
|
|
|
return $this->target->orderBy('created DESC');
|
|
|
|
break;
|
|
|
|
case 'reverse_chron':
|
|
|
|
return $this->target->orderBy('created ASC');
|
|
|
|
break;
|
|
|
|
case 'nickname_desc':
|
|
|
|
if ($this->table != 'profile') {
|
|
|
|
throw new Exception(
|
|
|
|
'nickname_desc sort mode can only be use when searching profile.'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return $this->target->orderBy(sprintf('%1$s.nickname DESC', $this->table));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'nickname_asc':
|
|
|
|
if ($this->table != 'profile') {
|
|
|
|
throw new Exception(
|
|
|
|
'nickname_desc sort mode can only be use when searching profile.'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return $this->target->orderBy(sprintf('%1$s.nickname ASC', $this->table));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return $this->target->orderBy('created DESC');
|
|
|
|
break;
|
2011-03-05 18:54:47 +09:00
|
|
|
}
|
2008-11-21 06:13:47 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-24 04:49:23 +09:00
|
|
|
class MySQLSearch extends SearchEngine
|
|
|
|
{
|
2008-12-24 04:33:23 +09:00
|
|
|
function query($q)
|
|
|
|
{
|
2009-11-04 09:57:39 +09:00
|
|
|
if ('profile' === $this->table) {
|
2019-04-26 03:07:54 +09:00
|
|
|
$this->target->whereAdd(
|
|
|
|
sprintf('MATCH (%2$s.nickname, %2$s.fullname, %2$s.location, %2$s.bio, %2$s.homepage) ' .
|
|
|
|
'AGAINST ("%1$s" IN BOOLEAN MODE)',
|
|
|
|
$this->target->escape($q, true),
|
|
|
|
$this->table)
|
|
|
|
);
|
2009-03-20 00:01:58 +09:00
|
|
|
if (strtolower($q) != $q) {
|
2019-04-26 03:07:54 +09:00
|
|
|
$this->target->whereAdd(
|
|
|
|
sprintf('MATCH (%2$s.nickname, %2$s.fullname, %2$s.location, %2$s.bio, %2$s.homepage) ' .
|
|
|
|
'AGAINST ("%1$s" IN BOOLEAN MODE)',
|
|
|
|
$this->target->escape(strtolower($q), true),
|
|
|
|
$this->table),
|
|
|
|
'OR'
|
|
|
|
);
|
2009-03-20 00:01:58 +09:00
|
|
|
}
|
|
|
|
return true;
|
2009-11-04 09:57:39 +09:00
|
|
|
} else if ('notice' === $this->table) {
|
2009-06-20 12:21:57 +09:00
|
|
|
|
2009-11-10 04:01:46 +09:00
|
|
|
// Don't show imported notices
|
2009-08-19 15:34:17 +09:00
|
|
|
$this->target->whereAdd('notice.is_local != ' . Notice::GATEWAY);
|
2009-06-20 12:21:57 +09:00
|
|
|
|
2019-04-26 03:07:54 +09:00
|
|
|
$this->target->whereAdd(
|
|
|
|
sprintf('MATCH (%2$s.content) AGAINST ("%1$s" IN BOOLEAN MODE)',
|
|
|
|
$this->target->escape($q, true),
|
|
|
|
$this->table)
|
|
|
|
);
|
2009-03-20 00:01:58 +09:00
|
|
|
if (strtolower($q) != $q) {
|
2019-04-26 03:07:54 +09:00
|
|
|
$this->target->whereAdd(
|
|
|
|
sprintf('MATCH (%2$s.content) AGAINST ("%1$s" IN BOOLEAN MODE)',
|
|
|
|
$this->target->escape(strtolower($q), true),
|
|
|
|
$this->table),
|
|
|
|
'OR'
|
|
|
|
);
|
2009-03-20 00:01:58 +09:00
|
|
|
}
|
2009-06-20 12:21:57 +09:00
|
|
|
|
2009-03-20 00:01:58 +09:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
throw new ServerException('Unknown table: ' . $this->table);
|
|
|
|
}
|
2008-11-21 06:13:47 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-22 13:50:35 +09:00
|
|
|
class MySQLLikeSearch extends SearchEngine
|
|
|
|
{
|
|
|
|
function query($q)
|
|
|
|
{
|
2009-11-04 09:57:39 +09:00
|
|
|
if ('profile' === $this->table) {
|
2019-04-26 03:07:54 +09:00
|
|
|
$qry = sprintf('(%2$s.nickname LIKE "%%%1$s%%" OR ' .
|
|
|
|
' %2$s.fullname LIKE "%%%1$s%%" OR ' .
|
|
|
|
' %2$s.location LIKE "%%%1$s%%" OR ' .
|
|
|
|
' %2$s.bio LIKE "%%%1$s%%" OR ' .
|
|
|
|
' %2$s.homepage LIKE "%%%1$s%%")',
|
2015-10-10 19:16:12 +09:00
|
|
|
$this->target->escape($q, true),
|
|
|
|
$this->table);
|
2009-11-04 09:57:39 +09:00
|
|
|
} else if ('notice' === $this->table) {
|
2010-11-20 08:06:26 +09:00
|
|
|
$qry = sprintf('content LIKE "%%%1$s%%"', $this->target->escape($q, true));
|
2009-06-22 13:50:35 +09:00
|
|
|
} else {
|
|
|
|
throw new ServerException('Unknown table: ' . $this->table);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->target->whereAdd($qry);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-24 04:49:23 +09:00
|
|
|
class PGSearch extends SearchEngine
|
|
|
|
{
|
2008-12-24 04:33:23 +09:00
|
|
|
function query($q)
|
|
|
|
{
|
2009-11-04 09:57:39 +09:00
|
|
|
if ('profile' === $this->table) {
|
2019-04-26 03:07:54 +09:00
|
|
|
return $this->target->whereAdd('textsearch @@ plainto_tsquery(\'' . $this->target->escape($q) . '\')');
|
2009-11-04 09:57:39 +09:00
|
|
|
} else if ('notice' === $this->table) {
|
2009-06-20 12:21:57 +09:00
|
|
|
|
|
|
|
// XXX: We need to filter out gateway notices (notice.is_local = -2) --Zach
|
|
|
|
|
2019-04-26 03:07:54 +09:00
|
|
|
return $this->target->whereAdd('to_tsvector(\'english\', content) @@ plainto_tsquery(\'' . $this->target->escape($q) . '\')');
|
2009-03-20 00:01:58 +09:00
|
|
|
} else {
|
|
|
|
throw new ServerException('Unknown table: ' . $this->table);
|
|
|
|
}
|
2008-11-21 06:13:47 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|