[0] | 1 | <?php |
---|
[3731] | 2 | /** |
---|
| 3 | * @package Dotclear |
---|
| 4 | * @subpackage Core |
---|
| 5 | * |
---|
| 6 | * @copyright Olivier Meunier & Association Dotclear |
---|
| 7 | * @copyright GPL-2.0-only |
---|
| 8 | */ |
---|
[0] | 9 | |
---|
| 10 | if (@is_dir('/usr/lib/clearbricks')) { |
---|
[3730] | 11 | define('CLEARBRICKS_PATH', '/usr/lib/clearbricks'); |
---|
| 12 | } elseif (is_dir(dirname(__FILE__) . '/libs/clearbricks')) { |
---|
| 13 | define('CLEARBRICKS_PATH', dirname(__FILE__) . '/libs/clearbricks'); |
---|
[0] | 14 | } elseif (isset($_SERVER['CLEARBRICKS_PATH']) && is_dir($_SERVER['CLEARBRICKS_PATH'])) { |
---|
[3730] | 15 | define('CLEARBRICKS_PATH', $_SERVER['CLEARBRICKS_PATH']); |
---|
[0] | 16 | } |
---|
| 17 | |
---|
| 18 | if (!defined('CLEARBRICKS_PATH') || !is_dir(CLEARBRICKS_PATH)) { |
---|
[3730] | 19 | exit('No clearbricks path defined'); |
---|
[0] | 20 | } |
---|
| 21 | |
---|
[3730] | 22 | require CLEARBRICKS_PATH . '/_common.php'; |
---|
[0] | 23 | |
---|
| 24 | if (isset($_SERVER['DC_RC_PATH'])) { |
---|
[3730] | 25 | define('DC_RC_PATH', $_SERVER['DC_RC_PATH']); |
---|
[0] | 26 | } elseif (isset($_SERVER['REDIRECT_DC_RC_PATH'])) { |
---|
[3730] | 27 | define('DC_RC_PATH', $_SERVER['REDIRECT_DC_RC_PATH']); |
---|
[0] | 28 | } else { |
---|
[3730] | 29 | define('DC_RC_PATH', dirname(__FILE__) . '/config.php'); |
---|
[0] | 30 | } |
---|
| 31 | |
---|
| 32 | if (!is_file(DC_RC_PATH)) { |
---|
[3730] | 33 | trigger_error('Unable to open config file', E_USER_ERROR); |
---|
| 34 | exit; |
---|
[0] | 35 | } |
---|
| 36 | |
---|
| 37 | require DC_RC_PATH; |
---|
| 38 | |
---|
| 39 | if (empty($_GET['pf'])) { |
---|
[3730] | 40 | header('Content-Type: text/plain'); |
---|
| 41 | http::head(404, 'Not Found'); |
---|
| 42 | exit; |
---|
[0] | 43 | } |
---|
| 44 | |
---|
[3020] | 45 | // $_GET['v'] : version in url to bypass cache in case of dotclear upgrade or in dev mode |
---|
[3022] | 46 | // but don't care of value |
---|
[3730] | 47 | if (isset($_GET['v'])) { |
---|
[3022] | 48 | unset($_GET['v']); |
---|
| 49 | } |
---|
| 50 | |
---|
| 51 | // Only $_GET['pf'] is allowed in URL |
---|
[3730] | 52 | if (count($_GET) > 1) { |
---|
[1116] | 53 | header('Content-Type: text/plain'); |
---|
[3730] | 54 | http::head(403, 'Forbidden'); |
---|
[1116] | 55 | exit; |
---|
[1115] | 56 | } |
---|
| 57 | |
---|
[3730] | 58 | $allow_types = array('png', 'jpg', 'jpeg', 'gif', 'css', 'js', 'swf', 'svg'); |
---|
[0] | 59 | |
---|
| 60 | $pf = path::clean($_GET['pf']); |
---|
| 61 | |
---|
[3730] | 62 | $paths = array_reverse(explode(PATH_SEPARATOR, DC_PLUGINS_ROOT)); |
---|
[0] | 63 | |
---|
[2804] | 64 | # Adding some folders here to load some stuff |
---|
[3730] | 65 | $paths[] = dirname(__FILE__) . '/swf'; |
---|
| 66 | $paths[] = dirname(__FILE__) . '/js'; |
---|
| 67 | $paths[] = dirname(__FILE__) . '/css'; |
---|
[2800] | 68 | |
---|
[3730] | 69 | foreach ($paths as $m) { |
---|
| 70 | $PF = path::real($m . '/' . $pf); |
---|
[2566] | 71 | |
---|
[3730] | 72 | if ($PF !== false) { |
---|
| 73 | break; |
---|
| 74 | } |
---|
[0] | 75 | } |
---|
| 76 | unset($paths); |
---|
| 77 | |
---|
| 78 | if ($PF === false || !is_file($PF) || !is_readable($PF)) { |
---|
[3730] | 79 | header('Content-Type: text/plain'); |
---|
| 80 | http::head(404, 'Not Found'); |
---|
| 81 | exit; |
---|
[0] | 82 | } |
---|
| 83 | |
---|
[3730] | 84 | if (!in_array(files::getExtension($PF), $allow_types)) { |
---|
| 85 | header('Content-Type: text/plain'); |
---|
| 86 | http::head(404, 'Not Found'); |
---|
| 87 | exit; |
---|
[0] | 88 | } |
---|
| 89 | |
---|
[3730] | 90 | http::$cache_max_age = 7 * 24 * 60 * 60; // One week cache for plugin's files served by ?pf=… is better than old 2 hours |
---|
| 91 | http::cache(array_merge(array($PF), get_included_files())); |
---|
[0] | 92 | |
---|
[3730] | 93 | header('Content-Type: ' . files::getMimeType($PF)); |
---|
[3143] | 94 | // Content-length is not mandatory and must be the exact size of content transfered AFTER possible compression (gzip, deflate, …) |
---|
| 95 | //header('Content-Length: '.filesize($PF)); |
---|
[0] | 96 | readfile($PF); |
---|
| 97 | exit; |
---|