| 
									
										
										
										
											2008-09-26 12:09:41 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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 GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @copyright 2008, 2009 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2008-09-26 12:09:41 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2008-09-26 12:09:41 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-16 09:01:59 -08:00
										 |  |  | class Memcached_DataObject extends Safe_DataObject | 
					
						
							| 
									
										
										
										
											2008-09-26 12:09:41 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-04 14:38:56 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Wrapper for DB_DataObject's static lookup using memcached | 
					
						
							|  |  |  |      * as backing instead of an in-process cache array. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $cls classname of object type to load | 
					
						
							|  |  |  |      * @param mixed $k key field name, or value for primary key | 
					
						
							|  |  |  |      * @param mixed $v key field value, or leave out for primary key lookup | 
					
						
							|  |  |  |      * @return mixed Memcached_DataObject subtype or false | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function getClassKV($cls, $k, $v = null) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         if (is_null($v)) { | 
					
						
							|  |  |  |             $v = $k; | 
					
						
							| 
									
										
										
										
											2015-06-04 21:51:56 +02:00
										 |  |  |             $keys = static::pkeyCols(); | 
					
						
							| 
									
										
										
										
											2011-08-23 00:14:20 -04:00
										 |  |  |             if (count($keys) > 1) { | 
					
						
							| 
									
										
										
										
											2013-08-18 15:42:51 +02:00
										 |  |  |                 // FIXME: maybe call pkeyGetClass() ourselves?
 | 
					
						
							|  |  |  |                 throw new Exception('Use pkeyGetClass() for compound primary keys'); | 
					
						
							| 
									
										
										
										
											2011-08-23 00:14:20 -04:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             $k = $keys[0]; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-08-19 11:40:35 +02:00
										 |  |  |         $i = self::getcached($cls, $k, $v); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |         if ($i === false) { // false == cache miss
 | 
					
						
							| 
									
										
										
										
											2013-08-19 11:40:35 +02:00
										 |  |  |             $i = new $cls; | 
					
						
							| 
									
										
										
										
											2010-01-01 10:57:22 -10:00
										 |  |  |             $result = $i->get($k, $v); | 
					
						
							|  |  |  |             if ($result) { | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |                 // Hit!
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                 $i->encache(); | 
					
						
							| 
									
										
										
										
											2010-01-01 10:57:22 -10:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |                 // save the fact that no such row exists
 | 
					
						
							|  |  |  |                 $c = self::memcache(); | 
					
						
							|  |  |  |                 if (!empty($c)) { | 
					
						
							|  |  |  |                     $ck = self::cachekey($cls, $k, $v); | 
					
						
							|  |  |  |                     $c->set($ck, null); | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2010-01-12 12:20:45 -08:00
										 |  |  |                 $i = false; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |         return $i; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-19 17:38:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-14 14:41:30 -04:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get multiple items from the database by key | 
					
						
							| 
									
										
										
										
											2011-08-19 17:38:43 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |      * @param  string $cls       Class to fetch | 
					
						
							|  |  |  |      * @param  string $keyCol    name of column for key | 
					
						
							|  |  |  |      * @param  array  $keyVals   key values to fetch | 
					
						
							|  |  |  |      * @param  bool   $skipNulls return only non-null results | 
					
						
							|  |  |  |      * @param  bool   $preserve  return the same tuples as input | 
					
						
							|  |  |  |      * @return object An object with tuples to be fetched, in order | 
					
						
							| 
									
										
										
										
											2011-07-14 14:41:30 -04:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |     public static function multiGetClass( | 
					
						
							|  |  |  |         string $cls, | 
					
						
							|  |  |  |         string $keyCol, | 
					
						
							|  |  |  |         array  $keyVals, | 
					
						
							|  |  |  |         bool   $skipNulls, | 
					
						
							|  |  |  |         bool   $preserve | 
					
						
							|  |  |  |     ): object { | 
					
						
							|  |  |  |         $obj = new $cls(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Do not select anything extra
 | 
					
						
							|  |  |  |         $obj->selectAdd(); | 
					
						
							|  |  |  |         $obj->selectAdd($obj->escapedTableName() . '.*'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // A PHP-compatible datatype to check against
 | 
					
						
							|  |  |  |         $col_type = $obj->columnType($keyCol); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // The code below assumes one of the two results
 | 
					
						
							|  |  |  |         if (!in_array($col_type, ['int', 'string'])) { | 
					
						
							|  |  |  |             throw new ServerException( | 
					
						
							|  |  |  |                 'Cannot do multiGet on anything but integer or string columns' | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2014-06-02 00:13:54 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |         // Actually need to know if MariaDB or Oracle MySQL this time
 | 
					
						
							|  |  |  |         $db_type = common_config('db', 'type'); | 
					
						
							|  |  |  |         if ($db_type === 'mysql') { | 
					
						
							|  |  |  |             $tmp_obj = new $cls(); | 
					
						
							|  |  |  |             $tmp_obj->query('SELECT 0 /*M! + 1 */ AS is_mariadb;'); | 
					
						
							|  |  |  |             if ($tmp_obj->fetch() && $tmp_obj->is_mariadb) { | 
					
						
							|  |  |  |                 $db_type = 'mariadb'; | 
					
						
							| 
									
										
										
										
											2016-03-23 17:51:13 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-02 00:13:54 +02:00
										 |  |  |         // Since we're inputting straight to a query: format and escape
 | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |         $vals_escaped = []; | 
					
						
							|  |  |  |         foreach (array_values($keyVals) as $i => $val) { | 
					
						
							|  |  |  |             if (is_null($val)) { | 
					
						
							|  |  |  |                 $val_escaped = 'NULL'; | 
					
						
							|  |  |  |             } elseif ($col_type === 'int') { | 
					
						
							|  |  |  |                 $val_escaped = (string)(int) $val; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $val_escaped = "'{$obj->escape($val)}'"; | 
					
						
							| 
									
										
										
										
											2020-06-27 11:22:19 +03:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |             if ($db_type !== 'mariadb') { | 
					
						
							|  |  |  |                 $vals_escaped[] = $val_escaped; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 // A completely different approach for MariaDB (see below)
 | 
					
						
							|  |  |  |                 $vals_escaped[] = "({$val_escaped},{$i})"; | 
					
						
							| 
									
										
										
										
											2020-06-27 11:22:19 +03:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // One way to guarantee that there is no name collision
 | 
					
						
							|  |  |  |         $join_tablename = common_database_tablename( | 
					
						
							|  |  |  |             $obj->tableName() . '_vals' | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2020-09-21 22:25:33 +03:00
										 |  |  |         $join_keyword = ($preserve ? 'RIGHT' : 'INNER') . ' JOIN'; | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |         $vals_cast_type = ($col_type === 'int') ? 'INTEGER' : 'TEXT'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // A lot of magic to ensure we get an ordered reply with the same exact
 | 
					
						
							|  |  |  |         // values as on input.
 | 
					
						
							|  |  |  |         switch ($db_type) { | 
					
						
							|  |  |  |             case 'pgsql': | 
					
						
							|  |  |  |                 // Explicit casting is done to cast empty arrays
 | 
					
						
							|  |  |  |                 $obj->_join = "\n" . sprintf( | 
					
						
							|  |  |  |                     <<<END | 
					
						
							|  |  |  |                     {$join_keyword} unnest( | 
					
						
							|  |  |  |                       CAST(ARRAY[%s] AS {$vals_cast_type}[]) | 
					
						
							|  |  |  |                     ) WITH ORDINALITY | 
					
						
							|  |  |  |                     AS {$join_tablename} ({$keyCol}, {$keyCol}_pos) | 
					
						
							|  |  |  |                     USING ({$keyCol}) | 
					
						
							|  |  |  |                     END, | 
					
						
							|  |  |  |                     implode(',', $vals_escaped) | 
					
						
							|  |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |             case 'mariadb': | 
					
						
							|  |  |  |                 // Delivers an empty set
 | 
					
						
							|  |  |  |                 if (count($vals_escaped) == 0) { | 
					
						
							|  |  |  |                     $vals_escaped[] = '(NULL,0) LIMIT 0'; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 // MariaDB doesn't support JSON_TABLE, but Oracle MySQL does,
 | 
					
						
							|  |  |  |                 // which doesn't support VALUES without a ROW keyword though.
 | 
					
						
							|  |  |  |                 $obj->_join = "\n" . sprintf( | 
					
						
							|  |  |  |                     <<<END | 
					
						
							|  |  |  |                     {$join_keyword} ( | 
					
						
							|  |  |  |                       WITH t1 ({$keyCol}, {$keyCol}_pos) AS (VALUES %s) | 
					
						
							|  |  |  |                       SELECT * FROM t1 | 
					
						
							|  |  |  |                     ) AS {$join_tablename} USING ({$keyCol}) | 
					
						
							|  |  |  |                     END, | 
					
						
							|  |  |  |                     implode(',', $vals_escaped) | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 'mysql': | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 $obj->_join = "\n" . sprintf( | 
					
						
							|  |  |  |                     <<<END | 
					
						
							|  |  |  |                     {$join_keyword} JSON_TABLE( | 
					
						
							|  |  |  |                       JSON_ARRAY(%s), '$[*]' COLUMNS ( | 
					
						
							|  |  |  |                         {$keyCol} {$vals_cast_type} PATH '$', | 
					
						
							|  |  |  |                         {$keyCol}_pos FOR ORDINALITY | 
					
						
							|  |  |  |                       ) | 
					
						
							|  |  |  |                     ) AS {$join_tablename} USING ({$keyCol}) | 
					
						
							|  |  |  |                     END, | 
					
						
							|  |  |  |                     implode(',', $vals_escaped) | 
					
						
							|  |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2020-06-27 11:22:19 +03:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |         // Filters both NULLs requested and non-matching NULLs
 | 
					
						
							|  |  |  |         if ($skipNulls) { | 
					
						
							|  |  |  |             $obj->whereAdd("{$obj->escapedTableName()}.{$keyCol} IS NOT NULL"); | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |         $obj->orderBy("{$join_tablename}.{$keyCol}_pos"); | 
					
						
							| 
									
										
										
										
											2014-06-02 00:13:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |         $obj->find(); | 
					
						
							| 
									
										
										
										
											2014-06-02 00:13:54 +02:00
										 |  |  |         return $obj; | 
					
						
							| 
									
										
										
										
											2011-08-02 10:46:29 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-19 17:38:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-02 10:46:29 -04:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get multiple items from the database by key | 
					
						
							| 
									
										
										
										
											2011-08-19 17:38:43 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-08-02 10:46:29 -04:00
										 |  |  |      * @param string  $cls       Class to fetch | 
					
						
							|  |  |  |      * @param string  $keyCol    name of column for key | 
					
						
							|  |  |  |      * @param array   $keyVals   key values to fetch | 
					
						
							|  |  |  |      * @param boolean $otherCols Other columns to hold fixed | 
					
						
							| 
									
										
										
										
											2011-08-19 17:38:43 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-08-02 10:46:29 -04:00
										 |  |  |      * @return array Array mapping $keyVals to objects, or null if not found | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-08-12 13:50:39 +03:00
										 |  |  |     public static function pivotGetClass( | 
					
						
							|  |  |  |         $cls, | 
					
						
							|  |  |  |         $keyCol, | 
					
						
							|  |  |  |         array $keyVals, | 
					
						
							|  |  |  |         array $otherCols = [] | 
					
						
							|  |  |  |     ) { | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |         if (is_array($keyCol)) { | 
					
						
							|  |  |  |             foreach ($keyVals as $keyVal) { | 
					
						
							| 
									
										
										
										
											2020-08-12 13:50:39 +03:00
										 |  |  |                 if (!is_array($keyVal)) { | 
					
						
							|  |  |  |                     throw new ServerException( | 
					
						
							|  |  |  |                         'keyVals passed to pivotGet must be an array of arrays ' | 
					
						
							|  |  |  |                         . 'if keyCol is an array' | 
					
						
							|  |  |  |                     ); | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |                 $result[implode(',', $keyVal)] = null; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $result = array_fill_keys($keyVals, null); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $toFetch = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($keyVals as $keyVal) { | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |             if (is_array($keyCol)) { | 
					
						
							|  |  |  |                 $kv = array_combine($keyCol, $keyVal); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $kv = array($keyCol => $keyVal); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |             $kv = array_merge($otherCols, $kv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $i = self::multicache($cls, $kv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($i !== false) { | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |                 if (is_array($keyCol)) { | 
					
						
							|  |  |  |                     $result[implode(',', $keyVal)] = $i; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $result[$keyVal] = $i; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |             } elseif (!empty($keyVal)) { | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |                 $toFetch[] = $keyVal; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (count($toFetch) > 0) { | 
					
						
							| 
									
										
										
										
											2013-08-19 11:40:35 +02:00
										 |  |  |             $i = new $cls; | 
					
						
							| 
									
										
										
										
											2011-08-02 10:46:29 -04:00
										 |  |  |             foreach ($otherCols as $otherKeyCol => $otherKeyVal) { | 
					
						
							|  |  |  |                 $i->$otherKeyCol = $otherKeyVal; | 
					
						
							| 
									
										
										
										
											2011-07-14 12:02:44 -04:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |             if (is_array($keyCol)) { | 
					
						
							|  |  |  |                 $i->whereAdd(self::_inMultiKey($i, $keyCol, $toFetch)); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |             if ($i->find()) { | 
					
						
							|  |  |  |                 while ($i->fetch()) { | 
					
						
							|  |  |  |                     $copy = clone($i); | 
					
						
							|  |  |  |                     $copy->encache(); | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |                     if (is_array($keyCol)) { | 
					
						
							|  |  |  |                         $vals = array(); | 
					
						
							|  |  |  |                         foreach ($keyCol as $k) { | 
					
						
							|  |  |  |                             $vals[] = $i->$k; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         $result[implode(',', $vals)] = $copy; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         $result[$i->$keyCol] = $copy; | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // Save state of DB misses
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             foreach ($toFetch as $keyVal) { | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |                 $r = null; | 
					
						
							|  |  |  |                 if (is_array($keyCol)) { | 
					
						
							|  |  |  |                     $r = $result[implode(',', $keyVal)]; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $r = $result[$keyVal]; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |                 if (empty($r)) { | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |                     if (is_array($keyCol)) { | 
					
						
							|  |  |  |                         $kv = array_combine($keyCol, $keyVal); | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         $kv = array($keyCol => $keyVal); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     $kv = array_merge($otherCols, $kv); | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |                     // save the fact that no such row exists
 | 
					
						
							|  |  |  |                     $c = self::memcache(); | 
					
						
							|  |  |  |                     if (!empty($c)) { | 
					
						
							|  |  |  |                         $ck = self::multicacheKey($cls, $kv); | 
					
						
							|  |  |  |                         $c->set($ck, null); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $result; | 
					
						
							| 
									
										
										
										
											2011-07-14 12:02:44 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function _inMultiKey($i, $cols, $values) | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $types = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($cols as $col) { | 
					
						
							|  |  |  |             $types[$col] = $i->columnType($col); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $first = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $query = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($values as $value) { | 
					
						
							|  |  |  |             if ($first) { | 
					
						
							|  |  |  |                 $query .= '( '; | 
					
						
							|  |  |  |                 $first = false; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $query .= ' OR '; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $query .= '( '; | 
					
						
							|  |  |  |             $i = 0; | 
					
						
							|  |  |  |             $firstc = true; | 
					
						
							|  |  |  |             foreach ($cols as $col) { | 
					
						
							|  |  |  |                 if (!$firstc) { | 
					
						
							|  |  |  |                     $query .= ' AND '; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $firstc = false; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 switch ($types[$col]) { | 
					
						
							|  |  |  |                 case 'string': | 
					
						
							|  |  |  |                 case 'datetime': | 
					
						
							|  |  |  |                     $query .= sprintf("%s = %s", $col, $i->_quote($value[$i])); | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 default: | 
					
						
							|  |  |  |                     $query .= sprintf("%s = %s", $col, $value[$i]); | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $query .= ') '; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$first) { | 
					
						
							|  |  |  |             $query .= ' )'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $query; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function pkeyColsClass($cls) | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-08-19 11:40:35 +02:00
										 |  |  |         $i = new $cls; | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |         $types = $i->keyTypes(); | 
					
						
							|  |  |  |         ksort($types); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $pkey = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($types as $key => $type) { | 
					
						
							|  |  |  |             if ($type == 'K' || $type == 'N') { | 
					
						
							|  |  |  |                 $pkey[] = $key; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $pkey; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function listFindClass($cls, $keyCol, array $keyVals) | 
					
						
							| 
									
										
										
										
											2013-09-21 16:55:18 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         $i = new $cls; | 
					
						
							|  |  |  |         $i->whereAddIn($keyCol, $keyVals, $i->columnType($keyCol)); | 
					
						
							|  |  |  |         if (!$i->find()) { | 
					
						
							|  |  |  |             throw new NoResultException($i); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $i; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function listGetClass($cls, $keyCol, array $keyVals) | 
					
						
							| 
									
										
										
										
											2011-08-02 17:20:51 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |         $pkeyMap = array_fill_keys($keyVals, array()); | 
					
						
							| 
									
										
										
										
											2011-08-08 12:01:15 -04:00
										 |  |  |         $result = array_fill_keys($keyVals, array()); | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-04 21:51:56 +02:00
										 |  |  |         $pkeyCols = static::pkeyCols(); | 
					
						
							| 
									
										
										
										
											2011-08-08 12:01:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |         $toFetch = array(); | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |         $allPkeys = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // We only cache keys -- not objects!
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |         foreach ($keyVals as $keyVal) { | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |             $l = self::cacheGet(sprintf('%s:list-ids:%s:%s', strtolower($cls), $keyCol, $keyVal)); | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |             if ($l !== false) { | 
					
						
							|  |  |  |                 $pkeyMap[$keyVal] = $l; | 
					
						
							| 
									
										
										
										
											2011-08-08 12:01:15 -04:00
										 |  |  |                 foreach ($l as $pkey) { | 
					
						
							|  |  |  |                     $allPkeys[] = $pkey; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 $toFetch[] = $keyVal; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-08 12:01:15 -04:00
										 |  |  |         if (count($allPkeys) > 0) { | 
					
						
							| 
									
										
										
										
											2013-08-29 10:13:07 +02:00
										 |  |  |             $keyResults = self::pivotGetClass($cls, $pkeyCols, $allPkeys); | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-08 12:01:15 -04:00
										 |  |  |             foreach ($pkeyMap as $keyVal => $pkeyList) { | 
					
						
							|  |  |  |                 foreach ($pkeyList as $pkeyVal) { | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |                     $i = $keyResults[implode(',', $pkeyVal)]; | 
					
						
							| 
									
										
										
										
											2011-08-08 12:01:15 -04:00
										 |  |  |                     if (!empty($i)) { | 
					
						
							|  |  |  |                         $result[$keyVal][] = $i; | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-02 18:12:46 -04:00
										 |  |  |         if (count($toFetch) > 0) { | 
					
						
							| 
									
										
										
										
											2013-09-21 16:55:18 +02:00
										 |  |  |             try { | 
					
						
							|  |  |  |                 $i = self::listFindClass($cls, $keyCol, $toFetch); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-08 10:22:20 -04:00
										 |  |  |                 while ($i->fetch()) { | 
					
						
							|  |  |  |                     $copy = clone($i); | 
					
						
							|  |  |  |                     $copy->encache(); | 
					
						
							|  |  |  |                     $result[$i->$keyCol][] = $copy; | 
					
						
							|  |  |  |                     $pkeyVal = array(); | 
					
						
							|  |  |  |                     foreach ($pkeyCols as $pkeyCol) { | 
					
						
							|  |  |  |                         $pkeyVal[] = $i->$pkeyCol; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     $pkeyMap[$i->$keyCol][] = $pkeyVal; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2013-09-21 16:55:18 +02:00
										 |  |  |             } catch (NoResultException $e) { | 
					
						
							| 
									
										
										
										
											2013-09-26 00:47:56 +02:00
										 |  |  |                 // no results found for our keyVals, so we leave them as empty arrays
 | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |             foreach ($toFetch as $keyVal) { | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |                 self::cacheSet( | 
					
						
							|  |  |  |                     sprintf("%s:list-ids:%s:%s", strtolower($cls), $keyCol, $keyVal), | 
					
						
							|  |  |  |                     $pkeyMap[$keyVal] | 
					
						
							|  |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-08-02 17:20:51 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-08-08 12:01:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |         return $result; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |     public function escapedTableName() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return common_database_tablename($this->tableName()); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function columnType($columnName) | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         $keys = $this->table(); | 
					
						
							|  |  |  |         if (!array_key_exists($columnName, $keys)) { | 
					
						
							|  |  |  |             throw new Exception('Unknown key column ' . $columnName . ' in ' . join(',', array_keys($keys))); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $def = $keys[$columnName]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($def & DB_DATAOBJECT_INT) { | 
					
						
							| 
									
										
										
										
											2020-09-03 18:11:12 +03:00
										 |  |  |             return 'int'; | 
					
						
							| 
									
										
										
										
											2011-08-30 11:03:26 +02:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             return 'string'; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-08-02 17:20:51 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-10-02 10:47:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |      * @todo FIXME: Should this return false on lookup fail to match getKV? | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function pkeyGetClass($cls, array $kv) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-23 12:02:15 +02:00
										 |  |  |         $i = self::multicache($cls, $kv); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |         if ($i !== false) { // false == cache miss
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             return $i; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2013-08-19 11:40:35 +02:00
										 |  |  |             $i = new $cls; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             foreach ($kv as $k => $v) { | 
					
						
							| 
									
										
										
										
											2011-08-19 17:38:43 +02:00
										 |  |  |                 if (is_null($v)) { | 
					
						
							|  |  |  |                     // XXX: possible SQL injection...? Don't
 | 
					
						
							|  |  |  |                     // pass keys from the browser, eh.
 | 
					
						
							|  |  |  |                     $i->whereAdd("$k is null"); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $i->$k = $v; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |             if ($i->find(true)) { | 
					
						
							|  |  |  |                 $i->encache(); | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:21:29 -05:00
										 |  |  |                 $i = null; | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |                 $c = self::memcache(); | 
					
						
							|  |  |  |                 if (!empty($c)) { | 
					
						
							|  |  |  |                     $ck = self::multicacheKey($cls, $kv); | 
					
						
							|  |  |  |                     $c->set($ck, null); | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2008-12-10 18:35:03 -05:00
										 |  |  |             return $i; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-10-02 10:47:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function insert() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $result = parent::insert(); | 
					
						
							| 
									
										
										
										
											2020-09-14 20:19:17 +03:00
										 |  |  |         if ($result !== false) { | 
					
						
							|  |  |  |             // In case of cached negative lookups
 | 
					
						
							|  |  |  |             $this->decache(); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         return $result; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function update($dataObject = false) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-28 19:36:05 +01:00
										 |  |  |         if (is_object($dataObject) && $dataObject instanceof Memcached_DataObject) { | 
					
						
							| 
									
										
										
										
											2020-09-14 20:19:17 +03:00
										 |  |  |             $dataObject->decache(); // might be different keys
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-10-28 19:36:05 +01:00
										 |  |  |         $result = parent::update($dataObject); | 
					
						
							|  |  |  |         if ($result !== false) { | 
					
						
							| 
									
										
										
										
											2020-09-14 20:19:17 +03:00
										 |  |  |             // Cannot encache yet, so decache instead
 | 
					
						
							|  |  |  |             $this->decache(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |         return $result; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function delete($useWhere = false) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $this->decache(); # while we still have the values!
 | 
					
						
							| 
									
										
										
										
											2013-10-29 10:20:57 +01:00
										 |  |  |         return parent::delete($useWhere); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function memcache() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-09-06 09:56:45 -04:00
										 |  |  |         return Cache::instance(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function cacheKey($cls, $k, $v) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-06-04 12:52:05 -04:00
										 |  |  |         if (is_object($cls) || is_object($k) || (is_object($v) && !($v instanceof DB_DataObject_Cast))) { | 
					
						
							| 
									
										
										
										
											2009-12-11 14:19:18 -08:00
										 |  |  |             $e = new Exception(); | 
					
						
							|  |  |  |             common_log(LOG_ERR, __METHOD__ . ' object in param: ' . | 
					
						
							|  |  |  |                 str_replace("\n", " ", $e->getTraceAsString())); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-06-04 15:29:38 -04:00
										 |  |  |         $vstr = self::valueString($v); | 
					
						
							| 
									
										
										
										
											2010-09-06 10:07:43 -04:00
										 |  |  |         return Cache::key(strtolower($cls).':'.$k.':'.$vstr); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function getcached($cls, $k, $v) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-23 12:02:15 +02:00
										 |  |  |         $c = self::memcache(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         if (!$c) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2013-10-23 12:02:15 +02:00
										 |  |  |             $obj = $c->get(self::cacheKey($cls, $k, $v)); | 
					
						
							| 
									
										
										
										
											2010-01-10 12:31:43 -08:00
										 |  |  |             if (0 == strcasecmp($cls, 'User')) { | 
					
						
							|  |  |  |                 // Special case for User
 | 
					
						
							| 
									
										
										
										
											2010-01-11 13:24:52 -08:00
										 |  |  |                 if (is_object($obj) && is_object($obj->id)) { | 
					
						
							| 
									
										
										
										
											2010-01-10 12:31:43 -08:00
										 |  |  |                     common_log(LOG_ERR, "User " . $obj->nickname . " was cached with User as ID; deleting"); | 
					
						
							| 
									
										
										
										
											2013-10-23 12:02:15 +02:00
										 |  |  |                     $c->delete(self::cacheKey($cls, $k, $v)); | 
					
						
							| 
									
										
										
										
											2010-01-10 12:31:43 -08:00
										 |  |  |                     return false; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             return $obj; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-09-26 12:09:41 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function keyTypes() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |         // ini-based classes return number-indexed arrays. handbuilt
 | 
					
						
							|  |  |  |         // classes return column => keytype. Make this uniform.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $keys = $this->keys(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $keyskeys = array_keys($keys); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_string($keyskeys[0])) { | 
					
						
							|  |  |  |             return $keys; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         global $_DB_DATAOBJECT; | 
					
						
							| 
									
										
										
										
											2015-06-06 19:35:10 +02:00
										 |  |  |         if (!isset($_DB_DATAOBJECT['INI'][$this->_database][$this->tableName()."__keys"])) { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             $this->databaseStructure(); | 
					
						
							| 
									
										
										
										
											2008-09-26 12:09:41 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-06-06 19:35:10 +02:00
										 |  |  |         return $_DB_DATAOBJECT['INI'][$this->_database][$this->tableName()."__keys"]; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function encache() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-09-14 20:19:17 +03:00
										 |  |  |         if ($this->N < 1) { | 
					
						
							|  |  |  |             // Caching breaks when it is too early.
 | 
					
						
							|  |  |  |             $e = new Exception(); | 
					
						
							|  |  |  |             common_log( | 
					
						
							|  |  |  |                 LOG_ERR, | 
					
						
							|  |  |  |                 'DataObject must be the result of a query (N>=1) before encache() ' | 
					
						
							|  |  |  |                 . str_replace("\n", ' ', $e->getTraceAsString()) | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-23 12:02:15 +02:00
										 |  |  |         $c = self::memcache(); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         if (!$c) { | 
					
						
							|  |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |         } elseif ($this->tableName() === 'user' && is_object($this->id)) { | 
					
						
							| 
									
										
										
										
											2010-01-10 12:31:43 -08:00
										 |  |  |             // Special case for User bug
 | 
					
						
							|  |  |  |             $e = new Exception(); | 
					
						
							|  |  |  |             common_log(LOG_ERR, __METHOD__ . ' caching user with User object as ID ' . | 
					
						
							|  |  |  |                        str_replace("\n", " ", $e->getTraceAsString())); | 
					
						
							|  |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-09-28 23:21:09 +02:00
										 |  |  |             $keys = $this->_allCacheKeys(); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-28 23:21:09 +02:00
										 |  |  |             foreach ($keys as $key) { | 
					
						
							|  |  |  |                 $c->set($key, $this); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function decache() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-23 12:02:15 +02:00
										 |  |  |         $c = self::memcache(); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         if (!$c) { | 
					
						
							|  |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $keys = $this->_allCacheKeys(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($keys as $key) { | 
					
						
							|  |  |  |             $c->delete($key, $this); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function _allCacheKeys() | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         $ckeys = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $types = $this->keyTypes(); | 
					
						
							|  |  |  |         ksort($types); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $pkey = array(); | 
					
						
							|  |  |  |         $pval = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($types as $key => $type) { | 
					
						
							|  |  |  |             assert(!empty($key)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($type == 'U') { | 
					
						
							|  |  |  |                 if (empty($this->$key)) { | 
					
						
							|  |  |  |                     continue; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2013-10-23 12:02:15 +02:00
										 |  |  |                 $ckeys[] = self::cacheKey($this->tableName(), $key, self::valueString($this->$key)); | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |             } elseif (in_array($type, ['K', 'N'])) { | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |                 $pkey[] = $key; | 
					
						
							| 
									
										
										
										
											2010-06-04 15:29:38 -04:00
										 |  |  |                 $pval[] = self::valueString($this->$key); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2010-07-30 19:15:07 +02:00
										 |  |  |                 // Low level exception. No need for i18n as discussed with Brion.
 | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |                 throw new Exception("Unknown key type $key => $type for " . $this->tableName()); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         assert(count($pkey) > 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // XXX: should work for both compound and scalar pkeys
 | 
					
						
							|  |  |  |         $pvals = implode(',', $pval); | 
					
						
							|  |  |  |         $pkeys = implode(',', $pkey); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-23 12:02:15 +02:00
										 |  |  |         $ckeys[] = self::cacheKey($this->tableName(), $pkeys, $pvals); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $ckeys; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-10-02 10:47:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-12 13:50:39 +03:00
										 |  |  |     public static function multicache($cls, array $kv) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-07-05 12:44:18 -04:00
										 |  |  |         ksort($kv); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |         $c = self::memcache(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         if (!$c) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |             return $c->get(self::multicacheKey($cls, $kv)); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-11-20 16:50:41 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-12 13:50:39 +03:00
										 |  |  |     public static function multicacheKey($cls, array $kv) | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         ksort($kv); | 
					
						
							|  |  |  |         $pkeys = implode(',', array_keys($kv)); | 
					
						
							|  |  |  |         $pvals = implode(',', array_values($kv)); | 
					
						
							|  |  |  |         return self::cacheKey($cls, $pkeys, $pvals); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function getSearchEngine($table) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-23 13:36:02 +01:00
										 |  |  |         require_once INSTALLDIR . '/lib/search/search_engines.php'; | 
					
						
							| 
									
										
										
										
											2011-04-11 18:59:58 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |         if (Event::handle('GetSearchEngine', [$this, $table, &$search_engine])) { | 
					
						
							|  |  |  |             $type = common_config('search', 'type'); | 
					
						
							|  |  |  |             if ($type === 'like') { | 
					
						
							|  |  |  |                 $search_engine = new SQLLikeSearch($this, $table); | 
					
						
							|  |  |  |             } elseif ($type === 'fulltext') { | 
					
						
							|  |  |  |                 switch (common_config('db', 'type')) { | 
					
						
							|  |  |  |                     case 'pgsql': | 
					
						
							|  |  |  |                         $search_engine = new PostgreSQLSearch($this, $table); | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                     case 'mysql': | 
					
						
							|  |  |  |                         $search_engine = new MySQLSearch($this, $table); | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                     default: | 
					
						
							|  |  |  |                         throw new ServerException('Unknown DB type selected.'); | 
					
						
							| 
									
										
										
										
											2008-11-20 16:50:41 -05:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-04-11 18:59:58 -04:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |                 // Low level exception. No need for i18n as discussed with Brion.
 | 
					
						
							|  |  |  |                 throw new ServerException('Unknown search type: ' . $type); | 
					
						
							| 
									
										
										
										
											2009-11-03 16:57:39 -08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2008-11-20 16:50:41 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-11 18:59:58 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-20 16:50:41 -05:00
										 |  |  |         return $search_engine; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function cachedQuery($cls, $qry, $expiry = 3600) | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-11-04 17:38:40 +01:00
										 |  |  |         $c = self::memcache(); | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  |         if (!$c) { | 
					
						
							|  |  |  |             $inst = new $cls(); | 
					
						
							|  |  |  |             $inst->query($qry); | 
					
						
							| 
									
										
										
										
											2009-01-22 19:54:05 +00:00
										 |  |  |             return $inst; | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-09-06 10:03:51 -04:00
										 |  |  |         $key_part = Cache::keyize($cls).':'.md5($qry); | 
					
						
							| 
									
										
										
										
											2010-09-06 10:07:43 -04:00
										 |  |  |         $ckey = Cache::key($key_part); | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  |         $stored = $c->get($ckey); | 
					
						
							| 
									
										
										
										
											2010-01-24 22:39:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ($stored !== false) { | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  |             return new ArrayWrapper($stored); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $inst = new $cls(); | 
					
						
							| 
									
										
										
										
											2009-01-22 20:51:05 +00:00
										 |  |  |         $inst->query($qry); | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  |         $cached = array(); | 
					
						
							|  |  |  |         while ($inst->fetch()) { | 
					
						
							|  |  |  |             $cached[] = clone($inst); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $inst->free(); | 
					
						
							| 
									
										
										
										
											2010-02-05 09:47:56 -08:00
										 |  |  |         $c->set($ckey, $cached, Cache::COMPRESSED, $expiry); | 
					
						
							| 
									
										
										
										
											2009-01-22 20:16:19 +00:00
										 |  |  |         return new ArrayWrapper($cached); | 
					
						
							| 
									
										
										
										
											2009-01-22 19:13:26 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-04-26 13:16:59 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-21 11:07:52 -08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2010-01-28 12:57:52 -05:00
										 |  |  |      * sends query to database - this is the private one that must work | 
					
						
							| 
									
										
										
										
											2010-01-21 11:07:52 -08:00
										 |  |  |      *   - internal functions use this rather than $this->query() | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Overridden to do logging. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param  string  $string | 
					
						
							|  |  |  |      * @access private | 
					
						
							|  |  |  |      * @return mixed none or PEAR_Error | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function _query($string) | 
					
						
							| 
									
										
										
										
											2010-01-21 11:07:52 -08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-03-29 12:57:16 -07:00
										 |  |  |         if (common_config('db', 'annotate_queries')) { | 
					
						
							|  |  |  |             $string = $this->annotateQuery($string); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |         $start = hrtime(true); | 
					
						
							| 
									
										
										
										
											2010-10-15 11:26:06 -07:00
										 |  |  |         $fail = false; | 
					
						
							| 
									
										
										
										
											2010-12-17 11:46:11 -08:00
										 |  |  |         $result = null; | 
					
						
							|  |  |  |         if (Event::handle('StartDBQuery', array($this, $string, &$result))) { | 
					
						
							| 
									
										
										
										
											2011-01-31 13:12:56 -08:00
										 |  |  |             common_perf_counter('query', $string); | 
					
						
							| 
									
										
										
										
											2010-12-17 17:13:21 -08:00
										 |  |  |             try { | 
					
						
							|  |  |  |                 $result = parent::_query($string); | 
					
						
							|  |  |  |             } catch (Exception $e) { | 
					
						
							|  |  |  |                 $fail = $e; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-12-17 11:46:11 -08:00
										 |  |  |             Event::handle('EndDBQuery', array($this, $string, &$result)); | 
					
						
							| 
									
										
										
										
											2010-10-15 11:26:06 -07:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |         $delta = (hrtime(true) - $start) / 1000000000; | 
					
						
							| 
									
										
										
										
											2010-01-21 11:07:52 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $limit = common_config('db', 'log_slow_queries'); | 
					
						
							|  |  |  |         if (($limit > 0 && $delta >= $limit) || common_config('db', 'log_queries')) { | 
					
						
							|  |  |  |             $clean = $this->sanitizeQuery($string); | 
					
						
							| 
									
										
										
										
											2010-10-15 11:26:06 -07:00
										 |  |  |             if ($fail) { | 
					
						
							|  |  |  |                 $msg = sprintf("FAILED DB query (%0.3fs): %s - %s", $delta, $fail->getMessage(), $clean); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $msg = sprintf("DB query (%0.3fs): %s", $delta, $clean); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             common_log(LOG_DEBUG, $msg); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($fail) { | 
					
						
							|  |  |  |             throw $fail; | 
					
						
							| 
									
										
										
										
											2010-01-21 11:07:52 -08:00
										 |  |  |         } | 
					
						
							|  |  |  |         return $result; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 12:57:16 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Find the first caller in the stack trace that's not a | 
					
						
							|  |  |  |      * low-level database function and add a comment to the | 
					
						
							|  |  |  |      * query string. This should then be visible in process lists | 
					
						
							|  |  |  |      * and slow query logs, to help identify problem areas. | 
					
						
							| 
									
										
										
										
											2010-06-04 12:52:05 -04:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-03-29 12:57:16 -07:00
										 |  |  |      * Also marks whether this was a web GET/POST or which daemon | 
					
						
							|  |  |  |      * was running it. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $string SQL query string | 
					
						
							|  |  |  |      * @return string SQL query string, with a comment in it | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function annotateQuery($string) | 
					
						
							| 
									
										
										
										
											2010-03-29 12:57:16 -07:00
										 |  |  |     { | 
					
						
							|  |  |  |         $ignore = array('annotateQuery', | 
					
						
							|  |  |  |                         '_query', | 
					
						
							|  |  |  |                         'query', | 
					
						
							|  |  |  |                         'get', | 
					
						
							|  |  |  |                         'insert', | 
					
						
							|  |  |  |                         'delete', | 
					
						
							|  |  |  |                         'update', | 
					
						
							|  |  |  |                         'find'); | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |         $ignoreStatic = array('getKV', | 
					
						
							| 
									
										
										
										
											2013-08-18 15:42:51 +02:00
										 |  |  |                               'getClassKV', | 
					
						
							| 
									
										
										
										
											2010-03-29 12:57:16 -07:00
										 |  |  |                               'pkeyGet', | 
					
						
							| 
									
										
										
										
											2013-08-18 15:42:51 +02:00
										 |  |  |                               'pkeyGetClass', | 
					
						
							| 
									
										
										
										
											2010-03-29 12:57:16 -07:00
										 |  |  |                               'cachedQuery'); | 
					
						
							|  |  |  |         $here = get_class($this); // if we get confused
 | 
					
						
							|  |  |  |         $bt = debug_backtrace(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Find the first caller that's not us?
 | 
					
						
							|  |  |  |         foreach ($bt as $frame) { | 
					
						
							|  |  |  |             $func = $frame['function']; | 
					
						
							|  |  |  |             if (isset($frame['type']) && $frame['type'] == '::') { | 
					
						
							|  |  |  |                 if (in_array($func, $ignoreStatic)) { | 
					
						
							|  |  |  |                     continue; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 $here = $frame['class'] . '::' . $func; | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |             } elseif (isset($frame['type']) && $frame['type'] === '->') { | 
					
						
							| 
									
										
										
										
											2010-03-29 12:57:16 -07:00
										 |  |  |                 if ($frame['object'] === $this && in_array($func, $ignore)) { | 
					
						
							|  |  |  |                     continue; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (in_array($func, $ignoreStatic)) { | 
					
						
							| 
									
										
										
										
											2011-08-19 17:38:43 +02:00
										 |  |  |                     continue; // @todo FIXME: This shouldn't be needed?
 | 
					
						
							| 
									
										
										
										
											2010-03-29 12:57:16 -07:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 $here = get_class($frame['object']) . '->' . $func; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $here = $func; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (php_sapi_name() == 'cli') { | 
					
						
							|  |  |  |             $context = basename($_SERVER['PHP_SELF']); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $context = $_SERVER['REQUEST_METHOD']; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Slip the comment in after the first command,
 | 
					
						
							|  |  |  |         // or DB_DataObject gets confused about handling inserts and such.
 | 
					
						
							|  |  |  |         $parts = explode(' ', $string, 2); | 
					
						
							|  |  |  |         $parts[0] .= " /* $context $here */"; | 
					
						
							|  |  |  |         return implode(' ', $parts); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-21 11:07:52 -08:00
										 |  |  |     // Sanitize a query for logging
 | 
					
						
							|  |  |  |     // @fixme don't trim spaces in string literals
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function sanitizeQuery($string) | 
					
						
							| 
									
										
										
										
											2010-01-21 11:07:52 -08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $string = preg_replace('/\s+/', ' ', $string); | 
					
						
							|  |  |  |         $string = trim($string); | 
					
						
							|  |  |  |         return $string; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function _connect() | 
					
						
							| 
									
										
										
										
											2009-04-26 13:16:59 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-09-23 22:27:17 +02:00
										 |  |  |         global $_DB_DATAOBJECT, $_PEAR; | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $sum = $this->_getDbDsnMD5(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($_DB_DATAOBJECT['CONNECTIONS'][$sum]) && | 
					
						
							| 
									
										
										
										
											2013-09-23 22:27:17 +02:00
										 |  |  |             !$_PEAR->isError($_DB_DATAOBJECT['CONNECTIONS'][$sum])) { | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  |             $exists = true; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $exists = false; | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 19:57:15 -08:00
										 |  |  |         // @fixme horrible evil hack!
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         // In multisite configuration we don't want to keep around a separate
 | 
					
						
							|  |  |  |         // connection for every database; we could end up with thousands of
 | 
					
						
							|  |  |  |         // connections open per thread. In an ideal world we might keep
 | 
					
						
							|  |  |  |         // a connection per server and select different databases, but that'd
 | 
					
						
							|  |  |  |         // be reliant on having the same db username/pass as well.
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         // MySQL connections are cheap enough we're going to try just
 | 
					
						
							|  |  |  |         // closing out the old connection and reopening when we encounter
 | 
					
						
							|  |  |  |         // a new DSN.
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         // WARNING WARNING if we end up actually using multiple DBs at a time
 | 
					
						
							|  |  |  |         // we'll need some fancier logic here.
 | 
					
						
							| 
									
										
										
										
											2010-01-27 23:51:22 -08:00
										 |  |  |         if (!$exists && !empty($_DB_DATAOBJECT['CONNECTIONS']) && php_sapi_name() == 'cli') { | 
					
						
							| 
									
										
										
										
											2010-01-12 19:57:15 -08:00
										 |  |  |             foreach ($_DB_DATAOBJECT['CONNECTIONS'] as $index => $conn) { | 
					
						
							| 
									
										
										
										
											2013-10-22 18:53:26 +02:00
										 |  |  |                 if ($_PEAR->isError($conn)) { | 
					
						
							|  |  |  |                     common_log(LOG_WARNING, __METHOD__ . " cannot disconnect failed DB connection: '".$conn->getMessage()."'."); | 
					
						
							|  |  |  |                 } elseif (!empty($conn)) { | 
					
						
							| 
									
										
										
										
											2010-01-12 19:57:15 -08:00
										 |  |  |                     $conn->disconnect(); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 unset($_DB_DATAOBJECT['CONNECTIONS'][$index]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-01-22 10:46:11 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-26 13:16:59 -04:00
										 |  |  |         $result = parent::_connect(); | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ($result && !$exists) { | 
					
						
							| 
									
										
										
										
											2020-09-12 15:40:39 +03:00
										 |  |  |             // Required to make timestamp values usefully comparable.
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:52:11 +03:00
										 |  |  |             if (common_config('db', 'type') !== 'mysql') { | 
					
						
							|  |  |  |                 parent::_query("SET TIME ZONE INTERVAL '+00:00' HOUR TO MINUTE"); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 parent::_query("SET time_zone = '+0:00'"); | 
					
						
							| 
									
										
										
										
											2011-01-31 11:45:19 -08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-04-26 13:16:59 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-26 13:16:59 -04:00
										 |  |  |         return $result; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-06-18 19:19:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  |     // XXX: largely cadged from DB_DataObject
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function _getDbDsnMD5() | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         if ($this->_database_dsn_md5) { | 
					
						
							|  |  |  |             return $this->_database_dsn_md5; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $dsn = $this->_getDbDsn(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_string($dsn)) { | 
					
						
							|  |  |  |             $sum = md5($dsn); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             /// support array based dsn's
 | 
					
						
							|  |  |  |             $sum = md5(serialize($dsn)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $sum; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function _getDbDsn() | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         global $_DB_DATAOBJECT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (empty($_DB_DATAOBJECT['CONFIG'])) { | 
					
						
							| 
									
										
										
										
											2015-06-06 18:29:15 +02:00
										 |  |  |             self::_loadConfig(); | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $options = &$_DB_DATAOBJECT['CONFIG']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // if the databse dsn dis defined in the object..
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $dsn = isset($this->_database_dsn) ? $this->_database_dsn : null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$dsn) { | 
					
						
							|  |  |  |             if (!$this->_database) { | 
					
						
							| 
									
										
										
										
											2015-06-06 19:35:10 +02:00
										 |  |  |                 $this->_database = isset($options["table_{$this->tableName()}"]) ? $options["table_{$this->tableName()}"] : null; | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |             if ($this->_database && !empty($options["database_{$this->_database}"])) { | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  |                 $dsn = $options["database_{$this->_database}"]; | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |             } elseif (!empty($options['database'])) { | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  |                 $dsn = $options['database']; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$dsn) { | 
					
						
							| 
									
										
										
										
											2010-07-29 12:58:48 +02:00
										 |  |  |             // TRANS: Exception thrown when database name or Data Source Name could not be found.
 | 
					
						
							| 
									
										
										
										
											2011-08-19 17:38:43 +02:00
										 |  |  |             throw new Exception(_('No database name or DSN found anywhere.')); | 
					
						
							| 
									
										
										
										
											2009-07-27 13:51:40 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $dsn; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-01-25 18:08:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function blow() | 
					
						
							| 
									
										
										
										
											2010-01-25 18:08:21 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         $c = self::memcache(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (empty($c)) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $args = func_get_args(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $format = array_shift($args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $keyPart = vsprintf($format, $args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 10:07:43 -04:00
										 |  |  |         $cacheKey = Cache::key($keyPart); | 
					
						
							| 
									
										
										
										
											2010-01-25 18:08:21 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $c->delete($cacheKey); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-01-28 12:57:52 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function raiseError($message, $type = null, $behavior = null) | 
					
						
							| 
									
										
										
										
											2010-01-28 16:26:55 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-02-24 01:09:12 +00:00
										 |  |  |         $id = get_class($this); | 
					
						
							| 
									
										
										
										
											2010-03-24 14:18:25 -07:00
										 |  |  |         if (!empty($this->id)) { | 
					
						
							| 
									
										
										
										
											2010-02-24 01:09:12 +00:00
										 |  |  |             $id .= ':' . $this->id; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-04-07 10:43:14 -04:00
										 |  |  |         if ($message instanceof PEAR_Error) { | 
					
						
							|  |  |  |             $message = $message->getMessage(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-07-30 19:15:07 +02:00
										 |  |  |         // Low level exception. No need for i18n as discussed with Brion.
 | 
					
						
							| 
									
										
										
										
											2010-02-24 01:09:12 +00:00
										 |  |  |         throw new ServerException("[$id] DB_DataObject error [$type]: $message"); | 
					
						
							| 
									
										
										
										
											2010-01-28 16:26:55 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-01-29 15:01:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function cacheGet($keyPart) | 
					
						
							| 
									
										
										
										
											2010-01-29 15:01:21 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         $c = self::memcache(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (empty($c)) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 10:07:43 -04:00
										 |  |  |         $cacheKey = Cache::key($keyPart); | 
					
						
							| 
									
										
										
										
											2010-01-29 15:01:21 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $c->get($cacheKey); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function cacheSet($keyPart, $value, $flag = null, $expiry = null) | 
					
						
							| 
									
										
										
										
											2010-01-29 15:01:21 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         $c = self::memcache(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (empty($c)) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 10:07:43 -04:00
										 |  |  |         $cacheKey = Cache::key($keyPart); | 
					
						
							| 
									
										
										
										
											2010-01-29 15:01:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-14 10:38:34 -04:00
										 |  |  |         return $c->set($cacheKey, $value, $flag, $expiry); | 
					
						
							| 
									
										
										
										
											2010-01-29 15:01:21 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-06-04 15:29:38 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static function valueString($v) | 
					
						
							| 
									
										
										
										
											2010-06-04 15:29:38 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $vstr = null; | 
					
						
							|  |  |  |         if (is_object($v) && $v instanceof DB_DataObject_Cast) { | 
					
						
							|  |  |  |             switch ($v->type) { | 
					
						
							|  |  |  |             case 'date': | 
					
						
							| 
									
										
										
										
											2019-11-02 00:26:25 +00:00
										 |  |  |                 $vstr = "{$v->year} - {$v->month} - {$v->day}"; | 
					
						
							| 
									
										
										
										
											2010-06-04 15:29:38 -04:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-11-02 12:21:43 +03:00
										 |  |  |             case 'sql': | 
					
						
							|  |  |  |                 if (strcasecmp($v->value, 'NULL') == 0) { | 
					
						
							|  |  |  |                     // Very selectively handling NULLs.
 | 
					
						
							|  |  |  |                     $vstr = ''; | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2020-01-07 19:48:13 +03:00
										 |  |  |                 // no break
 | 
					
						
							| 
									
										
										
										
											2010-06-04 15:29:38 -04:00
										 |  |  |             case 'blob': | 
					
						
							|  |  |  |             case 'string': | 
					
						
							|  |  |  |             case 'datetime': | 
					
						
							|  |  |  |             case 'time': | 
					
						
							| 
									
										
										
										
											2010-07-30 19:15:07 +02:00
										 |  |  |                 // Low level exception. No need for i18n as discussed with Brion.
 | 
					
						
							| 
									
										
										
										
											2010-06-04 15:29:38 -04:00
										 |  |  |                 throw new ServerException("Unhandled DB_DataObject_Cast type passed as cacheKey value: '$v->type'"); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2010-07-30 19:15:07 +02:00
										 |  |  |                 // Low level exception. No need for i18n as discussed with Brion.
 | 
					
						
							| 
									
										
										
										
											2010-06-04 15:29:38 -04:00
										 |  |  |                 throw new ServerException("Unknown DB_DataObject_Cast type passed as cacheKey value: '$v->type'"); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $vstr = strval($v); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $vstr; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-09-26 12:09:41 -04:00
										 |  |  | } |