summaryrefslogtreecommitdiff
path: root/trunk/reprap/web/part-lister/framework/file.php
blob: 3dedac3acc187eef06afa9013bad559cb1d7d154 (plain)
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
<?
	class File
	{
	    var $tempFolder;
	    var $tempFiles = array();

	    function __destruct () {
	        foreach ($this->tempFiles as $file) {
	            unlink($file['temp']);
	        }
	    }
    
	    function __construct ($temp)
	    {
	        $this->tempFolder = $temp;
	    }
    
		function open($url) {
			return fopen($this->get($url), 'r');
		}

	    function get ($url) {
	        array_unshift($this->tempFiles, array(
	            'extension'=> array_pop(explode('.', $url)),
	            'original'=> basename($url),
	            'temp'=> $this->tempFolder . md5(microtime()),
	        ));
	        $ch = curl_init($url);
	        $fp = fopen($this->tempFiles[0]['temp'], 'w');
	        curl_setopt($ch, CURLOPT_FILE, $fp);
	        curl_setopt($ch, CURLOPT_HEADER, 0);
	        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
	        curl_exec($ch);
	        curl_close($ch);
	        fclose($fp);
	        return $this->tempFiles[0]['temp'];
	    }
    
	    function read ($index = 0) {
	        return file_get_contents($this->tempFiles[$index]['temp']);
	    }
    
	    function readArray ($index = 0)
	    {
	        return file($this->tempFiles[$index]['temp']);
	    }
    
	    function listFiles () {
	        return $this->tempFiles;
	    }
    
	    function save ($path, $index = 0) {
	        copy($this->tempFiles[$index]['temp'], (is_dir($path) ? $path . $this->tempFiles[$index]['original'] : $path));
	    }
	}
?>