| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01: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/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |  * Database schema for PostgreSQL | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-09-11 08:15:16 +03:00
										 |  |  |  * @category  Database | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author    Brenda Wallace <shiny@cpan.org> | 
					
						
							|  |  |  |  * @author    Brion Vibber <brion@status.net> | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |  * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |  * Class representing the database schema for PostgreSQL | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |  * | 
					
						
							|  |  |  |  * A class representing the database schema. Can be used to | 
					
						
							|  |  |  |  * manipulate the schema -- especially for plugins and upgrade | 
					
						
							|  |  |  |  * utilities. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |  * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |  */ | 
					
						
							|  |  |  | class PgsqlSchema extends Schema | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public static $_single = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Main public entry point. Use this to get | 
					
						
							|  |  |  |      * the singleton object. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param object|null $conn | 
					
						
							|  |  |  |      * @param string|null dummy param | 
					
						
							|  |  |  |      * @return Schema the (single) Schema object | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static function get($conn = null, $_ = 'pgsql') | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (empty(self::$_single)) { | 
					
						
							|  |  |  |             self::$_single = new Schema($conn, 'pgsql'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return self::$_single; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |      * Returns a table definition array for the table | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |      * in the schema with the given name. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Throws an exception if the table is not found. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |      * @param string $table Name of the table to get | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |      * @return array tabledef for that table. | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |      * @throws SchemaTableMissingException | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |     public function getTableDef($table) | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |         $def = []; | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |         $hasKeys = false; | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |         // Pull column data from INFORMATION_SCHEMA
 | 
					
						
							|  |  |  |         $columns = $this->fetchMetaInfo($table, 'columns', 'ordinal_position'); | 
					
						
							|  |  |  |         if (count($columns) == 0) { | 
					
						
							|  |  |  |             throw new SchemaTableMissingException("No such table: $table"); | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         // Get information on the emulated "enum" type
 | 
					
						
							|  |  |  |         $enum_info = $this->fetchEnumInfo($table); | 
					
						
							| 
									
										
										
										
											2010-10-11 14:15:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |         foreach ($columns as $row) { | 
					
						
							|  |  |  |             $name = $row['column_name']; | 
					
						
							| 
									
										
										
										
											2010-10-11 14:15:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |             $field = []; | 
					
						
							|  |  |  |             $field['type'] = $type = $row['udt_name']; | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |             if (in_array($type, ['char', 'bpchar', 'varchar'])) { | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |                 if ($row['character_maximum_length'] !== null) { | 
					
						
							|  |  |  |                     $field['length'] = intval($row['character_maximum_length']); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if ($type == 'numeric') { | 
					
						
							|  |  |  |                 // Other int types may report these values, but they're irrelevant.
 | 
					
						
							|  |  |  |                 // Just ignore them!
 | 
					
						
							|  |  |  |                 if ($row['numeric_precision'] !== null) { | 
					
						
							|  |  |  |                     $field['precision'] = intval($row['numeric_precision']); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if ($row['numeric_scale'] !== null) { | 
					
						
							|  |  |  |                     $field['scale'] = intval($row['numeric_scale']); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if ($row['is_nullable'] == 'NO') { | 
					
						
							|  |  |  |                 $field['not null'] = true; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |             $col_default = $row['column_default']; | 
					
						
							|  |  |  |             if (!is_null($col_default)) { | 
					
						
							| 
									
										
										
										
											2020-06-28 20:05:11 +03:00
										 |  |  |                 if ($this->isNumericType($field)) { | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |                     $field['default'] = (int) $col_default; | 
					
						
							|  |  |  |                 } elseif ($type === 'bool') { | 
					
						
							|  |  |  |                     $field['default'] = ($col_default === 'true') ? true : false; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $match = "/^'(.*)'(::.+)*$/"; | 
					
						
							|  |  |  |                     if (preg_match($match, $col_default)) { | 
					
						
							|  |  |  |                         $field['default'] = preg_replace( | 
					
						
							|  |  |  |                             $match, | 
					
						
							|  |  |  |                             '\1', | 
					
						
							|  |  |  |                             $col_default | 
					
						
							|  |  |  |                         ); | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         $field['default'] = $col_default; | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |             if ( | 
					
						
							|  |  |  |                 $row['is_identity'] === 'YES' | 
					
						
							|  |  |  |                 && $row['identity_generation'] = 'BY DEFAULT' | 
					
						
							|  |  |  |             ) { | 
					
						
							|  |  |  |                 $field['auto_increment'] = true; | 
					
						
							|  |  |  |             } elseif (array_key_exists($name, $enum_info)) { | 
					
						
							|  |  |  |                 $field['enum'] = $enum_info[$name]; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-16 23:41:28 +03:00
										 |  |  |             if (!empty($row['collation_name'])) { | 
					
						
							|  |  |  |                 $field['collate'] = $row['collation_name']; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |             $def['fields'][$name] = $field; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         $key_info = $this->fetchKeyInfo($table); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($key_info as $row) { | 
					
						
							|  |  |  |             $key_name = $row['key_name']; | 
					
						
							|  |  |  |             $cols = $row['cols']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             switch ($row['key_type']) { | 
					
						
							|  |  |  |                 case 'primary': | 
					
						
							|  |  |  |                     $def['primary key'] = $cols; | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 case 'unique': | 
					
						
							|  |  |  |                     $def['unique keys'][$key_name] = $cols; | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2020-08-08 16:56:20 +03:00
										 |  |  |                 case 'gin': | 
					
						
							|  |  |  |                     // @fixme Way too magical.
 | 
					
						
							|  |  |  |                     $cols = array_values(preg_grep( | 
					
						
							|  |  |  |                         '/^(.+(\(|\)).+|\s*)$/', | 
					
						
							|  |  |  |                         preg_split('(COALESCE\(|,)', $cols[0]), | 
					
						
							|  |  |  |                         PREG_GREP_INVERT | 
					
						
							|  |  |  |                     )); | 
					
						
							|  |  |  |                     $def['fulltext indexes'][$key_name] = $cols; | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |                 default: | 
					
						
							|  |  |  |                     $def['indexes'][$key_name] = $cols; | 
					
						
							| 
									
										
										
										
											2010-10-11 14:15:02 -07:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         $foreign_key_info = $this->fetchForeignKeyInfo($table); | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         foreach ($foreign_key_info as $row) { | 
					
						
							|  |  |  |             $key_name = $row['key_name']; | 
					
						
							|  |  |  |             $cols = $row['cols']; | 
					
						
							|  |  |  |             $ref_table = $row['ref_table']; | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |             $def['foreign keys'][$key_name] = [$ref_table, $cols]; | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |         return $def; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Pull some INFORMATION.SCHEMA data for the given table. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $table | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |      * @param $infoTable | 
					
						
							|  |  |  |      * @param null $orderBy | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |      * @return array of arrays | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |      * @throws PEAR_Exception | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-09-11 08:15:16 +03:00
										 |  |  |     public function fetchMetaInfo($table, $infoTable, $orderBy = null) | 
					
						
							| 
									
										
										
										
											2010-10-08 16:36:32 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         $catalog = $this->conn->dsn['database']; | 
					
						
							|  |  |  |         return $this->fetchQueryData(sprintf( | 
					
						
							|  |  |  |             <<<'END' | 
					
						
							|  |  |  |             SELECT * FROM information_schema.%1$s | 
					
						
							|  |  |  |               WHERE table_catalog = '%2$s' AND table_name = '%3$s'%4$s; | 
					
						
							|  |  |  |             END, | 
					
						
							|  |  |  |             $this->quoteIdentifier($infoTable), | 
					
						
							|  |  |  |             $catalog, | 
					
						
							|  |  |  |             $table, | 
					
						
							|  |  |  |             ($orderBy ? " ORDER BY {$orderBy}" : '') | 
					
						
							|  |  |  |         )); | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |      * Pull index and keys information for the given table. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-10-11 14:15:02 -07:00
										 |  |  |      * @param string $table | 
					
						
							|  |  |  |      * @return array of arrays | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |      * @throws PEAR_Exception | 
					
						
							| 
									
										
										
										
											2010-10-11 14:15:02 -07:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |     private function fetchKeyInfo(string $table): array | 
					
						
							| 
									
										
										
										
											2010-10-11 14:15:02 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         $data = $this->fetchQueryData(sprintf( | 
					
						
							|  |  |  |             <<<'EOT' | 
					
						
							|  |  |  |             SELECT "rel"."relname" AS "key_name", | 
					
						
							|  |  |  |                 CASE | 
					
						
							|  |  |  |                   WHEN "idx"."indisprimary" IS TRUE THEN 'primary' | 
					
						
							|  |  |  |                   WHEN "idx"."indisunique"  IS TRUE THEN 'unique' | 
					
						
							|  |  |  |                   ELSE "am"."amname" | 
					
						
							|  |  |  |                 END AS "key_type", | 
					
						
							| 
									
										
										
										
											2020-08-08 16:56:20 +03:00
										 |  |  |                 CASE | 
					
						
							|  |  |  |                   WHEN "cols"."attname" IS NOT NULL THEN "cols"."attname" | 
					
						
							|  |  |  |                   ELSE pg_get_indexdef("idx"."indexrelid", | 
					
						
							|  |  |  |                                        CAST("col_nums"."pos" AS INTEGER), | 
					
						
							|  |  |  |                                        TRUE) | 
					
						
							|  |  |  |                 END AS "col" | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |               FROM pg_index AS "idx" | 
					
						
							|  |  |  |               CROSS JOIN LATERAL unnest("idx"."indkey") | 
					
						
							|  |  |  |               WITH ORDINALITY AS "col_nums" ("num", "pos") | 
					
						
							|  |  |  |               INNER JOIN pg_class AS "rel" | 
					
						
							|  |  |  |               ON "idx"."indexrelid" = "rel".oid | 
					
						
							|  |  |  |               LEFT JOIN pg_attribute AS "cols" | 
					
						
							|  |  |  |               ON "idx"."indrelid" = "cols"."attrelid" | 
					
						
							|  |  |  |               AND "col_nums"."num" = "cols"."attnum" | 
					
						
							|  |  |  |               LEFT JOIN pg_am AS "am" | 
					
						
							|  |  |  |               ON "rel"."relam" = "am".oid | 
					
						
							|  |  |  |               WHERE "idx"."indrelid" = CAST('%s' AS REGCLASS) | 
					
						
							|  |  |  |               ORDER BY "key_type", "key_name", "col_nums"."pos"; | 
					
						
							|  |  |  |             EOT, | 
					
						
							|  |  |  |             $table | 
					
						
							|  |  |  |         )); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $rows = []; | 
					
						
							|  |  |  |         foreach ($data as $row) { | 
					
						
							|  |  |  |             $name = $row['key_name']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!array_key_exists($name, $rows)) { | 
					
						
							|  |  |  |                 $row['cols'] = [$row['col']]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 unset($row['col']); | 
					
						
							|  |  |  |                 $rows[$name] = $row; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $rows[$name]['cols'][] = $row['col']; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return array_values($rows); | 
					
						
							| 
									
										
										
										
											2010-10-11 14:15:02 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |      * Pull foreign key information for the given table. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |      * @param string $table | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |      * @return array array of arrays | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |      * @throws PEAR_Exception | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |     private function fetchForeignKeyInfo(string $table): array | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         $data = $this->fetchQueryData(sprintf( | 
					
						
							|  |  |  |             <<<'END' | 
					
						
							|  |  |  |             SELECT "con"."conname" AS "key_name", | 
					
						
							|  |  |  |                 "cols"."attname" AS "col", | 
					
						
							|  |  |  |                 "ref_rel"."relname" AS "ref_table", | 
					
						
							|  |  |  |                 "ref_cols"."attname" AS "ref_col" | 
					
						
							|  |  |  |               FROM pg_constraint AS "con" | 
					
						
							|  |  |  |               CROSS JOIN LATERAL unnest("con"."conkey", "con"."confkey") | 
					
						
							|  |  |  |               WITH ORDINALITY AS "col_nums" ("num", "ref_num", "pos") | 
					
						
							|  |  |  |               LEFT JOIN pg_attribute AS "cols" | 
					
						
							|  |  |  |               ON "con"."conrelid" = "cols"."attrelid" | 
					
						
							|  |  |  |               AND "col_nums"."num" = "cols"."attnum" | 
					
						
							|  |  |  |               LEFT JOIN pg_class AS "ref_rel" | 
					
						
							|  |  |  |               ON "con"."confrelid" = "ref_rel".oid | 
					
						
							|  |  |  |               LEFT JOIN pg_attribute AS "ref_cols" | 
					
						
							|  |  |  |               ON "con"."confrelid" = "ref_cols"."attrelid" | 
					
						
							|  |  |  |               AND "col_nums"."ref_num" = "ref_cols"."attnum" | 
					
						
							|  |  |  |               WHERE "con"."contype" = 'f' | 
					
						
							|  |  |  |               AND "con"."conrelid" = CAST('%s' AS REGCLASS) | 
					
						
							|  |  |  |               ORDER BY "key_name", "col_nums"."pos"; | 
					
						
							|  |  |  |             END, | 
					
						
							|  |  |  |             $table | 
					
						
							|  |  |  |         )); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $rows = []; | 
					
						
							|  |  |  |         foreach ($data as $row) { | 
					
						
							|  |  |  |             $name = $row['key_name']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!array_key_exists($name, $rows)) { | 
					
						
							|  |  |  |                 $row['cols'] = [$row['col'] => $row['ref_col']]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 unset($row['col']); | 
					
						
							|  |  |  |                 unset($row['ref_col']); | 
					
						
							|  |  |  |                 $rows[$name] = $row; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $rows[$name]['cols'][$row['col']] = $row['ref_col']; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         return array_values($rows); | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |      * Pull information about the emulated enum columns | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |      * @param string $table | 
					
						
							|  |  |  |      * @return array of arrays | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |      * @throws PEAR_Exception | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |     private function fetchEnumInfo($table) | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         $data = $this->fetchQueryData( | 
					
						
							|  |  |  |             <<<END | 
					
						
							|  |  |  |             SELECT "cols"."attname" AS "col", "con"."consrc" AS "check" | 
					
						
							|  |  |  |               FROM pg_constraint AS "con" | 
					
						
							|  |  |  |               INNER JOIN pg_attribute AS "cols" | 
					
						
							|  |  |  |               ON "con"."conrelid" = "cols"."attrelid" | 
					
						
							|  |  |  |               AND "con"."conkey"[1] = "cols"."attnum" | 
					
						
							|  |  |  |               WHERE "cols".atttypid = CAST('text' AS REGTYPE) | 
					
						
							|  |  |  |               AND "con"."contype" = 'c' | 
					
						
							|  |  |  |               AND cardinality("con"."conkey") = 1 | 
					
						
							|  |  |  |               AND "con"."conrelid" = CAST('{$table}' AS REGCLASS); | 
					
						
							|  |  |  |             END | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         $rows = []; | 
					
						
							|  |  |  |         foreach ($data as $row) { | 
					
						
							|  |  |  |             // PostgreSQL can show either
 | 
					
						
							|  |  |  |             $name_regex = '(' . preg_quote($this->quoteIdentifier($row['col'])) | 
					
						
							|  |  |  |                         . '|' . preg_quote($row['col']) . ')'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $enum = explode("'::text, '", preg_replace( | 
					
						
							|  |  |  |                 "/^\({$name_regex} = ANY \(ARRAY\['(.+)'::text]\)\)$/D", | 
					
						
							|  |  |  |                 '\2', | 
					
						
							|  |  |  |                 $row['check'] | 
					
						
							|  |  |  |             )); | 
					
						
							|  |  |  |             $rows[$row['col']] = $enum; | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |         return $rows; | 
					
						
							| 
									
										
										
										
											2010-10-11 15:40:51 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-28 20:05:11 +03:00
										 |  |  |     private function isNumericType(array $cd): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $ints = ['int', 'numeric', 'serial']; | 
					
						
							|  |  |  |         return in_array(strtolower($cd['type']), $ints); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2010-08-16 16:31:18 -07:00
										 |  |  |      * Return the proper SQL for creating or | 
					
						
							|  |  |  |      * altering a column. | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-08-16 16:31:18 -07:00
										 |  |  |      * Appropriate for use in CREATE TABLE or | 
					
						
							|  |  |  |      * ALTER TABLE statements. | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-09-11 12:48:28 +03:00
										 |  |  |      * @param string $name column name to create | 
					
						
							| 
									
										
										
										
											2010-08-16 16:31:18 -07:00
										 |  |  |      * @param array $cd column to create | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-08-16 16:31:18 -07:00
										 |  |  |      * @return string correct SQL for that column | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-09-11 12:48:28 +03:00
										 |  |  |     public function columnSql(string $name, array $cd) | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |         $line = []; | 
					
						
							| 
									
										
										
										
											2019-09-11 12:48:28 +03:00
										 |  |  |         $line[] = parent::columnSql($name, $cd); | 
					
						
							| 
									
										
										
										
											2010-08-16 16:31:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |         // This'll have been added from our transform of 'serial' type
 | 
					
						
							|  |  |  |         if (!empty($cd['auto_increment'])) { | 
					
						
							|  |  |  |             $line[] = 'GENERATED BY DEFAULT AS IDENTITY'; | 
					
						
							|  |  |  |         } elseif (!empty($cd['enum'])) { | 
					
						
							|  |  |  |             foreach ($cd['enum'] as &$val) { | 
					
						
							| 
									
										
										
										
											2019-09-11 12:48:28 +03:00
										 |  |  |                 $vals[] = "'" . $val . "'"; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $line[] = 'CHECK (' . $name . ' IN (' . implode(',', $vals) . '))'; | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-09-11 12:48:28 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-16 16:31:18 -07:00
										 |  |  |         return implode(' ', $line); | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |     public function appendAlterDropPrimary(array &$phrase, string $tableName) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // name hack -- is this reliable?
 | 
					
						
							|  |  |  |         $phrase[] = 'DROP CONSTRAINT ' . $this->quoteIdentifier($tableName . '_pkey'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-08 16:56:20 +03:00
										 |  |  |     public function buildFulltextIndexList($table, array $def) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         foreach ($def as &$val) { | 
					
						
							|  |  |  |             $cols[] = $this->buildFulltextIndexItem($table, $val); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return "(to_tsvector('english', " . implode(" || ' ' || ", $cols) . '))'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function buildFulltextIndexItem($table, $def) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return sprintf( | 
					
						
							|  |  |  |             "COALESCE(%s.%s, '')", | 
					
						
							|  |  |  |             $this->quoteIdentifier($table), | 
					
						
							|  |  |  |             $def | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 08:15:16 +03:00
										 |  |  |     public function mapType($column) | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |         $map = [ | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |             'integer'  => 'int', | 
					
						
							|  |  |  |             'char'     => 'bpchar', | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |             'datetime' => 'timestamp', | 
					
						
							| 
									
										
										
										
											2020-08-16 23:41:28 +03:00
										 |  |  |             'enum'     => 'text', | 
					
						
							| 
									
										
										
										
											2020-08-01 19:05:48 +03:00
										 |  |  |             'blob'     => 'bytea' | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2010-08-16 16:31:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $type = $column['type']; | 
					
						
							| 
									
										
										
										
											2020-08-10 10:55:59 +03:00
										 |  |  |         if (array_key_exists($type, $map)) { | 
					
						
							| 
									
										
										
										
											2010-08-16 16:31:18 -07:00
										 |  |  |             $type = $map[$type]; | 
					
						
							| 
									
										
										
										
											2010-05-15 14:56:40 +12:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  |         $size = $column['size'] ?? null; | 
					
						
							| 
									
										
										
										
											2020-08-10 10:55:59 +03:00
										 |  |  |         switch ($type) { | 
					
						
							|  |  |  |             case 'int': | 
					
						
							|  |  |  |                 if (in_array($size, ['tiny', 'small'])) { | 
					
						
							|  |  |  |                     $type = 'int2'; | 
					
						
							|  |  |  |                 } elseif ($size === 'big') { | 
					
						
							|  |  |  |                     $type = 'int8'; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $type = 'int4'; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 'float': | 
					
						
							|  |  |  |                 $type = ($size !== 'big') ? 'float4' : 'float8'; | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-16 16:31:18 -07:00
										 |  |  |         return $type; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-16 23:41:28 +03:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Collation in PostgreSQL format from our format | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $collate | 
					
						
							|  |  |  |      * @return string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function collationToPostgreSQL(string $collate): string | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!in_array($collate, [ | 
					
						
							|  |  |  |             'utf8_bin', | 
					
						
							|  |  |  |             'utf8_general_cs', | 
					
						
							|  |  |  |             'utf8_general_ci', | 
					
						
							|  |  |  |         ])) { | 
					
						
							|  |  |  |             common_log( | 
					
						
							|  |  |  |                 LOG_ERR, | 
					
						
							|  |  |  |                 'Collation not supported: "' . $collate . '"' | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  |             $collate = 'utf8_bin'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // @fixme No case-insensitivity support
 | 
					
						
							|  |  |  |         if (substr($collate, 0, 13) === 'utf8_general_') { | 
					
						
							|  |  |  |             $collate = 'und-x-icu'; | 
					
						
							|  |  |  |         } elseif (substr($collate, 0, 8) === 'utf8_bin') { | 
					
						
							|  |  |  |             $collate = 'C'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $collate; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function typeAndSize(string $name, array $column) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $col = parent::typeAndSize($name, $column); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($this->isStringType($column)) { | 
					
						
							|  |  |  |             if (!empty($column['collate'])) { | 
					
						
							|  |  |  |                 $col .= ' COLLATE "' . $column['collate'] . '"'; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $col; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-08 16:56:20 +03:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Append an SQL statement with an index definition for a full-text search | 
					
						
							|  |  |  |      * index over one or more columns on a table. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $statements | 
					
						
							|  |  |  |      * @param string $table | 
					
						
							|  |  |  |      * @param string $name | 
					
						
							|  |  |  |      * @param array $def | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function appendCreateFulltextIndex(array &$statements, $table, $name, array $def) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $statements[] = "CREATE INDEX {$name} ON {$table} USING gin " | 
					
						
							|  |  |  |                       . $this->buildFulltextIndexList($table, $def); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 16:04:28 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Filter the given table definition array to match features available | 
					
						
							|  |  |  |      * in this database. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This lets us strip out unsupported things like comments, foreign keys, | 
					
						
							|  |  |  |      * or type variants that we wouldn't get back from getTableDef(). | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-06-28 20:05:11 +03:00
										 |  |  |      * @param string $tableName | 
					
						
							| 
									
										
										
										
											2010-10-13 16:04:28 -07:00
										 |  |  |      * @param array $tableDef | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |      * @return array | 
					
						
							| 
									
										
										
										
											2010-10-13 16:04:28 -07:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-06-28 20:05:11 +03:00
										 |  |  |     public function filterDef(string $tableName, array $tableDef) | 
					
						
							| 
									
										
										
										
											2010-10-13 16:04:28 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-06-28 20:05:11 +03:00
										 |  |  |         $tableDef = parent::filterDef($tableName, $tableDef); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 16:21:24 -07:00
										 |  |  |         foreach ($tableDef['fields'] as $name => &$col) { | 
					
						
							| 
									
										
										
										
											2010-10-13 16:04:28 -07:00
										 |  |  |             // No convenient support for field descriptions
 | 
					
						
							|  |  |  |             unset($col['description']); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  |             if ($col['type'] === 'serial') { | 
					
						
							|  |  |  |                 $col['type'] = 'int'; | 
					
						
							|  |  |  |                 $col['auto_increment'] = true; | 
					
						
							| 
									
										
										
										
											2010-10-13 16:04:28 -07:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-16 23:41:28 +03:00
										 |  |  |             if (!empty($col['collate'])) { | 
					
						
							|  |  |  |                 $col['collate'] = $this->collationToPostgreSQL($col['collate']); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-15 16:32:37 -07:00
										 |  |  |             $col['type'] = $this->mapType($col); | 
					
						
							|  |  |  |             unset($col['size']); | 
					
						
							| 
									
										
										
										
											2010-10-13 16:04:28 -07:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-09-11 14:14:40 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-18 18:26:11 -07:00
										 |  |  |         if (!empty($tableDef['primary key'])) { | 
					
						
							|  |  |  |             $tableDef['primary key'] = $this->filterKeyDef($tableDef['primary key']); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-08-17 17:01:42 +03:00
										 |  |  |         foreach (['unique keys', 'indexes'] as $type) { | 
					
						
							|  |  |  |             if (!empty($tableDef[$type])) { | 
					
						
							|  |  |  |                 foreach ($tableDef[$type] as $k => $def) { | 
					
						
							|  |  |  |                     $tableDef[$type][$k] = $this->filterKeyDef($def); | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2010-10-18 18:26:11 -07:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-10-13 16:04:28 -07:00
										 |  |  |         return $tableDef; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-18 18:26:11 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Filter the given key/index definition to match features available | 
					
						
							|  |  |  |      * in this database. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $def | 
					
						
							|  |  |  |      * @return array | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-09-11 08:15:16 +03:00
										 |  |  |     public function filterKeyDef(array $def) | 
					
						
							| 
									
										
										
										
											2010-10-18 18:26:11 -07:00
										 |  |  |     { | 
					
						
							|  |  |  |         // PostgreSQL doesn't like prefix lengths specified on keys...?
 | 
					
						
							| 
									
										
										
										
											2019-07-25 00:43:25 +01:00
										 |  |  |         foreach ($def as $i => $item) { | 
					
						
							| 
									
										
										
										
											2010-10-18 18:26:11 -07:00
										 |  |  |             if (is_array($item)) { | 
					
						
							|  |  |  |                 $def[$i] = $item[0]; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $def; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-01-30 18:45:10 +13:00
										 |  |  | } |