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