Files
faveo/routes/console.php
Shift 43386fd86d Apply Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions.

You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root.

For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
2023-01-03 08:25:25 +00:00

74 lines
2.3 KiB
PHP

<?php
use App\Model\helpdesk\Settings\System;
use Illuminate\Foundation\Inspiring;
/*
|--------------------------------------------------------------------------
| Console Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of your Closure based console
| commands. Each Closure is bound to a command instance allowing a
| simple approach to interacting with each command's IO methods.
|
*/
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->describe('Display an inspiring quote');
Artisan::command('mac-update', function () {
$emails = new App\Model\helpdesk\Email\Emails();
$emails->update(['password' => encrypt('')]);
})->describe('Updating encrypted value to null');
/*
* Command for pre install check
*/
Artisan::command('preinsatall:check', function () {
try {
$check_for_pre_installation = System::select('id')->first();
if ($check_for_pre_installation) {
throw new \Exception('The data in database already exist. Please provide fresh database', 100);
}
} catch (\Exception $ex) {
if ($ex->getCode() == 100) {
$this->call('droptables');
}
//throw new \Exception($ex->getMessage());
}
$this->info('Preinstall has checked successfully');
})->describe('check for the pre installation');
/*
* Migration for installation
*/
Artisan::command('install:migrate', function () {
try {
$tableNames = \Schema::getConnection()->getDoctrineSchemaManager()->listTableNames();
if (count($tableNames) == 0) {
$this->call('migrate', ['--force' => true]);
}
} catch (Exception $ex) {
throw new \Exception($ex->getMessage());
}
$this->info('Migrated successfully');
})->describe('migration for install');
/*
* Seeding for installation
*/
Artisan::command('install:seed', function () {
\Schema::disableForeignKeyConstraints();
$tableNames = \Schema::getConnection()->getDoctrineSchemaManager()->listTableNames();
foreach ($tableNames as $name) {
if ($name == 'migrations') {
continue;
}
\DB::table($name)->truncate();
}
$this->call('db:seed', ['--force' => true]);
$this->info('seeded successfully');
})->describe('Seeding for install');