mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-01 20:53:14 +08:00
79 lines
2.6 KiB
PHP
79 lines
2.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\CLI\Install\Plugin;
|
|
|
|
use Shlinkio\Shlink\CLI\Model\CustomizableAppConfig;
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
use Symfony\Component\Filesystem\Exception\IOException;
|
|
use Symfony\Component\Filesystem\Filesystem;
|
|
|
|
class DatabaseConfigCustomizer implements ConfigCustomizerInterface
|
|
{
|
|
const DATABASE_DRIVERS = [
|
|
'MySQL' => 'pdo_mysql',
|
|
'PostgreSQL' => 'pdo_pgsql',
|
|
'SQLite' => 'pdo_sqlite',
|
|
];
|
|
|
|
/**
|
|
* @var Filesystem
|
|
*/
|
|
private $filesystem;
|
|
|
|
public function __construct(Filesystem $filesystem)
|
|
{
|
|
$this->filesystem = $filesystem;
|
|
}
|
|
|
|
/**
|
|
* @param SymfonyStyle $io
|
|
* @param CustomizableAppConfig $appConfig
|
|
* @return void
|
|
* @throws IOException
|
|
*/
|
|
public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig)
|
|
{
|
|
$io->title('DATABASE');
|
|
|
|
if ($appConfig->hasDatabase() && $io->confirm('Do you want to keep imported database config?')) {
|
|
// If the user selected to keep DB config and is configured to use sqlite, copy DB file
|
|
if ($appConfig->getDatabase()['DRIVER'] === self::DATABASE_DRIVERS['SQLite']) {
|
|
try {
|
|
$this->filesystem->copy(
|
|
$appConfig->getImportedInstallationPath() . '/' . CustomizableAppConfig::SQLITE_DB_PATH,
|
|
CustomizableAppConfig::SQLITE_DB_PATH
|
|
);
|
|
} catch (IOException $e) {
|
|
$io->error('It wasn\'t possible to import the SQLite database');
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
// Select database type
|
|
$params = [];
|
|
$databases = \array_keys(self::DATABASE_DRIVERS);
|
|
$dbType = $io->choice('Select database type', $databases, $databases[0]);
|
|
$params['DRIVER'] = self::DATABASE_DRIVERS[$dbType];
|
|
|
|
// Ask for connection params if database is not SQLite
|
|
if ($params['DRIVER'] !== self::DATABASE_DRIVERS['SQLite']) {
|
|
$params['NAME'] = $io->ask('Database name', 'shlink');
|
|
$params['USER'] = $io->ask('Database username');
|
|
$params['PASSWORD'] = $io->ask('Database password');
|
|
$params['HOST'] = $io->ask('Database host', 'localhost');
|
|
$params['PORT'] = $io->ask('Database port', $this->getDefaultDbPort($params['DRIVER']));
|
|
}
|
|
|
|
$appConfig->setDatabase($params);
|
|
}
|
|
|
|
private function getDefaultDbPort(string $driver): string
|
|
{
|
|
return $driver === 'pdo_mysql' ? '3306' : '5432';
|
|
}
|
|
}
|