Keep Twitter gateway notices from leaking thru MySQL notice search
This commit is contained in:
parent
f5b24133cb
commit
b8f3f32f3f
|
@ -118,12 +118,20 @@ class MySQLSearch extends SearchEngine
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
} else if ('identica_notices' === $this->table) {
|
} else if ('identica_notices' === $this->table) {
|
||||||
|
|
||||||
|
// Don't show imported notices
|
||||||
|
$this->target->whereAdd('notice.is_local != ' . NOTICE_GATEWAY);
|
||||||
|
|
||||||
|
if (strtolower($q) != $q) {
|
||||||
|
$this->target->whereAdd("( MATCH(content) AGAINST ('" . addslashes($q) .
|
||||||
|
"' IN BOOLEAN MODE)) OR ( MATCH(content) " .
|
||||||
|
"AGAINST ('" . addslashes(strtolower($q)) .
|
||||||
|
"' IN BOOLEAN MODE))");
|
||||||
|
} else {
|
||||||
$this->target->whereAdd('MATCH(content) ' .
|
$this->target->whereAdd('MATCH(content) ' .
|
||||||
'AGAINST (\''.addslashes($q).'\' IN BOOLEAN MODE)');
|
'AGAINST (\''.addslashes($q).'\' IN BOOLEAN MODE)');
|
||||||
if (strtolower($q) != $q) {
|
|
||||||
$this->target->whereAdd('MATCH(content) ' .
|
|
||||||
'AGAINST (\''.addslashes(strtolower($q)).'\' IN BOOLEAN MODE)', 'OR');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
throw new ServerException('Unknown table: ' . $this->table);
|
throw new ServerException('Unknown table: ' . $this->table);
|
||||||
|
@ -138,6 +146,9 @@ class PGSearch extends SearchEngine
|
||||||
if ('identica_people' === $this->table) {
|
if ('identica_people' === $this->table) {
|
||||||
return $this->target->whereAdd('textsearch @@ plainto_tsquery(\''.addslashes($q).'\')');
|
return $this->target->whereAdd('textsearch @@ plainto_tsquery(\''.addslashes($q).'\')');
|
||||||
} else if ('identica_notices' === $this->table) {
|
} else if ('identica_notices' === $this->table) {
|
||||||
|
|
||||||
|
// XXX: We need to filter out gateway notices (notice.is_local = -2) --Zach
|
||||||
|
|
||||||
return $this->target->whereAdd('to_tsvector(\'english\', content) @@ plainto_tsquery(\''.addslashes($q).'\')');
|
return $this->target->whereAdd('to_tsvector(\'english\', content) @@ plainto_tsquery(\''.addslashes($q).'\')');
|
||||||
} else {
|
} else {
|
||||||
throw new ServerException('Unknown table: ' . $this->table);
|
throw new ServerException('Unknown table: ' . $this->table);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user