![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/laminas/laminas-db/src/Adapter/Driver/Pdo/ |
<?php namespace Laminas\Db\Adapter\Driver\Pdo; use Laminas\Db\Adapter\Driver\AbstractConnection; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Exception\RunTimeException; use PDOException; use PDOStatement; use function array_diff_key; use function implode; use function is_array; use function is_int; use function str_replace; use function strpos; use function strtolower; use function substr; class Connection extends AbstractConnection { /** @var Pdo */ protected $driver; /** @var \PDO */ protected $resource; /** @var string */ protected $dsn; /** * Constructor * * @param array|\PDO|null $connectionParameters * @throws Exception\InvalidArgumentException */ public function __construct($connectionParameters = null) { if (is_array($connectionParameters)) { $this->setConnectionParameters($connectionParameters); } elseif ($connectionParameters instanceof \PDO) { $this->setResource($connectionParameters); } elseif (null !== $connectionParameters) { throw new Exception\InvalidArgumentException( '$connection must be an array of parameters, a PDO object or null' ); } } /** * Set driver * * @return $this Provides a fluent interface */ public function setDriver(Pdo $driver) { $this->driver = $driver; return $this; } /** * {@inheritDoc} */ public function setConnectionParameters(array $connectionParameters) { $this->connectionParameters = $connectionParameters; if (isset($connectionParameters['dsn'])) { $this->driverName = substr( $connectionParameters['dsn'], 0, strpos($connectionParameters['dsn'], ':') ); } elseif (isset($connectionParameters['pdodriver'])) { $this->driverName = strtolower($connectionParameters['pdodriver']); } elseif (isset($connectionParameters['driver'])) { $this->driverName = strtolower(substr( str_replace(['-', '_', ' '], '', $connectionParameters['driver']), 3 )); } } /** * Get the dsn string for this connection * * @throws RunTimeException * @return string */ public function getDsn() { if (! $this->dsn) { throw new Exception\RuntimeException( 'The DSN has not been set or constructed from parameters in connect() for this Connection' ); } return $this->dsn; } /** * {@inheritDoc} */ public function getCurrentSchema() { if (! $this->isConnected()) { $this->connect(); } switch ($this->driverName) { case 'mysql': $sql = 'SELECT DATABASE()'; break; case 'sqlite': return 'main'; case 'sqlsrv': case 'dblib': $sql = 'SELECT SCHEMA_NAME()'; break; case 'pgsql': default: $sql = 'SELECT CURRENT_SCHEMA'; break; } /** @var PDOStatement $result */ $result = $this->resource->query($sql); if ($result instanceof PDOStatement) { return $result->fetchColumn(); } return false; } /** * Set resource * * @return $this Provides a fluent interface */ public function setResource(\PDO $resource) { $this->resource = $resource; $this->driverName = strtolower($this->resource->getAttribute(\PDO::ATTR_DRIVER_NAME)); return $this; } /** * {@inheritDoc} * * @throws Exception\InvalidConnectionParametersException * @throws Exception\RuntimeException */ public function connect() { if ($this->resource) { return $this; } $dsn = $username = $password = $hostname = $database = null; $options = []; foreach ($this->connectionParameters as $key => $value) { switch (strtolower($key)) { case 'dsn': $dsn = $value; break; case 'driver': $value = strtolower((string) $value); if (strpos($value, 'pdo') === 0) { $pdoDriver = str_replace(['-', '_', ' '], '', $value); $pdoDriver = substr($pdoDriver, 3) ?: ''; } break; case 'pdodriver': $pdoDriver = (string) $value; break; case 'user': case 'username': $username = (string) $value; break; case 'pass': case 'password': $password = (string) $value; break; case 'host': case 'hostname': $hostname = (string) $value; break; case 'port': $port = (int) $value; break; case 'database': case 'dbname': $database = (string) $value; break; case 'charset': $charset = (string) $value; break; case 'unix_socket': $unixSocket = (string) $value; break; case 'version': $version = (string) $value; break; case 'driver_options': case 'options': $value = (array) $value; $options = array_diff_key($options, $value) + $value; break; default: $options[$key] = $value; break; } } if (isset($hostname) && isset($unixSocket)) { throw new Exception\InvalidConnectionParametersException( 'Ambiguous connection parameters, both hostname and unix_socket parameters were set', $this->connectionParameters ); } if (! isset($dsn) && isset($pdoDriver)) { $dsn = []; switch ($pdoDriver) { case 'sqlite': $dsn[] = $database; break; case 'sqlsrv': if (isset($database)) { $dsn[] = "database={$database}"; } if (isset($hostname)) { $dsn[] = "server={$hostname}"; } break; default: if (isset($database)) { $dsn[] = "dbname={$database}"; } if (isset($hostname)) { $dsn[] = "host={$hostname}"; } if (isset($port)) { $dsn[] = "port={$port}"; } if (isset($charset) && $pdoDriver !== 'pgsql') { $dsn[] = "charset={$charset}"; } if (isset($unixSocket)) { $dsn[] = "unix_socket={$unixSocket}"; } if (isset($version)) { $dsn[] = "version={$version}"; } break; } $dsn = $pdoDriver . ':' . implode(';', $dsn); } elseif (! isset($dsn)) { throw new Exception\InvalidConnectionParametersException( 'A dsn was not provided or could not be constructed from your parameters', $this->connectionParameters ); } $this->dsn = $dsn; try { $this->resource = new \PDO($dsn, $username, $password, $options); $this->resource->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); if (isset($charset) && $pdoDriver === 'pgsql') { $this->resource->exec('SET NAMES ' . $this->resource->quote($charset)); } $this->driverName = strtolower($this->resource->getAttribute(\PDO::ATTR_DRIVER_NAME)); } catch (PDOException $e) { $code = $e->getCode(); if (! is_int($code)) { $code = 0; } throw new Exception\RuntimeException('Connect Error: ' . $e->getMessage(), $code, $e); } return $this; } /** * {@inheritDoc} */ public function isConnected() { return $this->resource instanceof \PDO; } /** * {@inheritDoc} */ public function beginTransaction() { if (! $this->isConnected()) { $this->connect(); } if (0 === $this->nestedTransactionsCount) { $this->resource->beginTransaction(); $this->inTransaction = true; } $this->nestedTransactionsCount++; return $this; } /** * {@inheritDoc} */ public function commit() { if (! $this->isConnected()) { $this->connect(); } if ($this->inTransaction) { $this->nestedTransactionsCount -= 1; } /* * This shouldn't check for being in a transaction since * after issuing a SET autocommit=0; we have to commit too. */ if (0 === $this->nestedTransactionsCount) { $this->resource->commit(); $this->inTransaction = false; } return $this; } /** * {@inheritDoc} * * @throws Exception\RuntimeException */ public function rollback() { if (! $this->isConnected()) { throw new Exception\RuntimeException('Must be connected before you can rollback'); } if (! $this->inTransaction()) { throw new Exception\RuntimeException('Must call beginTransaction() before you can rollback'); } $this->resource->rollBack(); $this->inTransaction = false; $this->nestedTransactionsCount = 0; return $this; } /** * {@inheritDoc} * * @throws Exception\InvalidQueryException */ public function execute($sql) { if (! $this->isConnected()) { $this->connect(); } if ($this->profiler) { $this->profiler->profilerStart($sql); } $resultResource = $this->resource->query($sql); if ($this->profiler) { $this->profiler->profilerFinish($sql); } if ($resultResource === false) { $errorInfo = $this->resource->errorInfo(); throw new Exception\InvalidQueryException($errorInfo[2]); } return $this->driver->createResult($resultResource, $sql); } /** * Prepare * * @param string $sql * @return Statement */ public function prepare($sql) { if (! $this->isConnected()) { $this->connect(); } return $this->driver->createStatement($sql); } /** * {@inheritDoc} * * @param string $name * @return string|null|false */ public function getLastGeneratedValue($name = null) { if ( $name === null && ($this->driverName === 'pgsql' || $this->driverName === 'firebird') ) { return; } try { return $this->resource->lastInsertId($name); } catch (\Exception $e) { // do nothing } return false; } }