Query/src/Drivers/Pgsql/Driver.php

85 lines
1.7 KiB
PHP
Raw Normal View History

2016-10-12 22:12:25 -04:00
<?php declare(strict_types=1);
2012-04-10 14:06:34 -04:00
/**
* Query
*
2016-09-07 13:17:17 -04:00
* SQL Query Builder / Database Abstraction Layer
2012-04-10 14:06:34 -04:00
*
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
2023-03-17 16:34:21 -04:00
* @version 4.1.0
2012-04-10 14:06:34 -04:00
*/
2023-03-17 15:18:33 -04:00
namespace Query\Drivers\Pgsql;
2014-04-02 17:08:50 -04:00
use PHPUnit\Framework\Attributes\CodeCoverageIgnore;
2016-10-13 21:55:23 -04:00
use Query\Drivers\AbstractDriver;
2016-09-07 17:39:19 -04:00
2012-04-10 14:06:34 -04:00
/**
2016-09-07 17:39:19 -04:00
* PostgreSQL specific class
2012-04-10 14:06:34 -04:00
*/
2023-03-17 15:18:33 -04:00
class Driver extends AbstractDriver
{
2012-04-10 14:06:34 -04:00
/**
* Connect to a PosgreSQL database
*/
#[CodeCoverageIgnore]
2023-03-17 15:18:33 -04:00
public function __construct(string $dsn, ?string $username=NULL, ?string $password=NULL, array $options=[])
2012-04-10 14:06:34 -04:00
{
if ( ! str_contains($dsn, 'pgsql'))
2015-11-11 09:25:21 -05:00
{
2023-03-17 15:18:33 -04:00
$dsn = 'pgsql:' . $dsn;
2015-11-11 09:25:21 -05:00
}
parent::__construct($dsn, $username, $password, $options);
2012-04-10 14:06:34 -04:00
}
/**
* Get a list of schemas for the current connection
*/
2018-01-22 15:43:56 -05:00
public function getSchemas(): ?array
2012-04-10 14:06:34 -04:00
{
$sql = <<<SQL
SELECT DISTINCT "schemaname" FROM "pg_tables"
WHERE "schemaname" NOT LIKE 'pg\_%'
AND "schemaname" != 'information_schema'
SQL;
2016-10-13 21:55:23 -04:00
return $this->driverQuery($sql);
2012-04-10 14:06:34 -04:00
}
/**
* Retrieve foreign keys for the table
*/
public function getFks(string $table): array
{
2016-10-13 21:55:23 -04:00
$valueMap = [
'c' => 'CASCADE',
'r' => 'RESTRICT',
2016-09-07 13:10:03 -04:00
];
2016-10-13 21:55:23 -04:00
$keys = parent::getFks($table);
2023-03-17 15:18:33 -04:00
foreach ($keys as &$key)
{
2023-03-17 15:18:33 -04:00
foreach (['update', 'delete'] as $type)
{
2019-12-11 16:49:06 -05:00
if ( ! isset($valueMap[$key[$type]]))
{
// @codeCoverageIgnoreStart
2019-12-11 16:49:06 -05:00
continue;
// @codeCoverageIgnoreEnd
2019-12-11 16:49:06 -05:00
}
2016-10-13 21:55:23 -04:00
$key[$type] = $valueMap[$key[$type]];
}
}
return $keys;
}
2023-03-17 15:18:33 -04:00
}