friendica/view/theme/frio/style.php

224 lines
7.6 KiB
PHP
Raw Normal View History

2016-03-28 16:29:05 +02:00
<?php
/**
* @file view/theme/frio/style.php
*/
use Friendica\Core\Config;
use Friendica\Core\PConfig;
use Friendica\Model\Profile;
2016-03-28 16:29:05 +02:00
require_once 'view/theme/frio/php/PHPColors/Color.php';
$schemecss = "";
$schemecssfile = false;
$scheme_modified = 0;
if ($a->module !== 'install') {
// Get the UID of the profile owner.
$uid = Profile::getThemeUid();
if ($uid) {
PConfig::load($uid, 'frio');
// Load the profile owners pconfig.
$schema = PConfig::get($uid, "frio", "schema");
$nav_bg = PConfig::get($uid, "frio", "nav_bg");
$nav_icon_color = PConfig::get($uid, "frio", "nav_icon_color");
$link_color = PConfig::get($uid, "frio", "link_color");
$bgcolor = PConfig::get($uid, "frio", "background_color");
$contentbg_transp = PConfig::get($uid, "frio", "contentbg_transp");
$background_image = PConfig::get($uid, "frio", "background_image");
$bg_image_option = PConfig::get($uid, "frio", "bg_image_option");
$modified = PConfig::get($uid, "frio", "css_modified");
// There is maybe the case that the user did never modify the theme settings.
// In this case we store the present time.
if (empty($modified)) {
PConfig::set($uid, 'frio', 'css_modified', time());
}
} else {
Config::load('frio');
// Load frios system config.
$schema = Config::get("frio", "schema");
$nav_bg = Config::get("frio", "nav_bg");
$nav_icon_color = Config::get("frio", "nav_icon_color");
$link_color = Config::get("frio", "link_color");
$bgcolor = Config::get("frio", "background_color");
$contentbg_transp = Config::get("frio", "contentbg_transp");
$background_image = Config::get("frio", "background_image");
$bg_image_option = Config::get("frio", "bg_image_option");
2018-01-14 21:53:37 +01:00
$login_bg_image = Config::get("frio", "login_bg_image");
$modified = Config::get("frio", "css_modified");
// There is maybe the case that the user did never modify the theme settings.
// In this case we store the present time.
if (empty($modified)) {
Config::set('frio', 'css_modified', time());
}
2016-03-28 16:29:05 +02:00
}
}
// Now load the scheme. If a value is changed above, we'll keep the settings
// If not, we'll keep those defined by the schema
// Setting $schema to '' wasn't working for some reason, so we'll check it's
// not --- like the mobile theme does instead.
// Allow layouts to over-ride the schema.
if (x($_REQUEST, 'schema')) {
2016-03-28 16:29:05 +02:00
$schema = $_REQUEST['schema'];
}
2017-10-23 22:14:35 +02:00
// Sanitize the data.
$schema = !empty($schema) ? basename($schema) : "";
2017-10-23 22:14:35 +02:00
2016-03-28 16:29:05 +02:00
if (($schema) && ($schema != '---')) {
if (file_exists('view/theme/frio/schema/' . $schema . '.php')) {
2016-03-28 16:29:05 +02:00
$schemefile = 'view/theme/frio/schema/' . $schema . '.php';
require_once $schemefile;
2016-03-28 16:29:05 +02:00
}
if (file_exists('view/theme/frio/schema/' . $schema . '.css')) {
$schemecssfile = 'view/theme/frio/schema/' . $schema . '.css';
2016-03-28 16:29:05 +02:00
}
}
// If we haven't got a schema, load the default. We shouldn't touch this - we
// should leave it for admins to define for themselves.
// default.php and default.css MUST be symlinks to existing schema files.
if (! $schema) {
if (file_exists('view/theme/frio/schema/default.php')) {
2016-03-28 16:29:05 +02:00
$schemefile = 'view/theme/frio/schema/default.php';
require_once $schemefile;
2016-03-28 16:29:05 +02:00
}
if (file_exists('view/theme/frio/schema/default.css')) {
$schemecssfile = 'view/theme/frio/schema/default.css';
2016-03-28 16:29:05 +02:00
}
}
//Set some defaults - we have to do this after pulling owner settings, and we have to check for each setting
//individually. If we don't, we'll have problems if a user has set one, but not all options.
$nav_bg = (empty($nav_bg) ? "#708fa0" : $nav_bg);
$nav_icon_color = (empty($nav_icon_color) ? "#fff" : $nav_icon_color);
$link_color = (empty($link_color) ? "#6fdbe8" : $link_color);
$bgcolor = (empty($bgcolor) ? "#ededed" : $bgcolor);
// The background image can not be empty. So we use a dummy jpg if no image was set.
$background_image = (empty($background_image) ? 'img/none.jpg' : $background_image);
2018-01-14 18:45:00 +01:00
$login_bg_image = (empty($login_bg_image) ? 'img/login_bg.jpg' : $login_bg_image);
$modified = (empty($modified) ? time() :$modified);
$contentbg_transp = ((isset($contentbg_transp) && $contentbg_transp != "") ? $contentbg_transp : 100);
// Calculate some colors in dependance of existing colors.
2016-03-28 16:29:05 +02:00
// Some colors are calculated to don't have too many selection
// fields in the theme settings.
if (!isset($menu_background_hover_color)) {
2016-03-28 16:29:05 +02:00
$mbhc = new Color($nav_bg);
$mcolor = $mbhc->getHex();
if ($mbhc->isLight($mcolor, 75)) {
2016-03-28 16:29:05 +02:00
$menu_is = 'light';
$menu_background_hover_color = '#' . $mbhc->darken(5);
} else {
$menu_is = 'dark';
$menu_background_hover_color = '#' . $mbhc->lighten(5);
}
}
if (!isset($nav_icon_hover_color)) {
2016-03-28 16:29:05 +02:00
$nihc = new Color($nav_bg);
if ($nihc->isLight()) {
2016-03-28 16:29:05 +02:00
$nav_icon_hover_color = '#' . $nihc->darken(10);
} else {
2016-03-28 16:29:05 +02:00
$nav_icon_hover_color = '#' . $nihc->lighten(10);
}
2016-03-28 16:29:05 +02:00
}
if (!isset($link_hover_color)) {
2016-03-28 16:29:05 +02:00
$lhc = new Color($link_color);
$lcolor = $lhc->getHex();
if ($lhc->isLight($lcolor, 75)) {
2016-03-28 16:29:05 +02:00
$link_hover_color = '#' . $lhc->darken(5);
} else {
$link_hover_color = '#' . $lhc->lighten(5);
}
}
// Convert $bg_image_options into css.
if (!isset($bg_image_option)) {
$bg_image_option = null;
}
2016-03-28 16:29:05 +02:00
switch ($bg_image_option) {
case "stretch":
$background_size_img = "100%";
break;
case "cover":
$background_size_img ="cover";
break;
case "repeat":
$background_size_img = "auto";
break;
case "contain":
$background_size_img = "contain";
break;
default:
$background_size_img = "auto";
break;
}
// Convert transparency level from percentage to opacity value.
2016-03-28 16:29:05 +02:00
$contentbg_transp = $contentbg_transp / 100;
$options = array (
'$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,
'$bgcolor' => $bgcolor,
'$contentbg_transp' => $contentbg_transp,
'$background_image' => $background_image,
'$background_size_img' => $background_size_img,
2018-01-14 21:53:37 +01:00
'$login_bg_image' => $login_bg_image,
);
$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 16:29:05 +02: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 16:29:05 +02:00
}
// Apply the settings to the css template.
$css = str_replace(array_keys($options), array_values($options), $css_tpl);
2016-03-28 16:29:05 +02:00
$modified = gmdate('r', $modified);
$etag = md5($css);
// Set a header for caching.
header('Cache-Control: public');
header('ETag: "'.$etag.'"');
header('Last-Modified: '.$modified);
// Only send the CSS file if it was changed.
if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) || isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
$cached_modified = gmdate('r', strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']));
$cached_etag = str_replace(array('"', "-gzip"), array('', ''),
stripslashes($_SERVER['HTTP_IF_NONE_MATCH']));
if (($cached_modified == $modified) && ($cached_etag == $etag)) {
header('HTTP/1.1 304 Not Modified');
exit();
}
2016-03-28 16:29:05 +02:00
}
echo $css;