2015-06-29 23:03:44 +02:00
|
|
|
<?php
|
2018-01-15 03:22:39 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +01: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 03:22:39 +01:00
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2020-01-18 16:50:57 +01:00
|
|
|
use Friendica\DI;
|
2021-10-30 01:21:07 +02:00
|
|
|
use Friendica\Network\HTTPException\NotModifiedException;
|
2017-11-07 03:22:52 +01:00
|
|
|
|
2019-10-16 14:43:59 +02:00
|
|
|
$uid = $_REQUEST['puid'] ?? 0;
|
2015-06-29 23:03:44 +02:00
|
|
|
|
2020-01-18 16:50:57 +01:00
|
|
|
$style = DI::pConfig()->get($uid, 'vier', 'style');
|
2015-06-29 23:03:44 +02:00
|
|
|
|
2018-01-23 08:15:53 +01:00
|
|
|
if (empty($style)) {
|
2020-01-19 21:21:13 +01:00
|
|
|
$style = DI::config()->get('vier', 'style');
|
2018-01-15 03:22:39 +01:00
|
|
|
}
|
2015-06-29 23:03:44 +02:00
|
|
|
|
2018-01-23 08:15:53 +01:00
|
|
|
if (empty($style)) {
|
2015-06-29 23:03:44 +02:00
|
|
|
$style = "plus";
|
2018-01-15 03:22:39 +01:00
|
|
|
}
|
2015-06-29 23:03:44 +02:00
|
|
|
|
2018-03-22 01:25:43 +01:00
|
|
|
$stylecss = '';
|
2018-03-22 01:15:59 +01:00
|
|
|
$modified = '';
|
|
|
|
|
2019-04-01 03:50:00 +02:00
|
|
|
$style = \Friendica\Util\Strings::sanitizeFilePathItem($style);
|
|
|
|
|
2018-03-22 01:15:59 +01:00
|
|
|
foreach (['style', $style] as $file) {
|
|
|
|
$stylecssfile = $THEMEPATH . DIRECTORY_SEPARATOR . $file .'.css';
|
|
|
|
if (file_exists($stylecssfile)) {
|
|
|
|
$stylecss .= file_get_contents($stylecssfile);
|
|
|
|
$stylemodified = filemtime($stylecssfile);
|
|
|
|
if ($stylemodified > $modified) {
|
|
|
|
$modified = $stylemodified;
|
|
|
|
}
|
|
|
|
} else {
|
2018-10-30 14:58:45 +01:00
|
|
|
//TODO: use Logger::ERROR?
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::notice('Error: missing file: "' . $stylecssfile .'" (userid: '. $uid .')');
|
2018-03-22 01:15:59 +01:00
|
|
|
}
|
2018-01-15 03:22:39 +01:00
|
|
|
}
|
2016-01-15 23:27:25 +01:00
|
|
|
$modified = gmdate('r', $modified);
|
|
|
|
|
|
|
|
$etag = md5($stylecss);
|
|
|
|
|
|
|
|
// Only send the CSS file if it was changed
|
|
|
|
header('Cache-Control: public');
|
|
|
|
header('ETag: "'.$etag.'"');
|
|
|
|
header('Last-Modified: '.$modified);
|
|
|
|
|
2020-11-18 00:01:03 +01:00
|
|
|
if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
|
2016-01-15 23:27:25 +01:00
|
|
|
$cached_modified = gmdate('r', strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']));
|
2018-01-15 14:05:12 +01:00
|
|
|
$cached_etag = str_replace(['"', "-gzip"], ['', ''],
|
2016-01-15 23:27:25 +01:00
|
|
|
stripslashes($_SERVER['HTTP_IF_NONE_MATCH']));
|
|
|
|
|
2017-06-08 04:00:59 +02:00
|
|
|
if (($cached_modified == $modified) && ($cached_etag == $etag)) {
|
2021-10-30 01:21:07 +02:00
|
|
|
throw new NotModifiedException();
|
2016-01-15 23:27:25 +01:00
|
|
|
}
|
|
|
|
}
|
2015-06-29 23:03:44 +02:00
|
|
|
echo $stylecss;
|