mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-02 15:23:38 +03:00
162 lines
3.8 KiB
PHP
162 lines
3.8 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Zend Framework (http://framework.zend.com/)
|
||
|
*
|
||
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
||
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
*/
|
||
|
|
||
|
namespace Zend\Db\Adapter\Platform;
|
||
|
|
||
|
class Sql92 implements PlatformInterface
|
||
|
{
|
||
|
/**
|
||
|
* Get name
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getName()
|
||
|
{
|
||
|
return 'SQL92';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get quote indentifier symbol
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getQuoteIdentifierSymbol()
|
||
|
{
|
||
|
return '"';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Quote identifier
|
||
|
*
|
||
|
* @param string $identifier
|
||
|
* @return string
|
||
|
*/
|
||
|
public function quoteIdentifier($identifier)
|
||
|
{
|
||
|
return '"' . str_replace('"', '\\' . '"', $identifier) . '"';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Quote identifier chain
|
||
|
*
|
||
|
* @param string|string[] $identifierChain
|
||
|
* @return string
|
||
|
*/
|
||
|
public function quoteIdentifierChain($identifierChain)
|
||
|
{
|
||
|
$identifierChain = str_replace('"', '\\"', $identifierChain);
|
||
|
if (is_array($identifierChain)) {
|
||
|
$identifierChain = implode('"."', $identifierChain);
|
||
|
}
|
||
|
return '"' . $identifierChain . '"';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get quote value symbol
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getQuoteValueSymbol()
|
||
|
{
|
||
|
return '\'';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Quote value
|
||
|
*
|
||
|
* @param string $value
|
||
|
* @return string
|
||
|
*/
|
||
|
public function quoteValue($value)
|
||
|
{
|
||
|
trigger_error(
|
||
|
'Attempting to quote a value without specific driver level support can introduce security vulnerabilities in a production environment.'
|
||
|
);
|
||
|
return '\'' . addcslashes($value, "\x00\n\r\\'\"\x1a") . '\'';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Quote Trusted Value
|
||
|
*
|
||
|
* The ability to quote values without notices
|
||
|
*
|
||
|
* @param $value
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function quoteTrustedValue($value)
|
||
|
{
|
||
|
return '\'' . addcslashes($value, "\x00\n\r\\'\"\x1a") . '\'';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Quote value list
|
||
|
*
|
||
|
* @param string|string[] $valueList
|
||
|
* @return string
|
||
|
*/
|
||
|
public function quoteValueList($valueList)
|
||
|
{
|
||
|
if (!is_array($valueList)) {
|
||
|
return $this->quoteValue($valueList);
|
||
|
}
|
||
|
|
||
|
$value = reset($valueList);
|
||
|
do {
|
||
|
$valueList[key($valueList)] = $this->quoteValue($value);
|
||
|
} while ($value = next($valueList));
|
||
|
return implode(', ', $valueList);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get identifier separator
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getIdentifierSeparator()
|
||
|
{
|
||
|
return '.';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Quote identifier in fragment
|
||
|
*
|
||
|
* @param string $identifier
|
||
|
* @param array $safeWords
|
||
|
* @return string
|
||
|
*/
|
||
|
public function quoteIdentifierInFragment($identifier, array $safeWords = array())
|
||
|
{
|
||
|
$parts = preg_split('#([\.\s\W])#', $identifier, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
|
||
|
if ($safeWords) {
|
||
|
$safeWords = array_flip($safeWords);
|
||
|
$safeWords = array_change_key_case($safeWords, CASE_LOWER);
|
||
|
}
|
||
|
foreach ($parts as $i => $part) {
|
||
|
if ($safeWords && isset($safeWords[strtolower($part)])) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
switch ($part) {
|
||
|
case ' ':
|
||
|
case '.':
|
||
|
case '*':
|
||
|
case 'AS':
|
||
|
case 'As':
|
||
|
case 'aS':
|
||
|
case 'as':
|
||
|
break;
|
||
|
default:
|
||
|
$parts[$i] = '"' . str_replace('"', '\\' . '"', $part) . '"';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return implode('', $parts);
|
||
|
}
|
||
|
}
|