mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
130 lines
4.3 KiB
PHP
130 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use App\Models\User;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\File;
|
|
use Illuminate\Support\Facades\Mail;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use ZipArchive;
|
|
|
|
class Kernel extends ConsoleKernel
|
|
{
|
|
/**
|
|
* The Artisan commands provided by your application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $commands = [
|
|
];
|
|
|
|
/**
|
|
* Define the application's command schedule.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
protected function schedule(Schedule $schedule)
|
|
{
|
|
//Commands Version 2: Laravel Vapor/AWS
|
|
$isEnabled = env('COMMANDS_V2_ENABLED', false);
|
|
if($isEnabled){
|
|
// $schedule->command('dummy-command')
|
|
// ->everyFiveMinutes()
|
|
// ->withoutOverlapping();
|
|
|
|
$schedule->command('housekeeping-s3-files-command')
|
|
->dailyAt('01:00')
|
|
->withoutOverlapping();
|
|
|
|
$schedule->command('password-reset-token-expriration-check-command')
|
|
->everySixHours()
|
|
->withoutOverlapping();
|
|
|
|
$schedule->command('new-user-registration-expire-check-command')
|
|
->everySixHours()
|
|
->withoutOverlapping();
|
|
|
|
if(env('APP_ENV') === 'production'){
|
|
$schedule->command('email-do-to-vt-command')
|
|
->dailyAt('10:00')
|
|
->withoutOverlapping();
|
|
|
|
$schedule->command('seasonal-segmant-company-remove-command')
|
|
->dailyAt('01:00')
|
|
->withoutOverlapping();
|
|
|
|
$schedule->command('delete-bulk-download-files-command')
|
|
->hourly()
|
|
->withoutOverlapping();
|
|
|
|
$schedule->command('booking-expired-command')
|
|
->dailyAt('02:00')
|
|
->withoutOverlapping();
|
|
|
|
// DISABLED BY DEFAULT
|
|
// $schedule->command('purchase-order-autofill-command')
|
|
// ->dailyAt('03:00')
|
|
// ->withoutOverlapping();
|
|
|
|
// Push company module to Lark
|
|
// $schedule->command('lark:push-company-module')
|
|
// ->hourly()
|
|
// ->withoutOverlapping();
|
|
// // Push booking module to Lark
|
|
// $schedule->command('lark:push-booking-module')
|
|
// ->hourly()
|
|
// ->withoutOverlapping();
|
|
}
|
|
}
|
|
//Commands Version 1: Before Laravel Vapor/AWS
|
|
else{
|
|
// $schedule->command('inspire')->hourly();
|
|
$schedule->command('mail:EmailDoToVTCommand')->dailyAt('10:00')->withoutOverlapping();
|
|
|
|
$schedule->command('seasonalSegmantCompany:remove')
|
|
->dailyAt('01:00')
|
|
->appendOutputTo(storage_path().'/logs/soft-delete-seasonal-segmant-company.log')
|
|
->withoutOverlapping();
|
|
|
|
$schedule->command('delete:bulk-download-files')
|
|
->hourly()
|
|
->appendOutputTo(storage_path().'/logs/delete-bulk-download-files.log')
|
|
->withoutOverlapping();
|
|
|
|
$schedule->command('booking:expired')
|
|
->dailyAt('02:00')
|
|
->appendOutputTo(storage_path().'/logs/expire-booking.log')
|
|
->withoutOverlapping();
|
|
|
|
// $schedule->command('purchaseOrder:autoFill')
|
|
// ->dailyAt('03:00')
|
|
// ->withoutOverlapping();
|
|
}
|
|
|
|
// // Push booking module to Lark
|
|
// $schedule->command('lark:push-booking-transactions-module')
|
|
// ->everyTenMinutes();
|
|
// $schedule->command('lark:push-booking-2025-transactions-module')
|
|
// ->everyTenMinutes();
|
|
$schedule->command('lark:push-booking-september-2025-transactions-module')
|
|
->everyTenMinutes();
|
|
}
|
|
|
|
/**
|
|
* Register the commands for the application.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function commands()
|
|
{
|
|
$this->load(__DIR__.'/Commands');
|
|
|
|
require base_path('routes/console.php');
|
|
}
|
|
}
|