-
Notifications
You must be signed in to change notification settings - Fork 1
/
util.php
executable file
·144 lines (125 loc) · 3.05 KB
/
util.php
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?php
function token_found($tokens_dir, $token)
{
$tdir = opendir($tokens_dir);
while(($d = readdir($tdir)))
{
if(!preg_match('/([0-9]{8})-([^.]+)/', $d, $m)) continue;
if($token != $m[2]) continue;
$token_found = true;
if(date('Ymd') > $m[1])
return 1; // found invalid
else
return 2; // found & valid
break;
}
return 0; // not found
}
function check_ref($docs_dir, $ref)
{
if(isset($ref) && $ref
&& strpos($ref, '/') === FALSE
&& strpos($ref, '.') === FALSE
&& is_dir($docs_dir.'/'.$ref))
{
return true;
}
return false;
}
function check_file($docs_dir, $ref, $file)
{
if(!check_ref($docs_dir, $ref)) return false;
if(isset($file) && $file
&& is_file($docs_dir.'/'.$ref.'/'.$file))
{
return true;
}
return false;
}
// prends les lettres/chiffres après le dernier point d'un nom de fichier
// et les mets en minuscule
// ex: truc.pdf -> pdf, machin.TXT -> txt
function get_type($file)
{
preg_match('/\.([a-zA-Z0-9]+)$/', $file, $m);
if($m[1])
return strtolower($m[1]);
else
return false;
}
function html_err($msg)
{
echo '
<!DOCTYPE html>
<html>
<head><title>Message</title></head>
<body>
<h1>'.$msg.'</h1>
</body>
</html>
';
exit(0);
}
function listing_build($dir)
{
$a = array();
$tmpd = opendir($dir);
while(($d = readdir($tmpd)))
{
if($d[0] == '.') continue;
if(is_file($dir.'/'.$d))
{
$a[$d] = $d;
}
elseif(is_dir($dir.'/'.$d))
{
$a[$d] = listing_build($dir.'/'.$d);
}
else
{
$a[$d] = 'invalid:'.$d;
}
}
return $a;
}
function listing_render_list($listing, $token, $ref, $config, $base='.', $filebase='')
{
echo '<ul class="listing">';
//ksort($listing); // tri par clé
uksort($listing, "strnatcmp"); // tri naturel par clé
foreach($listing as $k => $v)
{
$is_conduc = (stristr($k, 'conduc') !== FALSE);
echo '<li>';
// on peut aussi tester si $v est Array
if($k == $v)
{
echo $k;
if(!$is_conduc)
{
echo ' : ';
echo '<a href="'.$base.'/dl.php?'.
'token='.$token.
'&ref='.$ref.
'&file='.urlencode($filebase.$k).
'">téléchargement</a>';
echo ' ('.round(filesize($config['docs_dir'].'/'.$ref.'/'.$filebase.$k)/1024).'Ko)';
echo ' | ';
echo '<a href="'.$base.'/dl.php?'.
'token='.$token.
'&ref='.$ref.
'&file='.urlencode($filebase.$k).
'&inline'.
'">voir en ligne</a>';
}
}
else
{
echo $k;
listing_render_list($v, $token, $ref, $config, $base, $filebase.$k.'/', $config);
}
echo '</li>';
}
echo '</ul>';
}
?>