Query/src/Drivers/Pgsql/Util.php

95 lines
2.0 KiB
PHP
Raw Normal View History

2016-10-12 22:12:25 -04:00
<?php declare(strict_types=1);
/**
* Query
*
2016-09-07 13:17:17 -04:00
* SQL Query Builder / Database Abstraction Layer
*
2022-09-29 11:33:08 -04:00
* PHP version 8.1
2016-09-07 13:17:17 -04:00
*
* @package Query
2023-01-20 11:30:51 -05:00
* @author Timothy J. Warren <tim@timshome.page>
* @copyright 2012 - 2023 Timothy J. Warren
2016-09-07 13:17:17 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2019-12-11 16:49:42 -05:00
* @link https://git.timshomepage.net/aviat/Query
2022-09-29 11:33:08 -04:00
* @version 4.0.0
*/
2023-03-17 15:18:33 -04:00
namespace Query\Drivers\Pgsql;
2014-04-02 17:08:50 -04:00
use PDO;
2016-09-07 17:39:19 -04:00
use Query\Drivers\AbstractUtil;
/**
2018-01-22 15:43:56 -05:00
* Postgres-specific backup, import and creation methods
*/
2023-03-17 15:18:33 -04:00
class Util extends AbstractUtil
{
/**
* Create an SQL backup file for the current database's structure
*/
2018-01-22 15:43:56 -05:00
public function backupStructure(): string
{
2016-09-07 17:39:19 -04:00
// @TODO Implement Backup function
return '';
}
/**
* Create an SQL backup file for the current database's data
*/
2018-01-22 15:43:56 -05:00
public function backupData(array $exclude=[]): string
{
2016-10-13 21:55:23 -04:00
$tables = $this->getDriver()->getTables();
// Filter out the tables you don't want
2023-03-17 15:18:33 -04:00
if ( ! empty($exclude))
{
$tables = array_diff($tables, $exclude);
}
2016-10-13 21:55:23 -04:00
$outputSql = '';
// Get the data for each object
2023-03-17 15:18:33 -04:00
foreach ($tables as $t)
{
$sql = 'SELECT * FROM "' . trim((string) $t) . '"';
2016-10-13 21:55:23 -04:00
$res = $this->getDriver()->query($sql);
$objRes = $res->fetchAll(PDO::FETCH_ASSOC);
// Don't add to the file if the table is empty
if ((is_countable($objRes) ? count($objRes) : 0) < 1)
2015-11-11 09:25:21 -05:00
{
continue;
}
$res = NULL;
// Nab the column names by getting the keys of the first row
2016-10-13 21:55:23 -04:00
$columns = @array_keys($objRes[0]);
2016-10-13 21:55:23 -04:00
$insertRows = [];
// Create the insert statements
2023-03-17 15:18:33 -04:00
foreach ($objRes as $row)
{
$row = array_values($row);
// Quote values as needed by type
2016-10-13 21:55:23 -04:00
$row = array_map([$this->getDriver(), 'quote'], $row);
$row = array_map('trim', $row);
$rowString = 'INSERT INTO "' . trim((string) $t) . '" ("' . implode('","', $columns) . '") VALUES (' . implode(',', $row) . ');';
$row = NULL;
2016-10-13 21:55:23 -04:00
$insertRows[] = $rowString;
}
2016-10-13 21:55:23 -04:00
$objRes = NULL;
2023-03-17 15:18:33 -04:00
$outputSql .= "\n\n" . implode("\n", $insertRows) . "\n";
}
2016-10-13 21:55:23 -04:00
return $outputSql;
}
2023-03-17 15:18:33 -04:00
}