123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <?php
- /**
- * This file contains rarely used extended database functionality.
- *
- * 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 functions implemented in this file to the $smcFunc array.
- */
- function db_extra_init()
- {
- global $smcFunc;
- if (!isset($smcFunc['db_backup_table']) || $smcFunc['db_backup_table'] != 'smf_db_backup_table')
- $smcFunc += array(
- 'db_backup_table' => 'smf_db_backup_table',
- 'db_optimize_table' => 'smf_db_optimize_table',
- 'db_insert_sql' => 'smf_db_insert_sql',
- 'db_table_sql' => 'smf_db_table_sql',
- 'db_list_tables' => 'smf_db_list_tables',
- 'db_get_backup' => 'smf_db_get_backup',
- 'db_get_version' => 'smf_db_get_version',
- );
- }
- /**
- * Backup $table to $backup_table.
- * @param string $table
- * @param string $backup_table
- * @return resource -the request handle to the table creation query
- */
- function smf_db_backup_table($table, $backup_table)
- {
- global $smcFunc, $db_prefix;
- $table = str_replace('{db_prefix}', $db_prefix, $table);
- $result = $smcFunc['db_query']('', '
- SELECT sql
- FROM sqlite_master
- WHERE type = {string:txttable}
- AND name = {string:table}',
- array(
- 'table' => $table,
- 'txttable' => 'table'
- )
- );
- list ($create) = $smcFunc['db_fetch_row']($result);
- $smcFunc['db_free_result']($result);
- $create = preg_split('/[\n\r]/', $create);
- $auto_inc = '';
- // Remove the first line and check to see if the second one contain useless info.
- unset($create[0]);
- if (trim($create[1]) == '(')
- unset($create[1]);
- if (trim($create[count($create)]) == ')')
- unset($create[count($create)]);
- foreach ($create as $k => $l)
- {
- // Get the name of the auto_increment column.
- if (strpos($l, 'primary') || strpos($l, 'PRIMARY'))
- $auto_inc = trim($l);
- // Skip everything but keys...
- if ((strpos($l, 'KEY') !== false && strpos($l, 'PRIMARY KEY') === false) || strpos($l, $table) !== false || strpos(trim($l), 'PRIMARY KEY') === 0)
- unset($create[$k]);
- }
- if (!empty($create))
- $create = '(
- ' . implode('
- ', $create) . ')';
- else
- $create = '';
- // Is there an extra junk at the end?
- if (substr($create, -2, 1) == ',')
- $create = substr($create, 0, -2) . ')';
- if (substr($create, -2) == '))')
- $create = substr($create, 0, -1);
- $smcFunc['db_query']('', '
- DROP TABLE {raw:backup_table}',
- array(
- 'backup_table' => $backup_table,
- 'db_error_skip' => true,
- )
- );
- $request = $smcFunc['db_quote']('
- CREATE TABLE {raw:backup_table} {raw:create}',
- array(
- 'backup_table' => $backup_table,
- 'create' => $create,
- ));
- $smcFunc['db_query']('', '
- CREATE TABLE {raw:backup_table} {raw:create}',
- array(
- 'backup_table' => $backup_table,
- 'create' => $create,
- ));
- $request = $smcFunc['db_query']('', '
- INSERT INTO {raw:backup_table}
- SELECT *
- FROM {raw:table}',
- array(
- 'backup_table' => $backup_table,
- 'table' => $table,
- ));
- return $request;
- }
- /**
- * This function optimizes a table.
- * @param string $table - the table to be optimized
- * @return how much it was gained
- */
- function smf_db_optimize_table($table)
- {
- global $smcFunc, $db_prefix;
- $table = str_replace('{db_prefix}', $db_prefix, $table);
- $request = $smcFunc['db_query']('', '
- VACUUM {raw:table}',
- array(
- 'table' => $table,
- )
- );
- if (!$request)
- return -1;
- $row = $smcFunc['db_fetch_assoc']($request);
- $smcFunc['db_free_result']($request);
- // The function returns nothing.
- return 0;
- }
- /**
- * This function lists all tables in the database.
- * The listing could be filtered according to $filter.
- *
- * @param mixed $db string holding the table name, or false, default false
- * @param mixed $filter string to filter by, or false, default false
- * @return array an array of table names. (strings)
- */
- function smf_db_list_tables($db = false, $filter = false)
- {
- global $smcFunc;
- $filter = $filter == false ? '' : ' AND name LIKE \'' . str_replace("\_", "_", $filter) . '\'';
- $request = $smcFunc['db_query']('', '
- SELECT name
- FROM sqlite_master
- WHERE type = {string:type}
- {raw:filter}
- ORDER BY name',
- array(
- 'type' => 'table',
- 'filter' => $filter,
- )
- );
- $tables = array();
- while ($row = $smcFunc['db_fetch_row']($request))
- $tables[] = $row[0];
- $smcFunc['db_free_result']($request);
- return $tables;
- }
- /**
- * Gets all the necessary INSERTs for the table named table_name.
- * It goes in 250 row segments.
- *
- * @param string $tableName - the table to create the inserts for.
- * @param bool new_table
- * @return string the query to insert the data back in, or an empty string if the table was empty.
- */
- function smf_db_insert_sql($tableName, $new_table = false)
- {
- global $smcFunc, $db_prefix;
- static $start = 0, $num_rows, $fields, $limit;
- if ($new_table)
- {
- $limit = strstr($tableName, 'log_') !== false ? 500 : 250;
- $start = 0;
- }
- $data = '';
- $tableName = str_replace('{db_prefix}', $db_prefix, $tableName);
- // This will be handy...
- $crlf = "\r\n";
- $result = $smcFunc['db_query']('', '
- SELECT *
- FROM ' . $tableName . '
- LIMIT ' . $start . ', ' . $limit,
- array(
- 'security_override' => true,
- )
- );
- // The number of rows, just for record keeping and breaking INSERTs up.
- $num_rows = $smcFunc['db_num_rows']($result);
- if ($num_rows == 0)
- return '';
- if ($new_table)
- {
- $fields = array_keys($smcFunc['db_fetch_assoc']($result));
- // SQLite fetches an array so we need to filter out the numberic index for the columns.
- foreach ($fields as $key => $name)
- if (is_numeric($name))
- unset($fields[$key]);
- $smcFunc['db_data_seek']($result, 0);
- }
- // Start it off with the basic INSERT INTO.
- $data = 'BEGIN TRANSACTION;' . $crlf;
- $insert_msg = $crlf . 'INSERT INTO ' . $tableName . $crlf . "\t" . '(' . implode(', ', $fields) . ')' . $crlf . 'VALUES ' . $crlf . "\t";
- // Loop through each row.
- while ($row = $smcFunc['db_fetch_assoc']($result))
- {
- // Get the fields in this row...
- $field_list = array();
- foreach ($row as $key => $item)
- {
- // Try to figure out the type of each field. (NULL, number, or 'string'.)
- if (!isset($item))
- $field_list[] = 'NULL';
- elseif (is_numeric($item) && (int) $item == $item)
- $field_list[] = $item;
- else
- $field_list[] = '\'' . $smcFunc['db_escape_string']($item) . '\'';
- }
- // 'Insert' the data.
- $data .= $insert_msg . '(' . implode(', ', $field_list) . ');' . $crlf;
- }
- $smcFunc['db_free_result']($result);
- $data .= $crlf;
- $start += $limit;
- return $data;
- }
- /**
- * Dumps the schema (CREATE) for a table.
- * @todo why is this needed for?
- * @param string $tableName - the table
- * @return string - the CREATE statement as string
- */
- function smf_db_table_sql($tableName)
- {
- global $smcFunc, $db_prefix;
- $tableName = str_replace('{db_prefix}', $db_prefix, $tableName);
- // This will be needed...
- $crlf = "\r\n";
- // Start the create table...
- $schema_create = '';
- $index_create = '';
- // Let's get the create statement directly from SQLite.
- $result = $smcFunc['db_query']('', '
- SELECT sql
- FROM sqlite_master
- WHERE type = {string:type}
- AND name = {string:table_name}',
- array(
- 'type' => 'table',
- 'table_name' => $tableName,
- )
- );
- list ($schema_create) = $smcFunc['db_fetch_row']($result);
- $smcFunc['db_free_result']($result);
- // Now the indexes.
- $result = $smcFunc['db_query']('', '
- SELECT sql
- FROM sqlite_master
- WHERE type = {string:type}
- AND tbl_name = {string:table_name}',
- array(
- 'type' => 'index',
- 'table_name' => $tableName,
- )
- );
- $indexes = array();
- while ($row = $smcFunc['db_fetch_assoc']($result))
- if (trim($row['sql']) != '')
- $indexes[] = $row['sql'];
- $smcFunc['db_free_result']($result);
- $index_create .= implode(';' . $crlf, $indexes);
- $schema_create = empty($indexes) ? rtrim($schema_create) : $schema_create . ';' . $crlf . $crlf;
- return $schema_create . $index_create;
- }
- /**
- * Get the version number.
- * @return string - the version
- */
- function smf_db_get_version()
- {
- return sqlite_libversion();
- }
- /**
- * Simply return the database - and die!
- * Used by DumpDatabase.php.
- */
- function smf_db_get_backup()
- {
- global $db_name;
- $db_file = substr($db_name, -3) === '.db' ? $db_name : $db_name . '.db';
- // Add more info if zipped...
- $ext = '';
- if (isset($_REQUEST['compress']) && function_exists('gzencode'))
- $ext = '.gz';
- // Do the remaining headers.
- header('Content-Disposition: attachment; filename="' . $db_file . $ext . '"');
- header('Cache-Control: private');
- header('Connection: close');
- // Literally dump the contents. Try reading the file first.
- if (@readfile($db_file) == null)
- echo file_get_contents($db_file);
- obExit(false);
- }
- ?>
|