mirror of
https://github.com/mrclay/minify.git
synced 2025-02-24 17:02:31 +01:00
min/index.php : rewritten to use MinApp.php Controller/Base.php : simplified _fileIsSafe() min/config.php : + flock and maxFiles options
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Front controller for default Minify implementation
|
|
*
|
|
* DO NOT EDIT! Configure this utility via config.php and groupsConfig.php
|
|
*
|
|
* @package Minify
|
|
*/
|
|
|
|
define('MINIFY_MIN_DIR', dirname(__FILE__));
|
|
|
|
// load config
|
|
require MINIFY_MIN_DIR . '/config.php';
|
|
|
|
// setup include path
|
|
set_include_path($min_libPath . PATH_SEPARATOR . get_include_path());
|
|
|
|
require 'Minify.php';
|
|
|
|
Minify::$uploaderHoursBehind = $min_uploaderHoursBehind;
|
|
Minify::setCache(
|
|
isset($min_cachePath) ? $min_cachePath : null
|
|
,$min_cacheFileLocking
|
|
);
|
|
|
|
if (0 === stripos(PHP_OS, 'win')) {
|
|
Minify::setDocRoot(); // we may be on IIS
|
|
}
|
|
if ($min_allowDebugFlag && isset($_GET['debug'])) {
|
|
$min_serveOptions['debug'] = true;
|
|
}
|
|
if (isset($_GET['g'])) {
|
|
// well need groups config
|
|
$min_serveOptions['minApp']['groups'] = (require MINIFY_MIN_DIR . '/groupsConfig.php');
|
|
// check for URI versioning
|
|
if (preg_match('/&\\d/', $_SERVER['QUERY_STRING'])) {
|
|
$min_serveOptions['maxAge'] = 31536000;
|
|
}
|
|
}
|
|
|
|
if (isset($_GET['f']) || isset($_GET['g'])) {
|
|
// serve!
|
|
Minify::serve('MinApp', $min_serveOptions);
|
|
|
|
} elseif ($min_enableBuilder) {
|
|
header('Location: builder/');
|
|
exit();
|
|
} else {
|
|
header("Location: /");
|
|
exit();
|
|
}
|