mirror of
https://github.com/YunoHost-Apps/lutim_ynh.git
synced 2024-09-03 19:36:24 +02:00
67 lines
2.3 KiB
Perl
67 lines
2.3 KiB
Perl
package Lutim::Command::cron::watch;
|
|
use Mojo::Base 'Mojolicious::Command';
|
|
use Mojo::Util qw(slurp decode);
|
|
use Filesys::DiskUsage qw/du/;
|
|
use LutimModel;
|
|
use Switch;
|
|
|
|
has description => 'Watch the files directory and take action when over quota';
|
|
has usage => sub { shift->extract_usage };
|
|
|
|
sub run {
|
|
my $c = shift;
|
|
|
|
my $config = $c->app->plugin('ConfigHashMerge', {
|
|
default => {
|
|
policy_when_full => 'warn'
|
|
}
|
|
});
|
|
|
|
if (defined($config->{max_total_size})) {
|
|
my $total = du(qw/files/);
|
|
|
|
if ($total > $config->{max_total_size}) {
|
|
say "[Lutim cron job watch] Files directory is over quota ($total > ".$config->{max_total_size}.")";
|
|
switch ($config->{policy_when_full}) {
|
|
case 'warn' {
|
|
say "[Lutim cron job watch] Please, delete some files or increase quota (".$config->{max_total_size}.")";
|
|
}
|
|
case 'stop-upload' {
|
|
open (my $fh, '>', 'stop-upload') or die ("Couldn't open stop-upload: $!");
|
|
close($fh);
|
|
say '[Lutim cron job watch] Uploads are stopped. Delete some images and the stop-upload file to reallow uploads.';
|
|
}
|
|
case 'delete' {
|
|
say '[Lutim cron job watch] Older files are being deleted';
|
|
do {
|
|
for my $img (LutimModel::Lutim->select('WHERE path IS NOT NULL AND enabled = 1 ORDER BY created_at ASC LIMIT 50')) {
|
|
unlink $img->path() or warn "Could not unlink ".$img->path.": $!";
|
|
$img->update(enabled => 0);
|
|
}
|
|
} while (du(qw/files/) > $config->{max_total_size});
|
|
}
|
|
else {
|
|
say '[Lutim cron job watch] Unrecognized policy_when_full option: '.$config->{policy_when_full}.'. Aborting.';
|
|
}
|
|
}
|
|
} else {
|
|
unlink 'stop-upload' if (-f 'stop-upload');
|
|
}
|
|
} else {
|
|
say "[Lutim cron job watch] No max_total_size found in the configuration file. Aborting.";
|
|
}
|
|
}
|
|
|
|
=encoding utf8
|
|
|
|
=head1 NAME
|
|
|
|
Lutim::Command::cron::watch - Watch the files directory and take action when over quota
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
Usage: script/lutim cron watch
|
|
|
|
=cut
|
|
|
|
1;
|