Skip to content

Commit

Permalink
added command to clear temp files
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed May 18, 2021
1 parent bdb51a2 commit 37d0e7d
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 5 deletions.
42 changes: 42 additions & 0 deletions app/Console/Commands/StorageTempClear.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;

class StorageTempClear extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'storage-temp:clear';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Clear all storage/app/temp files';

/**
* Execute the console command.
*
* @return void
*
*/
public function handle()
{
$filesystem = app(Filesystem::class);

$path = storage_path('app/temp');

foreach ($filesystem->glob("{$path}/*") as $file) {
$filesystem->delete($file);
}

$this->info('Temporary files cleared!');
}
}
11 changes: 11 additions & 0 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ protected function schedule(Schedule $schedule)
$schedule->command('reminder:invoice')->dailyAt($schedule_time);
$schedule->command('reminder:bill')->dailyAt($schedule_time);
$schedule->command('recurring:check')->dailyAt($schedule_time);
$schedule->command('storage-temp:clear')->dailyAt('17:00');
}

/**
Expand All @@ -45,4 +46,14 @@ protected function commands()

$this->load(__DIR__ . '/Commands');
}

/**
* Get the timezone that should be used by default for scheduled events.
*
* @return \DateTimeZone|string|null
*/
protected function scheduleTimezone()
{
return config('app.timezone');
}
}
10 changes: 5 additions & 5 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

'name' => env('APP_NAME', 'Akaunting'),

'installed' => env('APP_INSTALLED', false),
'installed' => (bool) env('APP_INSTALLED', false),

'schedule_time' => env('APP_SCHEDULE_TIME', '9:00'),
'schedule_time' => env('APP_SCHEDULE_TIME', '09:00'),

/*
|--------------------------------------------------------------------------
Expand Down Expand Up @@ -70,7 +70,7 @@
|
*/

'timezone' => 'UTC',
'timezone' => env('APP_TIMEZONE', 'UTC'),

/*
|--------------------------------------------------------------------------
Expand All @@ -96,7 +96,7 @@
|
*/

'fallback_locale' => 'en-GB',
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en-GB'),

/*
|--------------------------------------------------------------------------
Expand All @@ -108,7 +108,7 @@
| localized telephone numbers, street address information and more.
|
*/
'faker_locale' => 'en_GB',
'faker_locale' => env('APP_FAKER_LOCALE', 'en_GB'),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 37d0e7d

Please sign in to comment.