Subversion Repositories oidplus

Rev

Rev 429 | Rev 462 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
364 daniel-mar 1
<?php
2
 
3
/*
4
 * OIDplus 2.0
5
 * Copyright 2019 Daniel Marschall, ViaThinkSoft
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
10
 *
11
 *     http://www.apache.org/licenses/LICENSE-2.0
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
18
 */
19
 
20
use MatthiasMullie\Minify;
21
 
22
require_once __DIR__ . '/../includes/oidplus.inc.php';
23
require_once __DIR__ . '/../3p/minify/path-converter/ConverterInterface.php';
24
require_once __DIR__ . '/../3p/minify/path-converter/Converter.php';
25
require_once __DIR__ . '/../3p/minify/src/Minify.php';
26
require_once __DIR__ . '/../3p/minify/src/CSS.php';
27
require_once __DIR__ . '/../3p/minify/src/Exception.php';
28
 
29
error_reporting(E_ALL);
30
 
31
$out = '';
32
 
33
# ---
34
 
429 daniel-mar 35
$do_minify = OIDplus::baseConfig()->getValue('MINIFY_CSS', true);
36
 
364 daniel-mar 37
function process_file($filename) {
429 daniel-mar 38
        global $do_minify;
39
 
40
        if (!file_exists($filename)) return;
41
 
364 daniel-mar 42
        $dir = dirname((strpos($filename, __DIR__.'/') === 0) ? substr($filename, strlen(__DIR__.'/')) : $filename);
429 daniel-mar 43
        if ($do_minify) {
364 daniel-mar 44
                $minifier = new Minify\CSS($filename);
45
                $cont = $minifier->minify();
46
                $cont = str_ireplace("url(data:", "url###(data:", $cont);
47
                $cont = str_ireplace("url(", "url(".$dir.'/', $cont);
48
        } else {
49
                $cont = file_get_contents($filename);
50
                $cont = str_ireplace('url("data:', 'url###("data:', $cont);
51
                $cont = str_ireplace('url("', 'url("'.$dir.'/', $cont);
52
                $cont = str_ireplace("url('data:", "url###('data:", $cont);
53
                $cont = str_ireplace("url('", "url('".$dir.'/', $cont);
54
        }
55
        $cont = str_ireplace("url###(", "url(", $cont);
56
        return $cont."\n\n";
57
}
58
 
59
# ---
60
 
411 daniel-mar 61
// Third-party products
62
// (None)
380 daniel-mar 63
 
411 daniel-mar 64
// OIDplus basic definitions
364 daniel-mar 65
if (file_exists(__DIR__ . '/../userdata/styles/setup_base.css')) {
66
        $out .= process_file(__DIR__ . '/../userdata/styles/setup_base.css');
67
} else {
456 daniel-mar 68
        $out .= process_file(__DIR__ . '/includes/setup_base.css');
364 daniel-mar 69
}
70
 
411 daniel-mar 71
// Then plugins
72
OIDplus::registerAllPlugins('database', 'OIDplusDatabasePlugin', array('OIDplus','registerDatabasePlugin'));
73
$manifests = OIDplus::getAllPluginManifests('database', true);
74
foreach ($manifests as $manifest) {
75
        foreach ($manifest->getCSSFilesSetup() as $css_file) {
76
                $out .= process_file($css_file);
77
        }
78
}
79
 
80
// Now user-defined definitions
366 daniel-mar 81
if (file_exists(__DIR__ . '/userdata/styles/setup_add.css')) {
82
        $out .= process_file(__DIR__ . '/userdata/styles/setup_add.css');
83
}
84
 
364 daniel-mar 85
# ---
86
 
379 daniel-mar 87
httpOutWithETag($out, 'text/css', 'oidplus_setup.css');