Subversion Repositories oidplus

Rev

Rev 1033 | Rev 1116 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1033 Rev 1050
1
<?php
1
<?php
2
 
2
 
3
/*
3
/*
4
 * OIDplus 2.0
4
 * OIDplus 2.0
5
 * Copyright 2019 - 2022 Daniel Marschall, ViaThinkSoft
5
 * Copyright 2019 - 2022 Daniel Marschall, ViaThinkSoft
6
 *
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with 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
9
 * You may obtain a copy of the License at
10
 *
10
 *
11
 *     http://www.apache.org/licenses/LICENSE-2.0
11
 *     http://www.apache.org/licenses/LICENSE-2.0
12
 *
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
17
 * limitations under the License.
18
 */
18
 */
19
 
19
 
-
 
20
use ViaThinkSoft\OIDplus\OIDplus;
-
 
21
use ViaThinkSoft\OIDplus\OIDplusDesignPlugin;
20
use MatthiasMullie\Minify;
22
use MatthiasMullie\Minify;
21
 
23
 
22
require_once __DIR__ . '/includes/oidplus.inc.php';
24
require_once __DIR__ . '/includes/oidplus.inc.php';
23
 
25
 
24
error_reporting(OIDplus::baseConfig()->getValue('DEBUG') ? E_ALL : 0);
26
error_reporting(OIDplus::baseConfig()->getValue('DEBUG') ? E_ALL : 0);
25
@ini_set('display_errors', OIDplus::baseConfig()->getValue('DEBUG') ? '1' : '0');
27
@ini_set('display_errors', OIDplus::baseConfig()->getValue('DEBUG') ? '1' : '0');
26
 
28
 
27
$out = '';
29
$out = '';
28
 
30
 
29
# ---
31
# ---
30
 
32
 
31
$do_minify = OIDplus::baseConfig()->getValue('MINIFY_CSS', true);
33
$do_minify = OIDplus::baseConfig()->getValue('MINIFY_CSS', true);
32
 
34
 
33
function process_file($filename) {
35
function process_file($filename) {
34
        global $do_minify;
36
        global $do_minify;
35
 
37
 
36
        $filename_min = preg_replace('/\.[^.]+$/', '.min.css', $filename);
38
        $filename_min = preg_replace('/\.[^.]+$/', '.min.css', $filename);
37
        $filename_full = $filename;
39
        $filename_full = $filename;
38
 
40
 
39
        if ($do_minify) {
41
        if ($do_minify) {
40
                if (file_exists($filename_min)) {
42
                if (file_exists($filename_min)) {
41
                        // There is a file which is already minified
43
                        // There is a file which is already minified
42
                        $filename = $filename_min;
44
                        $filename = $filename_min;
43
                        $cont = file_get_contents($filename);
45
                        $cont = file_get_contents($filename);
44
                } else if (file_exists($filename_full)) {
46
                } else if (file_exists($filename_full)) {
45
                        // Otherwise, we minify it ourself
47
                        // Otherwise, we minify it ourself
46
                        $filename = $filename_full;
48
                        $filename = $filename_full;
47
                        $minifier = new Minify\CSS($filename);
49
                        $minifier = new Minify\CSS($filename);
48
                        $cont = $minifier->minify();
50
                        $cont = $minifier->minify();
49
                } else {
51
                } else {
50
                        return;
52
                        return;
51
                }
53
                }
52
        } else {
54
        } else {
53
                if (file_exists($filename_full)) {
55
                if (file_exists($filename_full)) {
54
                        $filename = $filename_full;
56
                        $filename = $filename_full;
55
                        $cont = file_get_contents($filename);
57
                        $cont = file_get_contents($filename);
56
                } else if (file_exists($filename_min)) {
58
                } else if (file_exists($filename_min)) {
57
                        $filename = $filename_min;
59
                        $filename = $filename_min;
58
                        $cont = file_get_contents($filename);
60
                        $cont = file_get_contents($filename);
59
                } else {
61
                } else {
60
                        return;
62
                        return;
61
                }
63
                }
62
        }
64
        }
63
 
65
 
64
        $thisdir = __DIR__;
66
        $thisdir = __DIR__;
65
        $thisdir = str_replace('\\', '/', $thisdir); // change Windows Backslashes into Web-Slashes
67
        $thisdir = str_replace('\\', '/', $thisdir); // change Windows Backslashes into Web-Slashes
66
        $filename = str_replace('\\', '/', $filename); // change Windows Backslashes into Web-Slashes
68
        $filename = str_replace('\\', '/', $filename); // change Windows Backslashes into Web-Slashes
67
        $dir = dirname((strpos($filename, $thisdir.'/') === 0) ? substr($filename, strlen($thisdir.'/')) : $filename);
69
        $dir = dirname((strpos($filename, $thisdir.'/') === 0) ? substr($filename, strlen($thisdir.'/')) : $filename);
68
 
70
 
69
        $cont = preg_replace('@url\\(\s+@ism', 'url(', $cont);
71
        $cont = preg_replace('@url\\(\s+@ism', 'url(', $cont);
70
        $cont = str_ireplace('url("data:', 'url###("data:', $cont);
72
        $cont = str_ireplace('url("data:', 'url###("data:', $cont);
71
        $cont = str_ireplace('url("', 'url###("'.$dir.'/', $cont);
73
        $cont = str_ireplace('url("', 'url###("'.$dir.'/', $cont);
72
        $cont = str_ireplace("url('data:", "url###('data:", $cont);
74
        $cont = str_ireplace("url('data:", "url###('data:", $cont);
73
        $cont = str_ireplace("url('", "url###('".$dir.'/', $cont);
75
        $cont = str_ireplace("url('", "url###('".$dir.'/', $cont);
74
        $cont = str_ireplace("url(data:", "url###(data:", $cont);
76
        $cont = str_ireplace("url(data:", "url###(data:", $cont);
75
        $cont = str_ireplace("url(", "url###(".$dir.'/', $cont);
77
        $cont = str_ireplace("url(", "url###(".$dir.'/', $cont);
76
        $cont = str_ireplace("url###(", "url(", $cont);
78
        $cont = str_ireplace("url###(", "url(", $cont);
77
        return $cont."\n\n";
79
        return $cont."\n\n";
78
}
80
}
79
 
81
 
80
# ---
82
# ---
81
 
83
 
82
// Third-party products
84
// Third-party products
83
$out .= process_file(__DIR__ . '/vendor/vakata/jstree/dist/themes/default/style.css');
85
$out .= process_file(__DIR__ . '/vendor/vakata/jstree/dist/themes/default/style.css');
84
$out .= process_file(__DIR__ . '/vendor/components/jqueryui/themes/base/jquery-ui.css');
86
$out .= process_file(__DIR__ . '/vendor/components/jqueryui/themes/base/jquery-ui.css');
85
$out .= process_file(__DIR__ . '/vendor/twbs/bootstrap/dist/css/bootstrap.css');
87
$out .= process_file(__DIR__ . '/vendor/twbs/bootstrap/dist/css/bootstrap.css');
86
$out .= process_file(__DIR__ . '/vendor/gedmarc/layout/dist/layout-default.css');
88
$out .= process_file(__DIR__ . '/vendor/gedmarc/layout/dist/layout-default.css');
87
$out .= process_file(__DIR__ . '/includes/loading.css');
89
$out .= process_file(__DIR__ . '/includes/loading.css');
88
 
90
 
89
// Find out base CSS
91
// Find out base CSS
90
if (isset($_GET['theme'])) {
92
if (isset($_GET['theme'])) {
91
        $theme = $_GET['theme'];
93
        $theme = $_GET['theme'];
92
        if (strpos($theme,'/') !== false) $theme = 'default';
94
        if (strpos($theme,'/') !== false) $theme = 'default';
93
        if (strpos($theme,'\\') !== false) $theme = 'default';
95
        if (strpos($theme,'\\') !== false) $theme = 'default';
94
        if (strpos($theme,'..') !== false) $theme = 'default';
96
        if (strpos($theme,'..') !== false) $theme = 'default';
95
} else {
97
} else {
96
        $theme = 'default';
98
        $theme = 'default';
97
}
99
}
98
 
100
 
99
if (file_exists(__DIR__ . '/userdata/styles/oidplus_base.css')) {
101
if (file_exists(__DIR__ . '/userdata/styles/oidplus_base.css')) {
100
        // There is a user defined CSS (not recommended, use design plugins instead!)
102
        // There is a user defined CSS (not recommended, use design plugins instead!)
101
        $out .= process_file(__DIR__ . '/userdata/styles/oidplus_base.css');
103
        $out .= process_file(__DIR__ . '/userdata/styles/oidplus_base.css');
102
} else {
104
} else {
103
        // Use CSS of the design plugin
105
        // Use CSS of the design plugin
104
        OIDplus::registerAllPlugins('design', 'OIDplusDesignPlugin', array('OIDplus','registerDesignPlugin'));
106
        OIDplus::registerAllPlugins('design', OIDplusDesignPlugin::class, array(OIDplus::class,'registerDesignPlugin'));
105
        $plugins = OIDplus::getDesignPlugins();
107
        $plugins = OIDplus::getDesignPlugins();
106
        foreach ($plugins as $plugin) {
108
        foreach ($plugins as $plugin) {
107
                if ((basename($plugin->getPluginDirectory())) == $theme) {
109
                if ((basename($plugin->getPluginDirectory())) == $theme) {
108
                        $manifest = $plugin->getManifest();
110
                        $manifest = $plugin->getManifest();
109
                        foreach ($manifest->getCSSFiles() as $css_file) {
111
                        foreach ($manifest->getCSSFiles() as $css_file) {
110
                                $out .= process_file($css_file);
112
                                $out .= process_file($css_file);
111
                        }
113
                        }
112
                }
114
                }
113
        }
115
        }
114
}
116
}
115
 
117
 
116
// Then plugins
118
// Then plugins
117
$manifests = OIDplus::getAllPluginManifests(implode(',',OIDplus::INTERACTIVE_PLUGIN_TYPES), true); // due to interface gridGeneratorLinks (1.3.6.1.4.1.37476.2.5.2.3.6) this plugin type can also have CSS
119
$manifests = OIDplus::getAllPluginManifests(implode(',',OIDplus::INTERACTIVE_PLUGIN_TYPES), true); // due to interface gridGeneratorLinks (1.3.6.1.4.1.37476.2.5.2.3.6) this plugin type can also have CSS
118
foreach ($manifests as $manifest) {
120
foreach ($manifests as $manifest) {
119
        foreach ($manifest->getCSSFiles() as $css_file) {
121
        foreach ($manifest->getCSSFiles() as $css_file) {
120
                $out .= process_file($css_file);
122
                $out .= process_file($css_file);
121
        }
123
        }
122
}
124
}
123
 
125
 
124
// Now user-defined (additional) definitions
126
// Now user-defined (additional) definitions
125
if (file_exists(__DIR__ . '/userdata/styles/oidplus_add.css')) {
127
if (file_exists(__DIR__ . '/userdata/styles/oidplus_add.css')) {
126
        $out .= process_file(__DIR__ . '/userdata/styles/oidplus_add.css');
128
        $out .= process_file(__DIR__ . '/userdata/styles/oidplus_add.css');
127
}
129
}
128
 
130
 
129
# ---
131
# ---
130
 
132
 
131
$inv = isset($_GET['invert']) ? $_GET['invert'] : 0;
133
$inv = isset($_GET['invert']) ? $_GET['invert'] : 0;
132
if ($inv != 0) {
134
if ($inv != 0) {
133
        $out = invertColorsOfCSS($out);
135
        $out = invertColorsOfCSS($out);
134
}
136
}
135
 
137
 
136
$hs = isset($_GET['h_shift']) ? $_GET['h_shift'] : 0;
138
$hs = isset($_GET['h_shift']) ? $_GET['h_shift'] : 0;
137
$ss = isset($_GET['s_shift']) ? $_GET['s_shift'] : 0;
139
$ss = isset($_GET['s_shift']) ? $_GET['s_shift'] : 0;
138
$vs = isset($_GET['v_shift']) ? $_GET['v_shift'] : 0;
140
$vs = isset($_GET['v_shift']) ? $_GET['v_shift'] : 0;
139
if (($hs != 0) ||($ss != 0) || ($vs != 0)) {
141
if (($hs != 0) ||($ss != 0) || ($vs != 0)) {
140
        $out = changeHueOfCSS($out, $hs, $ss, $vs);
142
        $out = changeHueOfCSS($out, $hs, $ss, $vs);
141
}
143
}
142
 
144
 
143
# ---
145
# ---
144
 
146
 
145
if (OIDplus::baseConfig()->getValue('DEBUG')) {
147
if (OIDplus::baseConfig()->getValue('DEBUG')) {
146
        // In debug mode, we might get PHP error messages (see "error_reporting" above),
148
        // In debug mode, we might get PHP error messages (see "error_reporting" above),
147
        // so it would be severe if we would allow ETAG! (since $out does not contain the PHP error messages!)
149
        // so it would be severe if we would allow ETAG! (since $out does not contain the PHP error messages!)
148
        header('Content-Type:text/css');
150
        header('Content-Type:text/css');
149
        echo $out;
151
        echo $out;
150
} else {
152
} else {
151
        httpOutWithETag($out, 'text/css', 'oidplus.css');
153
        httpOutWithETag($out, 'text/css', 'oidplus.css');
152
}
154
}
153
 
155