2016-03-28 14:29:05 +00:00
|
|
|
<?php
|
2018-01-15 02:22:39 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-01-15 02:22:39 +00:00
|
|
|
*/
|
2019-02-18 13:21:13 +00:00
|
|
|
|
2020-01-18 14:59:01 +00:00
|
|
|
use Friendica\DI;
|
2019-04-01 01:50:00 +00:00
|
|
|
use Friendica\Util\Strings;
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2020-08-20 02:54:12 +00:00
|
|
|
require_once 'view/theme/frio/theme.php';
|
2018-01-15 02:22:39 +00:00
|
|
|
require_once 'view/theme/frio/php/PHPColors/Color.php';
|
|
|
|
|
2019-04-01 01:50:00 +00:00
|
|
|
$scheme = '';
|
2018-04-25 00:12:43 +00:00
|
|
|
$schemecss = '';
|
2017-10-23 13:16:23 +00:00
|
|
|
$schemecssfile = false;
|
|
|
|
$scheme_modified = 0;
|
|
|
|
|
2020-01-19 20:20:10 +00:00
|
|
|
DI::config()->load('frio');
|
2019-07-14 20:28:10 +00:00
|
|
|
|
|
|
|
// Default to hard-coded values for empty settings
|
2020-01-19 20:21:13 +00:00
|
|
|
$scheme = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema'));
|
2020-08-20 02:58:00 +00:00
|
|
|
$scheme_accent = DI::config()->get('frio', 'scheme_accent') ?: FRIO_SCHEME_ACCENT_BLUE;
|
2020-01-19 20:21:13 +00:00
|
|
|
$nav_bg = DI::config()->get('frio', 'nav_bg') ?: '#708fa0';
|
|
|
|
$nav_icon_color = DI::config()->get('frio', 'nav_icon_color') ?: '#ffffff';
|
|
|
|
$link_color = DI::config()->get('frio', 'link_color') ?: '#6fdbe8';
|
|
|
|
$background_color = DI::config()->get('frio', 'background_color') ?: '#ededed';
|
2020-08-15 23:36:24 +00:00
|
|
|
$contentbg_transp = DI::config()->get('frio', 'contentbg_transp') ?? 100;
|
2020-01-19 20:21:13 +00:00
|
|
|
$background_image = DI::config()->get('frio', 'background_image') ?: 'img/none.png';
|
|
|
|
$bg_image_option = DI::config()->get('frio', 'bg_image_option') ?: '';
|
|
|
|
$login_bg_image = DI::config()->get('frio', 'login_bg_image') ?: '';
|
|
|
|
$login_bg_color = DI::config()->get('frio', 'login_bg_color') ?: '';
|
|
|
|
$modified = DI::config()->get('frio', 'css_modified') ?: time();
|
2019-07-14 20:28:10 +00:00
|
|
|
|
|
|
|
if (!$login_bg_image && !$login_bg_color) {
|
|
|
|
$login_bg_image = 'img/login_bg.jpg';
|
|
|
|
}
|
|
|
|
$login_bg_color = $login_bg_color ?: '#ededed';
|
|
|
|
|
|
|
|
// Get the UID of the profile owner.
|
|
|
|
$uid = $_REQUEST['puid'] ?? 0;
|
|
|
|
if ($uid) {
|
2020-01-18 14:59:01 +00:00
|
|
|
DI::pConfig()->load($uid, 'frio');
|
2019-07-14 20:28:10 +00:00
|
|
|
|
|
|
|
// Only override display settings that have actually been set
|
2020-01-18 15:50:57 +00:00
|
|
|
$scheme = DI::pConfig()->get($uid, 'frio', 'scheme', DI::pConfig()->get($uid, 'frio', 'schema')) ?: $scheme;
|
2020-08-20 02:58:00 +00:00
|
|
|
$scheme_accent = DI::pConfig()->get($uid, 'frio', 'scheme_accent') ?: $scheme_accent;
|
2020-01-18 15:50:57 +00:00
|
|
|
$nav_bg = DI::pConfig()->get($uid, 'frio', 'nav_bg') ?: $nav_bg;
|
|
|
|
$nav_icon_color = DI::pConfig()->get($uid, 'frio', 'nav_icon_color') ?: $nav_icon_color;
|
|
|
|
$link_color = DI::pConfig()->get($uid, 'frio', 'link_color') ?: $link_color;
|
|
|
|
$background_color = DI::pConfig()->get($uid, 'frio', 'background_color') ?: $background_color;
|
2020-08-15 23:36:24 +00:00
|
|
|
$contentbg_transp = DI::pConfig()->get($uid, 'frio', 'contentbg_transp') ?? $contentbg_transp;
|
2020-01-18 15:50:57 +00:00
|
|
|
$background_image = DI::pConfig()->get($uid, 'frio', 'background_image') ?: $background_image;
|
|
|
|
$bg_image_option = DI::pConfig()->get($uid, 'frio', 'bg_image_option') ?: $bg_image_option;
|
|
|
|
$modified = DI::pConfig()->get($uid, 'frio', 'css_modified') ?: $modified;
|
2016-03-28 14:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now load the scheme. If a value is changed above, we'll keep the settings
|
2018-04-25 00:26:14 +00:00
|
|
|
// If not, we'll keep those defined by the scheme
|
|
|
|
// Setting $scheme to '' wasn't working for some reason, so we'll check it's
|
2016-03-28 14:29:05 +00:00
|
|
|
// not --- like the mobile theme does instead.
|
2018-04-25 00:26:14 +00:00
|
|
|
// Allow layouts to over-ride the scheme.
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_REQUEST['scheme'])) {
|
2018-04-25 00:26:14 +00:00
|
|
|
$scheme = $_REQUEST['scheme'];
|
2016-03-28 14:29:05 +00:00
|
|
|
}
|
2017-10-23 20:14:35 +00:00
|
|
|
|
2019-04-01 01:50:00 +00:00
|
|
|
$scheme = Strings::sanitizeFilePathItem($scheme);
|
2017-10-23 20:14:35 +00:00
|
|
|
|
2018-04-25 00:26:14 +00:00
|
|
|
if (($scheme) && ($scheme != '---')) {
|
|
|
|
if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) {
|
|
|
|
$schemefile = 'view/theme/frio/scheme/' . $scheme . '.php';
|
2017-10-23 13:16:23 +00:00
|
|
|
require_once $schemefile;
|
2016-03-28 14:29:05 +00:00
|
|
|
}
|
2018-04-25 00:26:14 +00:00
|
|
|
if (file_exists('view/theme/frio/scheme/' . $scheme . '.css')) {
|
|
|
|
$schemecssfile = 'view/theme/frio/scheme/' . $scheme . '.css';
|
2016-03-28 14:29:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-25 00:26:14 +00:00
|
|
|
// If we haven't got a scheme, load the default. We shouldn't touch this - we
|
2016-03-28 14:29:05 +00:00
|
|
|
// should leave it for admins to define for themselves.
|
2018-04-25 00:26:14 +00:00
|
|
|
// default.php and default.css MUST be symlinks to existing scheme files.
|
|
|
|
if (!$scheme) {
|
|
|
|
if (file_exists('view/theme/frio/scheme/default.php')) {
|
|
|
|
$schemefile = 'view/theme/frio/scheme/default.php';
|
2017-10-23 13:16:23 +00:00
|
|
|
require_once $schemefile;
|
2016-03-28 14:29:05 +00:00
|
|
|
}
|
2018-04-25 00:26:14 +00:00
|
|
|
if (file_exists('view/theme/frio/scheme/default.css')) {
|
|
|
|
$schemecssfile = 'view/theme/frio/scheme/default.css';
|
2016-03-28 14:29:05 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-14 08:34:42 +00:00
|
|
|
|
2018-04-25 00:12:43 +00:00
|
|
|
$contentbg_transp = ((isset($contentbg_transp) && $contentbg_transp != '') ? $contentbg_transp : 100);
|
2017-10-23 13:16:23 +00:00
|
|
|
|
|
|
|
// Calculate some colors in dependance of existing colors.
|
2016-03-28 14:29:05 +00:00
|
|
|
// Some colors are calculated to don't have too many selection
|
2017-10-23 13:16:23 +00:00
|
|
|
// fields in the theme settings.
|
2018-01-01 20:05:09 +00:00
|
|
|
if (!isset($menu_background_hover_color)) {
|
2016-03-28 14:29:05 +00:00
|
|
|
$mbhc = new Color($nav_bg);
|
|
|
|
$mcolor = $mbhc->getHex();
|
|
|
|
|
2017-10-23 13:16:23 +00:00
|
|
|
if ($mbhc->isLight($mcolor, 75)) {
|
2016-03-28 14:29:05 +00:00
|
|
|
$menu_is = 'light';
|
|
|
|
$menu_background_hover_color = '#' . $mbhc->darken(5);
|
|
|
|
} else {
|
|
|
|
$menu_is = 'dark';
|
|
|
|
$menu_background_hover_color = '#' . $mbhc->lighten(5);
|
|
|
|
}
|
|
|
|
}
|
2018-01-01 20:05:09 +00:00
|
|
|
if (!isset($nav_icon_hover_color)) {
|
2016-03-28 14:29:05 +00:00
|
|
|
$nihc = new Color($nav_bg);
|
|
|
|
|
2017-10-23 13:16:23 +00:00
|
|
|
if ($nihc->isLight()) {
|
2016-03-28 14:29:05 +00:00
|
|
|
$nav_icon_hover_color = '#' . $nihc->darken(10);
|
2017-10-23 13:16:23 +00:00
|
|
|
} else {
|
2020-08-16 00:25:33 +00:00
|
|
|
$nav_icon_hover_color = '#' . $nihc->lighten(20);
|
2017-10-23 13:16:23 +00:00
|
|
|
}
|
2016-03-28 14:29:05 +00:00
|
|
|
}
|
2018-01-01 20:05:09 +00:00
|
|
|
if (!isset($link_hover_color)) {
|
2016-03-28 14:29:05 +00:00
|
|
|
$lhc = new Color($link_color);
|
|
|
|
$lcolor = $lhc->getHex();
|
|
|
|
|
2017-10-23 13:16:23 +00:00
|
|
|
if ($lhc->isLight($lcolor, 75)) {
|
2016-03-28 14:29:05 +00:00
|
|
|
$link_hover_color = '#' . $lhc->darken(5);
|
|
|
|
} else {
|
|
|
|
$link_hover_color = '#' . $lhc->lighten(5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-23 13:16:23 +00:00
|
|
|
// Convert $bg_image_options into css.
|
2018-01-01 20:05:09 +00:00
|
|
|
if (!isset($bg_image_option)) {
|
|
|
|
$bg_image_option = null;
|
|
|
|
}
|
2018-04-25 00:42:23 +00:00
|
|
|
|
2016-03-28 14:29:05 +00:00
|
|
|
switch ($bg_image_option) {
|
2018-04-25 00:12:43 +00:00
|
|
|
case 'stretch':
|
|
|
|
$background_size_img = '100%';
|
2018-04-25 00:42:23 +00:00
|
|
|
$background_repeat = 'no-repeat';
|
2016-03-28 14:29:05 +00:00
|
|
|
break;
|
2018-04-25 00:12:43 +00:00
|
|
|
case 'cover':
|
|
|
|
$background_size_img = 'cover';
|
2018-04-25 00:42:23 +00:00
|
|
|
$background_repeat = 'no-repeat';
|
2016-03-28 14:29:05 +00:00
|
|
|
break;
|
2018-04-25 00:12:43 +00:00
|
|
|
case 'repeat':
|
|
|
|
$background_size_img = 'auto';
|
2018-04-25 00:42:23 +00:00
|
|
|
$background_repeat = 'repeat';
|
2016-03-28 14:29:05 +00:00
|
|
|
break;
|
2018-04-25 00:12:43 +00:00
|
|
|
case 'contain':
|
|
|
|
$background_size_img = 'contain';
|
2018-04-25 00:42:23 +00:00
|
|
|
$background_repeat = 'repeat';
|
2016-03-28 14:29:05 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-04-25 00:12:43 +00:00
|
|
|
$background_size_img = 'auto';
|
2018-04-25 00:42:23 +00:00
|
|
|
$background_repeat = 'no-repeat';
|
2016-03-28 14:29:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-10-23 13:16:23 +00:00
|
|
|
// Convert transparency level from percentage to opacity value.
|
2016-03-28 14:29:05 +00:00
|
|
|
$contentbg_transp = $contentbg_transp / 100;
|
|
|
|
|
2018-04-25 00:05:20 +00:00
|
|
|
$options = [
|
2017-10-23 13:16:23 +00:00
|
|
|
'$nav_bg' => $nav_bg,
|
|
|
|
'$nav_icon_color' => $nav_icon_color,
|
|
|
|
'$nav_icon_hover_color' => $nav_icon_hover_color,
|
|
|
|
'$link_color' => $link_color,
|
|
|
|
'$link_hover_color' => $link_hover_color,
|
|
|
|
'$menu_background_hover_color' => $menu_background_hover_color,
|
|
|
|
'$btn_primary_color' => $nav_icon_color,
|
|
|
|
'$btn_primary_hover_color' => $menu_background_hover_color,
|
2018-04-25 00:37:04 +00:00
|
|
|
'$background_color' => $background_color,
|
2017-10-23 13:16:23 +00:00
|
|
|
'$contentbg_transp' => $contentbg_transp,
|
|
|
|
'$background_image' => $background_image,
|
|
|
|
'$background_size_img' => $background_size_img,
|
2018-04-25 00:42:23 +00:00
|
|
|
'$background_repeat' => $background_repeat,
|
2018-01-14 20:53:37 +00:00
|
|
|
'$login_bg_image' => $login_bg_image,
|
2020-08-16 00:25:33 +00:00
|
|
|
'$login_bg_color' => $login_bg_color,
|
2021-01-16 21:54:23 +00:00
|
|
|
'$font_color_darker' => $font_color_darker ?? '#222',
|
|
|
|
'$font_color' => $font_color ?? '#444',
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2017-10-23 13:16:23 +00:00
|
|
|
|
|
|
|
$css_tpl = file_get_contents('view/theme/frio/css/style.css');
|
|
|
|
|
|
|
|
// Get the content of the scheme css file and the time of the last file change.
|
|
|
|
if ($schemecssfile) {
|
|
|
|
$css_tpl .= file_get_contents($schemecssfile);
|
|
|
|
$scheme_modified = filemtime($schemecssfile);
|
|
|
|
}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2017-10-23 13:16:23 +00:00
|
|
|
// We need to check which is the most recent css data.
|
|
|
|
// We will use this time later to decide if we load the cached or fresh css data.
|
|
|
|
if ($scheme_modified > $modified) {
|
|
|
|
$modified = $scheme_modified;
|
2016-03-28 14:29:05 +00:00
|
|
|
}
|
2017-10-23 13:16:23 +00:00
|
|
|
// Apply the settings to the css template.
|
|
|
|
$css = str_replace(array_keys($options), array_values($options), $css_tpl);
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2017-10-23 13:16:23 +00:00
|
|
|
$modified = gmdate('r', $modified);
|
|
|
|
|
|
|
|
$etag = md5($css);
|
|
|
|
|
|
|
|
// Set a header for caching.
|
|
|
|
header('Cache-Control: public');
|
2018-04-25 00:05:20 +00:00
|
|
|
header('ETag: "' . $etag . '"');
|
|
|
|
header('Last-Modified: ' . $modified);
|
2017-10-23 13:16:23 +00:00
|
|
|
|
|
|
|
// Only send the CSS file if it was changed.
|
2018-08-14 19:37:44 +00:00
|
|
|
/// @todo Check if this works at all (possibly clients are sending only the one or the other header) - compare with mod/photo.php
|
|
|
|
if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
|
2017-10-23 13:16:23 +00:00
|
|
|
$cached_modified = gmdate('r', strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']));
|
2018-04-25 00:12:43 +00:00
|
|
|
$cached_etag = str_replace(['"', '-gzip'], ['', ''],
|
2017-10-23 13:16:23 +00:00
|
|
|
stripslashes($_SERVER['HTTP_IF_NONE_MATCH']));
|
|
|
|
|
|
|
|
if (($cached_modified == $modified) && ($cached_etag == $etag)) {
|
|
|
|
header('HTTP/1.1 304 Not Modified');
|
|
|
|
exit();
|
|
|
|
}
|
2016-03-28 14:29:05 +00:00
|
|
|
}
|
2017-10-23 13:16:23 +00:00
|
|
|
|
|
|
|
echo $css;
|