-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprox.php
executable file
·77 lines (44 loc) · 1.25 KB
/
prox.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
<?php
/** L'interfaccia per serverotto sarebbe che riceve le richieste e vede se vanno eseguite per davvero!
*
*/
require_once 'class/eventlog.php';
$log = new eventlog();
if (isset($_GET['file_id'])) {
$file_id = $_GET['file_id'];
} else {
//Errata come richiesta
//TODO logga anche questo, ma reporta l'errore
//TODO stampa a schermo l'errore per l'utente ecc
header("Status: 400 Bad Request");
exit();
}
$file_id = (int)$file_id;
if (!is_int($file_id) || $file_id > 10000000000 ) {
//var_dump($record_id);
//var_dump($user_id);
//TODO logga un errore da parte di questo IP, con una richiesta malevola...
//A lui non dire nulla
echo "die";
die();
}
require_once 'class/stream.php';
$srv=new stream();
$srv->file_id($file_id);
$srv->memcache_init();
$srv->mmc_get_file_info();
//Verifica se ho spazio su disco
$size=$srv->file_info[3];
//Con un certo margine ecc...
//Se lo ho alloca un file sparse e usa quello per scriverci dentro...
/*
$memcache->set('key', $tmp_object, false, 10) or die ("Failed to save data at the server");
for ($i=0; $i<100000; $i++){
$memcache->set($i, $tmp_object);
}
echo "Store data in the cache (data will expire in 10 seconds)<br/>\n";
*/
/*
$get_result = $memcache->get($num);
var_dump($get_result);
*/