Set some defaults for the cache and queue drivers in the installer

This commit is contained in:
Nabeel Shahzad
2017-12-14 17:12:42 -06:00
parent 277a5f2d33
commit a7318b851b
10 changed files with 165 additions and 49 deletions

View File

@@ -4,49 +4,93 @@ namespace Modules\Installer\Services;
use Illuminate\Encryption\Encrypter;
use Log;
use PDO;
class EnvironmentService
{
/**
* Check the PHP version that it meets the minimum requirement
* Create the .env file
* @return boolean
*/
public function createEnvFile($type, $host, $port, $name, $user, $pass)
{
$env_opts = [
'db_conn' => $type,
'db_host' => $host,
'db_port' => $port,
'db_name' => $name,
'db_user' => $user,
'db_pass' => $pass,
$opts = [
'APP_KEY' => $this->createAppKey(),
'DB_CONN' => $type,
'DB_HOST' => $host,
'DB_PORT' => $port,
'DB_NAME' => $name,
'DB_USER' => $user,
'DB_PASS' => $pass,
];
$env_opts['app_key'] = base64_encode(Encrypter::generateKey(config('app.cipher')));
$opts = $this->getCacheDriver($opts);
$opts = $this->getQueueDriver($opts);
$this->writeEnvFile($opts);
$this->writeEnvFile($env_opts);
return true;
}
/**
* Get the template file name and write it out
* Generate a fresh new APP_KEY
* @return string
*/
protected function writeEnvFile($env_opts)
protected function createAppKey()
{
return base64_encode(Encrypter::generateKey(config('app.cipher')));
}
/**
* Determine is APC is installed, if so, then use it as a cache driver
* @param $opts
* @return mixed
*/
protected function getCacheDriver($opts)
{
if(\extension_loaded('apc')) {
$opts['CACHE_DRIVER'] = 'apc';
} else {
$opts['CACHE_DRIVER'] = 'filesystem';
}
return $opts;
}
/**
* Setup a queue driver that's not the default "sync"
* driver, if a database is being used
* @param $opts
* @return mixed
*/
protected function getQueueDriver($opts)
{
# If we're setting up a database, then also setup
# the default queue driver to use the database
if ($opts['DB_CONN'] === 'mysql' || $opts['DB_CONN'] === 'postgres') {
$opts['QUEUE_DRIVER'] = 'database';
} else {
$opts['QUEUE_DRIVER'] = 'sync';
}
return $opts;
}
/**
* Get the template file name and write it out
* @param $opts
*/
protected function writeEnvFile($opts)
{
$app = app();
$env_file = $app->environmentFilePath();
$env_file .= config('installer.env_postfix');
# TODO: Remove this post-testing
$env_file .= '.generated';
$env_contents = view('installer::stubs/env', $env_opts);
# render it within Blade and log the contents
$env_contents = view('installer::stubs/env', $opts);
Log::info($env_contents);
$fp = fopen($env_file, 'w');
fwrite($fp, $env_contents);
fclose($fp);
}
}