One Hat Cyber Team
Your IP :
18.219.206.240
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
centos12
/
www
/
centosuit
/
app
/
Console
/
View File Name :
Kernel.php
<?php namespace App\Console; use App\Console\Commands\AddMissingRolePermission; use App\Console\Commands\AutoCreateRecurringExpenses; use App\Console\Commands\AutoCreateRecurringInvoices; use App\Console\Commands\CarryForwardLeaves; use App\Console\Commands\AutoCreateRecurringTasks; use App\Console\Commands\AutoStopTimer; use App\Console\Commands\BirthdayReminderCommand; use App\Console\Commands\ClearLogs; use App\Console\Commands\ClearNullSessions; use App\Console\Commands\CreateEmployeeLeaveQuotaHistory; use App\Console\Commands\CreateTranslations; use App\Console\Commands\DeleteSpamCompanies; use App\Console\Commands\FetchTicketEmails; use App\Console\Commands\HideCronJobMessage; use App\Console\Commands\LeavesQuotaRenew; use App\Console\Commands\RemoveSeenNotification; use App\Console\Commands\SendAttendanceReminder; use App\Console\Commands\SendAutoTaskReminder; use App\Console\Commands\SendEventReminder; use App\Console\Commands\SendAutoFollowUpReminder; use App\Console\Commands\SendDailyTimelogReport; use App\Console\Commands\SendProjectReminder; use App\Console\Commands\UpdateExchangeRates; use App\Console\Commands\SendInvoiceReminder; use App\Console\Commands\SendMonthlyAttendanceReport; use App\Console\Commands\SyncUserPermissions; use App\Console\Commands\SendTimeTracker; use App\Console\Commands\InActiveEmployee; use App\Console\Commands\AssignShiftRotation; use App\Console\Commands\AssignEmployeeShiftRotation; use App\Console\Commands\RecalculateLeavesQuotas; use App\Console\Commands\AutoClockOut; use DateTimeZone; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; use App\Console\Commands\SuperAdmin\FreeLicenceRenew; use App\Console\Commands\SuperAdmin\TrialExpire; class Kernel extends ConsoleKernel { /** * The Artisan commands provided by your application. * * @var array */ protected $commands = [ AutoClockOut::class, UpdateExchangeRates::class, AutoStopTimer::class, SendEventReminder::class, SendProjectReminder::class, HideCronJobMessage::class, SendAutoTaskReminder::class, CreateTranslations::class, AutoCreateRecurringInvoices::class, CarryForwardLeaves::class, AutoCreateRecurringExpenses::class, ClearNullSessions::class, SendInvoiceReminder::class, RemoveSeenNotification::class, SendAttendanceReminder::class, AutoCreateRecurringTasks::class, SyncUserPermissions::class, SendAutoFollowUpReminder::class, FetchTicketEmails::class, AddMissingRolePermission::class, BirthdayReminderCommand::class, SendTimeTracker::class, SendMonthlyAttendanceReport::class, SendDailyTimelogReport::class, LeavesQuotaRenew::class, ClearLogs::class, InActiveEmployee::class, ClearLogs::class, CreateEmployeeLeaveQuotaHistory::class, // SAAS FreeLicenceRenew::class, TrialExpire::class, DeleteSpamCompanies::class, AssignShiftRotation::class, AssignEmployeeShiftRotation::class, RecalculateLeavesQuotas::class, ]; /** * Get the timezone that should be used by default for scheduled events. */ protected function scheduleTimezone(): DateTimeZone|string|null { // Get the timezone from the configuration return config('app.cron_timezone'); } // Cache for schedule commands to be array. Such that it do not conflict with application cache protected function scheduleCache() { return 'array'; } /** * Define the application's command schedule. * * @param Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) { $schedule->command('recurring-task-create')->dailyAt('00:30'); $schedule->command('auto-stop-timer')->everyThirtyMinutes(); $schedule->command('birthday-notification')->dailyAt('09:00'); // Every Minute $schedule->command('send-event-reminder')->everyMinute(); $schedule->command('auto-clock-out')->everyMinute(); $schedule->command('hide-cron-message')->everyMinute(); $schedule->command('send-attendance-reminder')->everyMinute(); $schedule->command('sync-user-permissions')->everyMinute(); // $schedule->command('fetch-ticket-emails')->everyMinute(); // phpcs:ignore $schedule->command('send-auto-followup-reminder')->everyMinute(); $schedule->command('send-time-tracker')->everyMinute(); // Daily added different time to reduce server load $schedule->command('send-project-reminder')->dailyAt('01:10'); $schedule->command('send-auto-task-reminder')->dailyAt('01:20'); $schedule->command('recurring-invoice-create')->dailyAt('01:30'); $schedule->command('recurring-expenses-create')->dailyAt('01:40'); $schedule->command('send-invoice-reminder')->dailyAt('01:50'); $schedule->command('delete-seen-notification')->dailyAt('02:10'); $schedule->command('update-exchange-rate')->dailyAt('02:20'); $schedule->command('send-daily-timelog-report')->dailyAt('02:30'); // $schedule->command('app:leaves-quota-renew')->dailyAt('02:30'); $schedule->command('log:clean --keep-last')->dailyAt('02:40'); $schedule->command('inactive-employee')->dailyAt('02:50'); // $schedule->command('daily-schedule-reminder')->daily(); $schedule->command('assign-shift-rotation')->dailyAt('00:01'); // Hourly $schedule->command('clear-null-session')->hourly(); $schedule->command('create-database-backup')->hourly(); $schedule->command('delete-database-backup')->hourly(); $schedule->command('add-missing-permissions')->everyThirtyMinutes(); $schedule->command('send-monthly-attendance-report')->monthly(); $schedule->command('app:create-employee-leave-quota-history')->monthly(); // $schedule->command('carry-forward-leave')->monthly(); $schedule->command('app:annual-carry-forward-leaves')->monthly(); $schedule->command('app:recalculate-leaves-quotas')->monthly(); $schedule->command('queue:flush')->weekly(); // SAAS added one after the other in hours to reduce server load $schedule->command('free-licence-renew')->dailyAt('01:00'); $schedule->command('licence-expire')->dailyAt('02:00'); $schedule->command('trial-expire')->dailyAt('03:00'); // Schedule the queue:work command to run without overlapping and with 3 tries $schedule->command('queue:work database --tries=3 --stop-when-empty')->withoutOverlapping(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); } }