Source of file Util.php

Size: 2,600 Bytes - Last Modified: 2015-11-10T10:05:07-05:00

../src/Query/Drivers/Mysql/Util.php

123456789101112131415161718192021222324252627282930313233
Covered by 1 test(s):
  • MySQLTest::testBackup
343536
Covered by 1 test(s):
  • MySQLTest::testBackup
3738
Covered by 1 test(s):
  • MySQLTest::testBackup
394041
Covered by 1 test(s):
  • MySQLTest::testBackup
424344
Covered by 1 test(s):
  • MySQLTest::testBackup
4546
Covered by 1 test(s):
  • MySQLTest::testBackup
4748
Covered by 1 test(s):
  • MySQLTest::testBackup
49
Covered by 1 test(s):
  • MySQLTest::testBackup
5051
Covered by 1 test(s):
  • MySQLTest::testBackup
525354
Covered by 1 test(s):
  • MySQLTest::testBackup
55
Covered by 1 test(s):
  • MySQLTest::testBackup
56
Covered by 1 test(s):
  • MySQLTest::testBackup
5758
Covered by 1 test(s):
  • MySQLTest::testBackup
59606162636465666768697071
Covered by 1 test(s):
  • MySQLTest::testBackupData
727374
Covered by 1 test(s):
  • MySQLTest::testBackupData
75
Covered by 1 test(s):
  • MySQLTest::testBackupData
76
Covered by 1 test(s):
  • MySQLTest::testBackupData
77
Covered by 1 test(s):
  • MySQLTest::testBackupData
7879
Covered by 1 test(s):
  • MySQLTest::testBackupData
808182
Covered by 1 test(s):
  • MySQLTest::testBackupData
8384
Covered by 1 test(s):
  • MySQLTest::testBackupData
85
Covered by 1 test(s):
  • MySQLTest::testBackupData
86
Covered by 1 test(s):
  • MySQLTest::testBackupData
878889
Covered by 1 test(s):
  • MySQLTest::testBackupData
909192
Covered by 1 test(s):
  • MySQLTest::testBackupData
9394
Covered by 1 test(s):
  • MySQLTest::testBackupData
959697
Covered by 1 test(s):
  • MySQLTest::testBackupData
9899
Covered by 1 test(s):
  • MySQLTest::testBackupData
100101102
Covered by 1 test(s):
  • MySQLTest::testBackupData
103104
Covered by 1 test(s):
  • MySQLTest::testBackupData
105
Covered by 1 test(s):
  • MySQLTest::testBackupData
106
Covered by 1 test(s):
  • MySQLTest::testBackupData
107108
Covered by 1 test(s):
  • MySQLTest::testBackupData
109110
Covered by 1 test(s):
  • MySQLTest::testBackupData
111112
Covered by 1 test(s):
  • MySQLTest::testBackupData
113
Covered by 1 test(s):
  • MySQLTest::testBackupData
114115
Covered by 1 test(s):
  • MySQLTest::testBackupData
116
Covered by 1 test(s):
  • MySQLTest::testBackupData
117118
Covered by 1 test(s):
  • MySQLTest::testBackupData
119120121122
<?php
/**
 * Query
 *
 * Free Query Builder / Database Abstraction Layer
 *
 * @package		Query
 * @author		Timothy J. Warren
 * @copyright	Copyright (c) 2012 - 2014
 * @link 		https://github.com/aviat4ion/Query
 * @license		http://philsturgeon.co.uk/code/dbad-license
 */

// --------------------------------------------------------------------------

namespace Query\Drivers\Mysql;

/**
 * MySQL-specific backup, import and creation methods
 *
 * @package Query
 * @subpackage Drivers
 */
class Util extends \Query\AbstractUtil {

	/**
	 * Create an SQL backup file for the current database's structure
	 *
	 * @return string
	 */
	public function backup_structure()
	{
		$string = array();

		// Get databases
		$dbs = $this->get_driver()->get_dbs();

		foreach($dbs as &$d)
		{
			// Skip built-in dbs
			if ($d == 'mysql') continue;

			// Get the list of tables
			$tables = $this->get_driver()->driver_query("SHOW TABLES FROM `{$d}`", TRUE);

			foreach($tables as $table)
			{
				$array = $this->get_driver()->driver_query("SHOW CREATE TABLE `{$d}`.`{$table}`", FALSE);
				$row = current($array);

				if ( ! isset($row['Create Table'])) continue;


				$string[] = $row['Create Table'];
			}
		}

		return implode("\n\n", $string);
	}

	// --------------------------------------------------------------------------

	/**
	 * Create an SQL backup file for the current database's data
	 *
	 * @param array $exclude
	 * @return string
	 */
	public function backup_data($exclude=array())
	{
		$tables = $this->get_driver()->get_tables();

		// Filter out the tables you don't want
		if( ! empty($exclude))
		{
			$tables = array_diff($tables, $exclude);
		}

		$output_sql = '';

		// Select the rows from each Table
		foreach($tables as $t)
		{
			$sql = "SELECT * FROM `{$t}`";
			$res = $this->get_driver()->query($sql);
			$rows = $res->fetchAll(\PDO::FETCH_ASSOC);

			// Skip empty tables
			if (count($rows) < 1) continue;

			// Nab the column names by getting the keys of the first row
			$columns = @array_keys($rows[0]);

			$insert_rows = array();

			// Create the insert statements
			foreach($rows as $row)
			{
				$row = array_values($row);

				// Workaround for Quercus
				foreach($row as &$r)
				{
					$r = $this->get_driver()->quote($r);
				}
				$row = array_map('trim', $row);

				$row_string = 'INSERT INTO `'.trim($t).'` (`'.implode('`,`', $columns).'`) VALUES ('.implode(',', $row).');';

				$row = NULL;

				$insert_rows[] = $row_string;
			}

			$output_sql .= "\n\n".implode("\n", $insert_rows)."\n";
		}

		return $output_sql;
	}
}
// End of mysql_util.php