mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
Merge pull request #2604 from wallabag/postgresql-version
wallabag can’t work on PostgreSQL <= 9.1
This commit is contained in:
commit
4c27f14fa9
1 changed files with 22 additions and 1 deletions
|
@ -72,6 +72,7 @@ class InstallCommand extends ContainerAwareCommand
|
||||||
protected function checkRequirements()
|
protected function checkRequirements()
|
||||||
{
|
{
|
||||||
$this->defaultOutput->writeln('<info><comment>Step 1 of 4.</comment> Checking system requirements.</info>');
|
$this->defaultOutput->writeln('<info><comment>Step 1 of 4.</comment> Checking system requirements.</info>');
|
||||||
|
$doctrineManager = $this->getContainer()->get('doctrine')->getManager();
|
||||||
|
|
||||||
$rows = [];
|
$rows = [];
|
||||||
|
|
||||||
|
@ -95,7 +96,7 @@ class InstallCommand extends ContainerAwareCommand
|
||||||
$help = '';
|
$help = '';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$this->getContainer()->get('doctrine')->getManager()->getConnection()->connect();
|
$doctrineManager->getConnection()->connect();
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
if (false === strpos($e->getMessage(), 'Unknown database')
|
if (false === strpos($e->getMessage(), 'Unknown database')
|
||||||
&& false === strpos($e->getMessage(), 'database "'.$this->getContainer()->getParameter('database_name').'" does not exist')) {
|
&& false === strpos($e->getMessage(), 'database "'.$this->getContainer()->getParameter('database_name').'" does not exist')) {
|
||||||
|
@ -107,6 +108,26 @@ class InstallCommand extends ContainerAwareCommand
|
||||||
|
|
||||||
$rows[] = [$label, $status, $help];
|
$rows[] = [$label, $status, $help];
|
||||||
|
|
||||||
|
// testing if PostgreSQL > 9.1
|
||||||
|
$label = '<comment>SGBD version</comment>';
|
||||||
|
$status = '<info>OK!</info>';
|
||||||
|
$help = '';
|
||||||
|
|
||||||
|
if ('postgresql' === $doctrineManager->getConnection()->getSchemaManager()->getDatabasePlatform()->getName()) {
|
||||||
|
// return version should be like "PostgreSQL 9.5.4 on x86_64-apple-darwin15.6.0, compiled by Apple LLVM version 8.0.0 (clang-800.0.38), 64-bit"
|
||||||
|
$version = $doctrineManager->getConnection()->query('SELECT version();')->fetchColumn();
|
||||||
|
|
||||||
|
preg_match('/PostgreSQL ([0-9\.]+)/i', $version, $matches);
|
||||||
|
|
||||||
|
if (isset($matches[1]) & version_compare($matches[1], '9.2.0', '<')) {
|
||||||
|
$fulfilled = false;
|
||||||
|
$status = '<error>ERROR!</error>';
|
||||||
|
$help = 'PostgreSQL should be greater than 9.1 (actual version: '.$matches[1].')';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$rows[] = [$label, $status, $help];
|
||||||
|
|
||||||
foreach ($this->functionExists as $functionRequired) {
|
foreach ($this->functionExists as $functionRequired) {
|
||||||
$label = '<comment>'.$functionRequired.'</comment>';
|
$label = '<comment>'.$functionRequired.'</comment>';
|
||||||
$status = '<info>OK!</info>';
|
$status = '<info>OK!</info>';
|
||||||
|
|
Loading…
Reference in a new issue