blob: c417f354bed545b7cd62a687555dd8ba4d34504d (
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
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
|
<?php
/**
* DokuWiki media passthrough file
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Andreas Gohr <andi@splitbrain.org>
*/
if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__)).'/');
require_once(DOKU_INC.'inc/init.php');
require_once(DOKU_INC.'inc/common.php');
require_once(DOKU_INC.'inc/auth.php');
//get input
$MEDIA = $_REQUEST['media'];
$CACHE = calc_cache($_REQUEST['cache']);
$WIDTH = $_REQUEST['w'];
$HEIGHT = $_REQUEST['h'];
$EXT = media_extension($MEDIA);
//media to local file
if(preg_match('#^(https?|ftp)://#i',$MEDIA)){
//handle external media
$FILE = get_from_URL($MEDIA,$EXT,$CACHE);
if(!$FILE){
//download failed - redirect to original URL
header('Location: '.$MEDIA);
exit;
}
}else{
$MEDIA = cleanID($MEDIA);
if(empty($MEDIA)){
header("HTTP/1.0 400 Bad Request");
print 'Bad request';
exit;
}
//check permissions (namespace only)
if(auth_quickaclcheck(getNS($MEDIA).':X') < AUTH_READ){
header("HTTP/1.0 401 Unauthorized");
//fixme add some image for imagefiles else display login message
exit;
}
$FILE = mediaFN($MEDIA);
}
//check file existance
if(!@file_exists($FILE)){
header("HTTP/1.0 404 Not Found");
//FIXME add some default broken image or display message
exit;
}
//FIXME handle image resizing
//FIXME add correct mimetype
//FIXME send Size header
//FIXME send Lastmod Handler
//FIXME cache headers??
//FIXME handle conditional and partial requests
//send file
passthru($FILE) ;
/* ----------- */
/**
* Returns the wanted cachetime in seconds
*
* Resolves named constants
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
function calc_cache($cache){
global $conf;
if(strtolower($cache) == 'nocache') return 0; //never cache
if(strtolower($cache) == 'recache') return $conf['cachetime']; //use standard cache
return -1; //cache endless
}
/**
* Download a remote file and return local filename
*
* returns false if download fails. Uses cached file if available and
* wanted
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
function get_from_URL($url,$ext,$cache){
global $conf;
$url = strtolower($url);
$md5 = md5($url);
$local = $conf['mediadir']."/_cache/$md5.$ext";
$mtime = @filemtime($local); // 0 if not exists
//decide if download needed:
// never cache exists but no endless cache not exists or expired
if( $cache == 0 || ($mtime != 0 && $cache != -1) || $mtime < time()-$cache ){
if(download($url,$local)){
return $local;
}else{
return false;
}
}
//if cache exists use it else
if($mtime) return $local;
//else return false
return false;
}
//Setup VIM: ex: et ts=2 enc=utf-8 :
?>
|