123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823 |
- <?php
- /**
- * This file contains database functionality specifically designed for packages (mods) to utilize.
- *
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines http://www.simplemachines.org
- * @copyright 2013 Simple Machines and individual contributors
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.1 Alpha 1
- */
- if (!defined('SMF'))
- die('No direct access...');
- /**
- * Add the file functions to the $smcFunc array.
- */
- function db_packages_init()
- {
- global $smcFunc, $reservedTables, $db_package_log, $db_prefix;
- if (!isset($smcFunc['db_create_table']) || $smcFunc['db_create_table'] != 'smf_db_create_table')
- {
- $smcFunc += array(
- 'db_add_column' => 'smf_db_add_column',
- 'db_add_index' => 'smf_db_add_index',
- 'db_calculate_type' => 'smf_db_calculate_type',
- 'db_change_column' => 'smf_db_change_column',
- 'db_create_table' => 'smf_db_create_table',
- 'db_drop_table' => 'smf_db_drop_table',
- 'db_table_structure' => 'smf_db_table_structure',
- 'db_list_columns' => 'smf_db_list_columns',
- 'db_list_indexes' => 'smf_db_list_indexes',
- 'db_remove_column' => 'smf_db_remove_column',
- 'db_remove_index' => 'smf_db_remove_index',
- );
- $db_package_log = array();
- }
- // We setup an array of SMF tables we can't do auto-remove on - in case a mod writer cocks it up!
- $reservedTables = array('admin_info_files', 'approval_queue', 'attachments', 'ban_groups', 'ban_items',
- 'board_permissions', 'boards', 'calendar', 'calendar_holidays', 'categories', 'collapsed_categories',
- 'custom_fields', 'group_moderators', 'log_actions', 'log_activity', 'log_banned', 'log_boards',
- 'log_digest', 'log_errors', 'log_floodcontrol', 'log_group_requests', 'log_karma', 'log_mark_read',
- 'log_notify', 'log_online', 'log_packages', 'log_polls', 'log_reported', 'log_reported_comments',
- 'log_scheduled_tasks', 'log_search_messages', 'log_search_results', 'log_search_subjects',
- 'log_search_topics', 'log_topics', 'mail_queue', 'membergroups', 'members', 'message_icons',
- 'messages', 'moderators', 'package_servers', 'permission_profiles', 'permissions', 'personal_messages',
- 'pm_recipients', 'poll_choices', 'polls', 'scheduled_tasks', 'sessions', 'settings', 'smileys',
- 'themes', 'topics');
- foreach ($reservedTables as $k => $table_name)
- $reservedTables[$k] = strtolower($db_prefix . $table_name);
- // We in turn may need the extra stuff.
- db_extend('extra');
- }
- /**
- * This function can be used to create a table without worrying about schema
- * compatabilities across supported database systems.
- * - If the table exists will, by default, do nothing.
- * - Builds table with columns as passed to it - at least one column must be sent.
- * The columns array should have one sub-array for each column - these sub arrays contain:
- * 'name' = Column name
- * 'type' = Type of column - values from (smallint, mediumint, int, text, varchar, char, tinytext, mediumtext, largetext)
- * 'size' => Size of column (If applicable) - for example 255 for a large varchar, 10 for an int etc.
- * If not set SMF will pick a size.
- * - 'default' = Default value - do not set if no default required.
- * - 'null' => Can it be null (true or false) - if not set default will be false.
- * - 'auto' => Set to true to make it an auto incrementing column. Set to a numerical value to set from what
- * it should begin counting.
- * - Adds indexes as specified within indexes parameter. Each index should be a member of $indexes. Values are:
- * - 'name' => Index name (If left empty SMF will generate).
- * - 'type' => Type of index. Choose from 'primary', 'unique' or 'index'. If not set will default to 'index'.
- * - 'columns' => Array containing columns that form part of key - in the order the index is to be created.
- * - parameters: (None yet)
- * - if_exists values:
- * - 'ignore' will do nothing if the table exists. (And will return true)
- * - 'overwrite' will drop any existing table of the same name.
- * - 'error' will return false if the table already exists.
- *
- * @param string $table_name
- * @param array $columns in the format specified.
- * @param array $indexes default array(), in the format specified.
- * @param array $parameters default array()
- * @param string $if_exists default 'ignore'
- * @param string $error default 'fatal'
- */
- function smf_db_create_table($table_name, $columns, $indexes = array(), $parameters = array(), $if_exists = 'ignore', $error = 'fatal')
- {
- global $reservedTables, $smcFunc, $db_package_log, $db_prefix;
- // Strip out the table name, we might not need it in some cases
- $real_prefix = preg_match('~^("?)(.+?)\\1\\.(.*?)$~', $db_prefix, $match) === 1 ? $match[3] : $db_prefix;
- // With or without the database name, the fullname looks like this.
- $full_table_name = str_replace('{db_prefix}', $real_prefix, $table_name);
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- // First - no way do we touch SMF tables.
- if (in_array(strtolower($table_name), $reservedTables))
- return false;
- // Log that we'll want to remove this on uninstall.
- $db_package_log[] = array('remove_table', $table_name);
- // This... my friends... is a function in a half - let's start by checking if the table exists!
- $tables = $smcFunc['db_list_tables']();
- if (in_array($full_table_name, $tables))
- {
- // This is a sad day... drop the table? If not, return false (error) by default.
- if ($if_exists == 'overwrite')
- $smcFunc['db_drop_table']($table_name);
- else
- return $if_exists == 'ignore';
- }
- // If we've got this far - good news - no table exists. We can build our own!
- $smcFunc['db_transaction']('begin');
- $table_query = 'CREATE TABLE ' . $table_name . "\n" . '(';
- foreach ($columns as $column)
- {
- // If we have an auto increment do it!
- if (!empty($column['auto']))
- {
- $smcFunc['db_query']('', '
- CREATE SEQUENCE ' . $table_name . '_seq',
- array(
- 'security_override' => true,
- )
- );
- $default = 'default nextval(\'' . $table_name . '_seq\')';
- }
- elseif (isset($column['default']) && $column['default'] !== null)
- $default = 'default \'' . $smcFunc['db_escape_string']($column['default']) . '\'';
- else
- $default = '';
- // Sort out the size...
- $column['size'] = isset($column['size']) && is_numeric($column['size']) ? $column['size'] : null;
- list ($type, $size) = $smcFunc['db_calculate_type']($column['type'], $column['size']);
- if ($size !== null)
- $type = $type . '(' . $size . ')';
- // Now just put it together!
- $table_query .= "\n\t\"" . $column['name'] . '" ' . $type . ' ' . (!empty($column['null']) ? '' : 'NOT NULL') . ' ' . $default . ',';
- }
- // Loop through the indexes a sec...
- $index_queries = array();
- foreach ($indexes as $index)
- {
- $columns = implode(',', $index['columns']);
- // Primary goes in the table...
- if (isset($index['type']) && $index['type'] == 'primary')
- $table_query .= "\n\t" . 'PRIMARY KEY (' . implode(',', $index['columns']) . '),';
- else
- {
- if (empty($index['name']))
- $index['name'] = implode('_', $index['columns']);
- $index_queries[] = 'CREATE ' . (isset($index['type']) && $index['type'] == 'unique' ? 'UNIQUE' : '') . ' INDEX ' . $table_name . '_' . $index['name'] . ' ON ' . $table_name . ' (' . $columns . ')';
- }
- }
- // No trailing commas!
- if (substr($table_query, -1) == ',')
- $table_query = substr($table_query, 0, -1);
- $table_query .= ')';
- // Create the table!
- $smcFunc['db_query']('', $table_query,
- array(
- 'security_override' => true,
- )
- );
- // And the indexes...
- foreach ($index_queries as $query)
- $smcFunc['db_query']('', $query,
- array(
- 'security_override' => true,
- )
- );
- // Go, go power rangers!
- $smcFunc['db_transaction']('commit');
- }
- /**
- * Drop a table.
- *
- * @param string $table_name
- * @param array $parameters default array()
- * @param string $error default 'fatal'
- */
- function smf_db_drop_table($table_name, $parameters = array(), $error = 'fatal')
- {
- global $reservedTables, $smcFunc, $db_prefix;
- // After stripping away the database name, this is what's left.
- $real_prefix = preg_match('~^("?)(.+?)\\1\\.(.*?)$~', $db_prefix, $match) === 1 ? $match[3] : $db_prefix;
- // Get some aliases.
- $full_table_name = str_replace('{db_prefix}', $real_prefix, $table_name);
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- // God no - dropping one of these = bad.
- if (in_array(strtolower($table_name), $reservedTables))
- return false;
- // Does it exist?
- if (in_array($full_table_name, $smcFunc['db_list_tables']()))
- {
- // We can then drop the table.
- $smcFunc['db_transaction']('begin');
- // the table
- $table_query = 'DROP TABLE ' . $table_name;
- // and the assosciated sequence, if any
- $sequence_query = 'DROP SEQUENCE IF EXISTS ' . $table_name . '_seq';
- // drop them
- $smcFunc['db_query']('',
- $table_query,
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_query']('',
- $sequence_query,
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_transaction']('commit');
- return true;
- }
- // Otherwise do 'nout.
- return false;
- }
- /**
- * This function adds a column.
- *
- * @param string $table_name the name of the table
- * @param array $column_info with column information
- * @param array $parameters default array()
- * @param string $if_exists default 'update'
- * @param string $error default 'fatal'
- */
- function smf_db_add_column($table_name, $column_info, $parameters = array(), $if_exists = 'update', $error = 'fatal')
- {
- global $smcFunc, $db_package_log, $txt, $db_prefix;
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- // Log that we will want to uninstall this!
- $db_package_log[] = array('remove_column', $table_name, $column_info['name']);
- // Does it exist - if so don't add it again!
- $columns = $smcFunc['db_list_columns']($table_name, false);
- foreach ($columns as $column)
- if ($column == $column_info['name'])
- {
- // If we're going to overwrite then use change column.
- if ($if_exists == 'update')
- return $smcFunc['db_change_column']($table_name, $column_info['name'], $column_info);
- else
- return false;
- }
- // Get the specifics...
- $column_info['size'] = isset($column_info['size']) && is_numeric($column_info['size']) ? $column_info['size'] : null;
- list ($type, $size) = $smcFunc['db_calculate_type']($column_info['type'], $column_info['size']);
- if ($size !== null)
- $type = $type . '(' . $size . ')';
- // Now add the thing!
- $query = '
- ALTER TABLE ' . $table_name . '
- ADD COLUMN ' . $column_info['name'] . ' ' . $type;
- $smcFunc['db_query']('', $query,
- array(
- 'security_override' => true,
- )
- );
- // If there's more attributes they need to be done via a change on PostgreSQL.
- unset($column_info['type'], $column_info['size']);
- if (count($column_info) != 1)
- return $smcFunc['db_change_column']($table_name, $column_info['name'], $column_info);
- else
- return true;
- }
- /**
- * Removes a column.
- *
- * @param string $table_name
- * @param string $column_name
- * @param array $parameters default array()
- * @param string $error default 'fatal'
- */
- function smf_db_remove_column($table_name, $column_name, $parameters = array(), $error = 'fatal')
- {
- global $smcFunc, $db_prefix;
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- // Does it exist?
- $columns = $smcFunc['db_list_columns']($table_name, true);
- foreach ($columns as $column)
- if ($column['name'] == $column_name)
- {
- // If there is an auto we need remove it!
- if ($column['auto'])
- $smcFunc['db_query']('',
- 'DROP SEQUENCE ' . $table_name . '_seq',
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- DROP COLUMN ' . $column_name,
- array(
- 'security_override' => true,
- )
- );
- return true;
- }
- // If here we didn't have to work - joy!
- return false;
- }
- /**
- * Change a column.
- *
- * @param string $table_name
- * @param $old_column
- * @param $column_info
- * @param array $parameters default array()
- * @param string $error default 'fatal'
- */
- function smf_db_change_column($table_name, $old_column, $column_info, $parameters = array(), $error = 'fatal')
- {
- global $smcFunc, $db_prefix;
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- // Check it does exist!
- $columns = $smcFunc['db_list_columns']($table_name, true);
- $old_info = null;
- foreach ($columns as $column)
- if ($column['name'] == $old_column)
- $old_info = $column;
- // Nothing?
- if ($old_info == null)
- return false;
- // Now we check each bit individually and ALTER as required.
- if (isset($column_info['name']) && $column_info['name'] != $old_column)
- {
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- RENAME COLUMN ' . $old_column . ' TO ' . $column_info['name'],
- array(
- 'security_override' => true,
- )
- );
- }
- // Different default?
- if (isset($column_info['default']) && $column_info['default'] != $old_info['default'])
- {
- $action = $column_info['default'] !== null ? 'SET DEFAULT \'' . $smcFunc['db_escape_string']($column_info['default']) . '\'' : 'DROP DEFAULT';
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- ALTER COLUMN ' . $column_info['name'] . ' ' . $action,
- array(
- 'security_override' => true,
- )
- );
- }
- // Is it null - or otherwise?
- if (isset($column_info['null']) && $column_info['null'] != $old_info['null'])
- {
- $action = $column_info['null'] ? 'DROP' : 'SET';
- $smcFunc['db_transaction']('begin');
- if (!$column_info['null'])
- {
- // We have to set it to something if we are making it NOT NULL. And we must comply with the current column format.
- $setTo = isset($column_info['default']) ? $column_info['default'] : (strpos($old_info['type'], 'int') !== false ? 0 : '');
- $smcFunc['db_query']('', '
- UPDATE ' . $table_name . '
- SET ' . $column_info['name'] . ' = \'' . $setTo . '\'
- WHERE ' . $column_info['name'] . ' IS NULL',
- array(
- 'security_override' => true,
- )
- );
- }
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- ALTER COLUMN ' . $column_info['name'] . ' ' . $action . ' NOT NULL',
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_transaction']('commit');
- }
- // What about a change in type?
- if (isset($column_info['type']) && ($column_info['type'] != $old_info['type'] || (isset($column_info['size']) && $column_info['size'] != $old_info['size'])))
- {
- $column_info['size'] = isset($column_info['size']) && is_numeric($column_info['size']) ? $column_info['size'] : null;
- list ($type, $size) = $smcFunc['db_calculate_type']($column_info['type'], $column_info['size']);
- if ($size !== null)
- $type = $type . '(' . $size . ')';
- // The alter is a pain.
- $smcFunc['db_transaction']('begin');
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- ADD COLUMN ' . $column_info['name'] . '_tempxx ' . $type,
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_query']('', '
- UPDATE ' . $table_name . '
- SET ' . $column_info['name'] . '_tempxx = CAST(' . $column_info['name'] . ' AS ' . $type . ')',
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- DROP COLUMN ' . $column_info['name'],
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- RENAME COLUMN ' . $column_info['name'] . '_tempxx TO ' . $column_info['name'],
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_transaction']('commit');
- }
- // Finally - auto increment?!
- if (isset($column_info['auto']) && $column_info['auto'] != $old_info['auto'])
- {
- // Are we removing an old one?
- if ($old_info['auto'])
- {
- // Alter the table first - then drop the sequence.
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- ALTER COLUMN ' . $column_info['name'] . ' SET DEFAULT \'0\'',
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_query']('', '
- DROP SEQUENCE ' . $table_name . '_seq',
- array(
- 'security_override' => true,
- )
- );
- }
- // Otherwise add it!
- else
- {
- $smcFunc['db_query']('', '
- CREATE SEQUENCE ' . $table_name . '_seq',
- array(
- 'security_override' => true,
- )
- );
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- ALTER COLUMN ' . $column_info['name'] . ' SET DEFAULT nextval(\'' . $table_name . '_seq\')',
- array(
- 'security_override' => true,
- )
- );
- }
- }
- }
- /**
- * Add an index.
- *
- * @param string $table_name
- * @param array $index_info
- * @param array $parameters default array()
- * @param string $if_exists default 'update'
- * @param string $error default 'fatal'
- */
- function smf_db_add_index($table_name, $index_info, $parameters = array(), $if_exists = 'update', $error = 'fatal')
- {
- global $smcFunc, $db_package_log, $db_prefix;
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- // No columns = no index.
- if (empty($index_info['columns']))
- return false;
- $columns = implode(',', $index_info['columns']);
- // No name - make it up!
- if (empty($index_info['name']))
- {
- // No need for primary.
- if (isset($index_info['type']) && $index_info['type'] == 'primary')
- $index_info['name'] = '';
- else
- $index_info['name'] = $table_name . implode('_', $index_info['columns']);
- }
- else
- $index_info['name'] = $table_name . $index_info['name'];
- // Log that we are going to want to remove this!
- $db_package_log[] = array('remove_index', $table_name, $index_info['name']);
- // Let's get all our indexes.
- $indexes = $smcFunc['db_list_indexes']($table_name, true);
- // Do we already have it?
- foreach ($indexes as $index)
- {
- if ($index['name'] == $index_info['name'] || ($index['type'] == 'primary' && isset($index_info['type']) && $index_info['type'] == 'primary'))
- {
- // If we want to overwrite simply remove the current one then continue.
- if ($if_exists != 'update' || $index['type'] == 'primary')
- return false;
- else
- $smcFunc['db_remove_index']($table_name, $index_info['name']);
- }
- }
- // If we're here we know we don't have the index - so just add it.
- if (!empty($index_info['type']) && $index_info['type'] == 'primary')
- {
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- ADD PRIMARY KEY (' . $columns . ')',
- array(
- 'security_override' => true,
- )
- );
- }
- else
- {
- $smcFunc['db_query']('', '
- CREATE ' . (isset($index_info['type']) && $index_info['type'] == 'unique' ? 'UNIQUE' : '') . ' INDEX ' . $index_info['name'] . ' ON ' . $table_name . ' (' . $columns . ')',
- array(
- 'security_override' => true,
- )
- );
- }
- }
- /**
- * Remove an index.
- *
- * @param string $table_name
- * @param string $index_name
- * @param array$parameters default array()
- * @param string $error default 'fatal'
- */
- function smf_db_remove_index($table_name, $index_name, $parameters = array(), $error = 'fatal')
- {
- global $smcFunc, $db_prefix;
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- // Better exist!
- $indexes = $smcFunc['db_list_indexes']($table_name, true);
- if ($index_name != 'primary')
- $index_name = $table_name . '_' . $index_name;
- foreach ($indexes as $index)
- {
- // If the name is primary we want the primary key!
- if ($index['type'] == 'primary' && $index_name == 'primary')
- {
- // Dropping primary key is odd...
- $smcFunc['db_query']('', '
- ALTER TABLE ' . $table_name . '
- DROP CONSTRAINT ' . $index['name'],
- array(
- 'security_override' => true,
- )
- );
- return true;
- }
- if ($index['name'] == $index_name)
- {
- // Drop the bugger...
- $smcFunc['db_query']('', '
- DROP INDEX ' . $index_name,
- array(
- 'security_override' => true,
- )
- );
- return true;
- }
- }
- // Not to be found ;(
- return false;
- }
- /**
- * Get the schema formatted name for a type.
- *
- * @param string $type_name
- * @param $type_size
- * @param $reverse
- */
- function smf_db_calculate_type($type_name, $type_size = null, $reverse = false)
- {
- // Let's be sure it's lowercase MySQL likes both, others no.
- $type_name = strtolower($type_name);
- // Generic => Specific.
- if (!$reverse)
- {
- $types = array(
- 'varchar' => 'character varying',
- 'char' => 'character',
- 'mediumint' => 'int',
- 'tinyint' => 'smallint',
- 'tinytext' => 'character varying',
- 'mediumtext' => 'text',
- 'largetext' => 'text',
- );
- }
- else
- {
- $types = array(
- 'character varying' => 'varchar',
- 'character' => 'char',
- 'integer' => 'int',
- );
- }
- // Got it? Change it!
- if (isset($types[$type_name]))
- {
- if ($type_name == 'tinytext')
- $type_size = 255;
- $type_name = $types[$type_name];
- }
- // Numbers don't have a size.
- if (strpos($type_name, 'int') !== false)
- $type_size = null;
- return array($type_name, $type_size);
- }
- /**
- * Get table structure.
- *
- * @param string $table_name
- * @param array $parameters default array()
- */
- function smf_db_table_structure($table_name, $parameters = array())
- {
- global $smcFunc, $db_prefix;
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- return array(
- 'name' => $table_name,
- 'columns' => $smcFunc['db_list_columns']($table_name, true),
- 'indexes' => $smcFunc['db_list_indexes']($table_name, true),
- );
- }
- /**
- * Return column information for a table.
- *
- * @param string $table_name
- * @param bool $detail
- * @param array $parameters default array()
- * @return mixed
- */
- function smf_db_list_columns($table_name, $detail = false, $parameters = array())
- {
- global $smcFunc, $db_prefix;
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- $result = $smcFunc['db_query']('', '
- SELECT column_name, column_default, is_nullable, data_type, character_maximum_length
- FROM information_schema.columns
- WHERE table_name = \'' . $table_name . '\'
- ORDER BY ordinal_position',
- array(
- 'security_override' => true,
- )
- );
- $columns = array();
- while ($row = $smcFunc['db_fetch_assoc']($result))
- {
- if (!$detail)
- {
- $columns[] = $row['column_name'];
- }
- else
- {
- $auto = false;
- // What is the default?
- if (preg_match('~nextval\(\'(.+?)\'(.+?)*\)~i', $row['column_default'], $matches) != 0)
- {
- $default = null;
- $auto = true;
- }
- elseif (trim($row['column_default']) != '')
- $default = strpos($row['column_default'], '::') === false ? $row['column_default'] : substr($row['column_default'], 0, strpos($row['column_default'], '::'));
- else
- $default = null;
- // Make the type generic.
- list ($type, $size) = $smcFunc['db_calculate_type']($row['data_type'], $row['character_maximum_length'], true);
- $columns[$row['column_name']] = array(
- 'name' => $row['column_name'],
- 'null' => $row['is_nullable'] ? true : false,
- 'default' => $default,
- 'type' => $type,
- 'size' => $size,
- 'auto' => $auto,
- );
- }
- }
- $smcFunc['db_free_result']($result);
- return $columns;
- }
- /**
- * Get index information.
- *
- * @param string $table_name
- * @param bool $detail
- * @param array $parameters
- * @return mixed
- */
- function smf_db_list_indexes($table_name, $detail = false, $parameters = array())
- {
- global $smcFunc, $db_prefix;
- $table_name = str_replace('{db_prefix}', $db_prefix, $table_name);
- $result = $smcFunc['db_query']('', '
- SELECT CASE WHEN i.indisprimary THEN 1 ELSE 0 END AS is_primary,
- CASE WHEN i.indisunique THEN 1 ELSE 0 END AS is_unique,
- c2.relname AS name,
- pg_get_indexdef(i.indexrelid) AS inddef
- FROM pg_class AS c, pg_class AS c2, pg_index AS i
- WHERE c.relname = \'' . $table_name . '\'
- AND c.oid = i.indrelid
- AND i.indexrelid = c2.oid',
- array(
- 'security_override' => true,
- )
- );
- $indexes = array();
- while ($row = $smcFunc['db_fetch_assoc']($result))
- {
- // Try get the columns that make it up.
- if (preg_match('~\(([^\)]+?)\)~i', $row['inddef'], $matches) == 0)
- continue;
- $columns = explode(',', $matches[1]);
- if (empty($columns))
- continue;
- foreach ($columns as $k => $v)
- $columns[$k] = trim($v);
- // Fix up the name to be consistent cross databases
- if (substr($row['name'], -5) == '_pkey' && $row['is_primary'] == 1)
- $row['name'] = 'PRIMARY';
- else
- $row['name'] = str_replace($table_name . '_', '', $row['name']);
- if (!$detail)
- $indexes[] = $row['name'];
- else
- {
- $indexes[$row['name']] = array(
- 'name' => $row['name'],
- 'type' => $row['is_primary'] ? 'primary' : ($row['is_unique'] ? 'unique' : 'index'),
- 'columns' => $columns,
- );
- }
- }
- $smcFunc['db_free_result']($result);
- return $indexes;
- }
- ?>
|