1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
package Iurt::File;
use base qw(Exporter);
use Iurt::Util qw(plog);
use strict;
our @EXPORT = qw(
check_upload_tree
);
=head2 config_usage($config_usage, $config)
Create an instance of a class at runtime.
I<$config_usage> is the configuration help,
I<%config> is the current configuration values
Return true.
=cut
sub check_upload_tree {
my ($_run, $todo, $func, $post) = @_;
# Squash double slashes for cosmetics
$todo =~ s!/+!/!g;
opendir my $dir, $todo;
plog('INFO', "check dir: $todo");
foreach my $f (readdir $dir) {
$f =~ /^\.{1,2}$/ and next;
if (-d "$todo/$f") {
plog('DEBUG', "checking target $todo/$f");
opendir my $target_dir, "$todo/$f";
foreach my $m (readdir $target_dir) {
$m =~ /^\.{1,2}$/ and next;
if (-d "$todo/$f/$m") {
plog('DEBUG', "checking media $todo/$f/$m");
opendir my $media_dir, "$todo/$f/$m";
foreach my $s (readdir $media_dir) {
$s =~ /^\.{1,2}$/ and next;
if (-d "$todo/$f/$m/$s") {
if ($func) {
opendir my $submedia_dir, "$todo/$f/$m/$s";
foreach my $r (readdir $submedia_dir) {
$r =~ /^\.{1,2}$/ and next;
$func->($todo, $f, $m, $s, $r);
}
}
# cleaning
if ($post) {
opendir my $submedia_dir, "$todo/$f/$m/$s";
foreach my $r (readdir $submedia_dir) {
$r =~ /^\.{1,2}$/ and next;
$post->($todo, $f, $m, $s, $r);
}
}
} else {
# may need to check also here for old target
}
}
}
}
}
}
}
|