2020-07-09 03:52:53 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
use Symfony\Component\Process\Exception\ProcessFailedException;
|
|
|
|
use Symfony\Component\Process\Process;
|
|
|
|
|
|
|
|
class Install extends Command
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $signature = 'application:install {-u|--unattended: Install non-interactively (currently unused: WIP)}';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'Installs the application and prepares for production use.';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new command instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$basePath = base_path();
|
|
|
|
if (Storage::disk('local')->missing('INSTALLED'))
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
$this->info('[!! Welcome to Rasberry Teams !!]');
|
|
|
|
$this->info('>> Installing...');
|
2020-07-09 04:06:25 +00:00
|
|
|
$this->call('down', [
|
|
|
|
'--message' => 'Down for maintenance. We\'ll be right back!'
|
|
|
|
]);
|
2020-07-09 03:52:53 +00:00
|
|
|
|
|
|
|
copy($basePath . '/.env.example', $basePath . '/.env');
|
|
|
|
Artisan::call('key:generate');
|
|
|
|
|
|
|
|
|
|
|
|
// Command stack
|
|
|
|
$composer = new Process('composer install', $basePath);
|
|
|
|
$npm = new Process('npm install', $basePath);
|
|
|
|
$npmBuild = new Process('npm run dev', $basePath);
|
|
|
|
|
|
|
|
|
2020-07-09 04:06:25 +00:00
|
|
|
$this->info('>> Installing and preparing dependencies. This may take a while, depending on your computer.');
|
2020-07-09 04:01:50 +00:00
|
|
|
$progress = $this->output->createProgressBar(3);
|
2020-07-09 03:52:53 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$composer->mustRun();
|
2020-07-09 04:01:50 +00:00
|
|
|
$progress->advance();
|
|
|
|
|
2020-07-09 03:52:53 +00:00
|
|
|
$npm->mustRun();
|
2020-07-09 04:01:50 +00:00
|
|
|
$progress->advance();
|
|
|
|
|
2020-07-09 03:52:53 +00:00
|
|
|
$npmBuild->mustRun();
|
2020-07-09 04:01:50 +00:00
|
|
|
$progress->advance();
|
2020-07-09 03:52:53 +00:00
|
|
|
}
|
|
|
|
catch(ProcessFailedException $pfe)
|
|
|
|
{
|
|
|
|
$this->error('[!] One or more errors have ocurred whilst attempting to install dependencies. This is the error message: ' . $pfe->getMessage());
|
|
|
|
$this->error('[!] It is recommended to run this command again, and report a bug if it keeps happening.');
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2020-07-09 04:01:50 +00:00
|
|
|
finally
|
|
|
|
{
|
|
|
|
$progress->finish();
|
|
|
|
}
|
|
|
|
|
2020-07-09 03:52:53 +00:00
|
|
|
|
|
|
|
$settings = [];
|
|
|
|
|
|
|
|
$this->info('>> Configuring application - We\'re going to ask a few questions here!');
|
|
|
|
$this->info('>> Questions with a value in brackets are optional and you may leave them empty to use it');
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
$this->info('== Database Settings (1/6) ==');
|
|
|
|
|
|
|
|
$settings['DB_USERNAME'] = $this->ask('Database username [root]: ') ?? 'root';
|
|
|
|
$settings['DB_PASSWORD'] = $this->secret('Database password (Input won\'t be seen): ');
|
|
|
|
$settings['DB_DATABASE'] = $this->ask('Database name: ');
|
|
|
|
$settings['DB_PORT'] = $this->ask('Database port [3306]: ') ?? 3306;
|
|
|
|
$settings['DB_HOST'] = $this->ask('Database hostname [localhost]: ') ?? 'localhost';
|
|
|
|
|
|
|
|
$this->info('== Antispam Settings (2/6) (Recaptcha v2) ==');
|
|
|
|
$settings['RECAPTCHA_SITE_KEY'] = $this->ask('Site key: ');
|
|
|
|
$settings['RECAPTCHA_PRIVATE_KEY'] = $this->ask('Private site key: ');
|
|
|
|
|
|
|
|
$this->info('== IP Geolocation Settings (3/6) (refer to README.md) ==');
|
|
|
|
$settings['APIGEO_API_KEY'] = $this->ask('API Key: ');
|
|
|
|
|
|
|
|
$this->info('== Notification Settings (4/6) (Email) ==');
|
|
|
|
$settings['MAIL_USERNAME'] = $this->ask('SMTP Username: ');
|
|
|
|
$settings['MAIL_PASSWORD'] = $this->secret('SMTP Password (Input won\'t be seen): ');
|
|
|
|
$settings['MAIL_PORT'] = $this->ask('SMTP Server Port [25]: ') ?? 25;
|
|
|
|
$settings['MAIL_HOST'] = $this->ask('SMTP Server Hostname: ');
|
|
|
|
|
|
|
|
$this->info('== Notification Settings (5/6) (Slack) ==');
|
|
|
|
$settings['SLACK_INTEGRATION_WEBHOOK'] = $this->ask('Integration webhook URL: ');
|
|
|
|
|
|
|
|
$this->info('== Web Settings (6/6) ==');
|
|
|
|
$settings['APP_URL'] = $this->ask('Application\'s URL [http://localhost]: ') ?? 'http://localhost';
|
|
|
|
|
|
|
|
} while(!$this->confirm('Are you sure you want to save these settings? You can always go back and try again.'));
|
|
|
|
|
|
|
|
foreach($settings as $keyname => $value)
|
|
|
|
{
|
|
|
|
$this->callSilent('environment:modify', [
|
|
|
|
'key' => $keyname,
|
|
|
|
'value' => $value
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->info('>> Saved configuration settings!');
|
|
|
|
$this->info('>> Preparing database...');
|
|
|
|
|
|
|
|
$this->call('migrate');
|
|
|
|
$this->call('db:seed');
|
|
|
|
$this->call('config:cache');
|
|
|
|
|
|
|
|
touch($basePath . '/INSTALLED');
|
2020-07-09 04:06:25 +00:00
|
|
|
|
|
|
|
$this->call('up');
|
2020-07-09 03:52:53 +00:00
|
|
|
$this->info('>> All done! Visit ' . $baseURL . ' to start using your brand new installation of Raspberry Teams!');
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->error('[!] The application is already installed!');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|