summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-10-14 00:46:32 -0400
committerEvan Prodromou <evan@status.net>2010-10-14 00:46:32 -0400
commitd91f894ccbeed6612727c3fb3bffa3504a14ecea (patch)
treeb624ceafba6cdff7445b25cae76dac590eaa832a
parent40c64388e6b0a768dcfa4aa003ba5114be070c2a (diff)
try to show HTTPS-encrypted theme files for HTTPS-encrypted pages
-rw-r--r--lib/theme.php81
1 files changed, 49 insertions, 32 deletions
diff --git a/lib/theme.php b/lib/theme.php
index 992fce870..500e168fb 100644
--- a/lib/theme.php
+++ b/lib/theme.php
@@ -38,7 +38,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* Themes are directories with some expected sub-directories and files
* in them. They're found in either local/theme (for locally-installed themes)
* or theme/ subdir of installation dir.
- *
+ *
* Note that the 'local' directory can be overridden as $config['local']['path']
* and $config['local']['dir'] etc.
*
@@ -104,56 +104,73 @@ class Theme
/**
* Build a full URL to the given theme's base directory, possibly
* using an offsite theme server path.
- *
+ *
* @param string $group configuration section name to pull paths from
* @param string $fallbackSubdir default subdirectory under INSTALLDIR
* @param string $name theme name
- *
+ *
* @return string URL
- *
+ *
* @todo consolidate code with that for other customizable paths
*/
protected function relativeThemePath($group, $fallbackSubdir, $name)
{
- $path = common_config($group, 'path');
+ if (StatusNet::isHTTPS()) {
- if (empty($path)) {
- $path = common_config('site', 'path') . '/';
- if ($fallbackSubdir) {
- $path .= $fallbackSubdir . '/';
+ $sslserver = common_config($group, 'sslserver');
+
+ if (empty($sslserver)) {
+ $server = common_config('site', 'server');
+ $path = common_config('site', 'path') . '/';
+ if ($fallbackSubdir) {
+ $path .= $fallbackSubdir . '/';
+ }
+ } else {
+ $server = $sslserver;
+ $path = common_config($group, 'sslpath');
+ if (empty($path)) {
+ $path = common_config($group, 'path');
+ }
}
- }
- if ($path[strlen($path)-1] != '/') {
- $path .= '/';
- }
+ if ($path[strlen($path)-1] != '/') {
+ $path .= '/';
+ }
- if ($path[0] != '/') {
- $path = '/'.$path;
- }
+ if ($path[0] != '/') {
+ $path = '/'.$path;
+ }
- $server = common_config($group, 'server');
+ return 'https://'.$server.$path.$name;
- if (empty($server)) {
- $server = common_config('site', 'server');
- }
+ } else {
- $ssl = common_config($group, 'ssl');
+ $path = common_config($group, 'path');
- if (is_null($ssl)) { // null -> guess
- if (common_config('site', 'ssl') == 'always' &&
- !common_config($group, 'server')) {
- $ssl = true;
- } else {
- $ssl = false;
+ if (empty($path)) {
+ $path = common_config('site', 'path') . '/';
+ if ($fallbackSubdir) {
+ $path .= $fallbackSubdir . '/';
+ }
}
- }
- $protocol = ($ssl) ? 'https' : 'http';
+ if ($path[strlen($path)-1] != '/') {
+ $path .= '/';
+ }
- $path = $protocol . '://'.$server.$path.$name;
- return $path;
+ if ($path[0] != '/') {
+ $path = '/'.$path;
+ }
+
+ $server = common_config($group, 'server');
+
+ if (empty($server)) {
+ $server = common_config('site', 'server');
+ }
+
+ return 'http://'.$server.$path.$name;
+ }
}
/**
@@ -221,7 +238,7 @@ class Theme
/**
* Pull data from the theme's theme.ini file.
* @fixme calling getFile will fall back to default theme, this may be unsafe.
- *
+ *
* @return associative array of strings
*/
function getMetadata()