Add Install Mode
- merge `friendica/develop` to `nupplaphil/install_mode`
This commit is contained in:
		
				commit
				
					
						b4f5311e7f
					
				
			
		
					 18 changed files with 7851 additions and 7830 deletions
				
			
		
							
								
								
									
										81
									
								
								src/App.php
									
										
									
									
									
								
							
							
						
						
									
										81
									
								
								src/App.php
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -1095,4 +1095,85 @@ class App
 | 
			
		|||
 | 
			
		||||
		return false;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/**
 | 
			
		||||
	 * Returns the current theme name.
 | 
			
		||||
	 *
 | 
			
		||||
	 * @return string
 | 
			
		||||
	 */
 | 
			
		||||
	public function getCurrentTheme()
 | 
			
		||||
	{
 | 
			
		||||
		if (!$this->current_theme) {
 | 
			
		||||
			$this->computeCurrentTheme();
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		return $this->current_theme;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/**
 | 
			
		||||
	 * Computes the current theme name based on the node settings, the user settings and the device type
 | 
			
		||||
	 *
 | 
			
		||||
	 * @throws Exception
 | 
			
		||||
	 */
 | 
			
		||||
	private function computeCurrentTheme()
 | 
			
		||||
	{
 | 
			
		||||
		$system_theme = Config::get('system', 'theme');
 | 
			
		||||
		if (!$system_theme) {
 | 
			
		||||
			throw new Exception(L10n::t('No system theme config value set.'));
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		// Sane default
 | 
			
		||||
		$this->current_theme = $system_theme;
 | 
			
		||||
 | 
			
		||||
		$allowed_themes = explode(',', Config::get('system', 'allowed_themes', $system_theme));
 | 
			
		||||
 | 
			
		||||
		$page_theme = null;
 | 
			
		||||
		// Find the theme that belongs to the user whose stuff we are looking at
 | 
			
		||||
		if ($this->profile_uid && ($this->profile_uid != local_user())) {
 | 
			
		||||
			// Allow folks to override user themes and always use their own on their own site.
 | 
			
		||||
			// This works only if the user is on the same server
 | 
			
		||||
			$user = dba::selectFirst('user', ['theme'], ['uid' => $this->profile_uid]);
 | 
			
		||||
			if (DBM::is_result($user) && !PConfig::get(local_user(), 'system', 'always_my_theme')) {
 | 
			
		||||
				$page_theme = $user['theme'];
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		$user_theme = defaults($_SESSION, 'theme', $system_theme);
 | 
			
		||||
		// Specific mobile theme override
 | 
			
		||||
		if (($this->is_mobile || $this->is_tablet) && defaults($_SESSION, 'show-mobile', true)) {
 | 
			
		||||
			$system_mobile_theme = Config::get('system', 'mobile-theme');
 | 
			
		||||
			$user_mobile_theme = defaults($_SESSION, 'mobile-theme', $system_mobile_theme);
 | 
			
		||||
 | 
			
		||||
			// --- means same mobile theme as desktop
 | 
			
		||||
			if (!empty($user_mobile_theme) && $user_mobile_theme !== '---') {
 | 
			
		||||
				$user_theme = $user_mobile_theme;
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if ($page_theme) {
 | 
			
		||||
			$theme_name = $page_theme;
 | 
			
		||||
		} else {
 | 
			
		||||
			$theme_name = $user_theme;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if ($theme_name
 | 
			
		||||
			&& in_array($theme_name, $allowed_themes)
 | 
			
		||||
			&& (file_exists('view/theme/' . $theme_name . '/style.css')
 | 
			
		||||
			|| file_exists('view/theme/' . $theme_name . '/style.php'))
 | 
			
		||||
		) {
 | 
			
		||||
			$this->current_theme = $theme_name;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/**
 | 
			
		||||
	 * @brief Return full URL to theme which is currently in effect.
 | 
			
		||||
	 *
 | 
			
		||||
	 * Provide a sane default if nothing is chosen or the specified theme does not exist.
 | 
			
		||||
	 *
 | 
			
		||||
	 * @return string
 | 
			
		||||
	 */
 | 
			
		||||
	public function getCurrentThemeStylesheetPath()
 | 
			
		||||
	{
 | 
			
		||||
		return Core\Theme::getStylesheetPath($this->getCurrentTheme());
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -228,14 +228,15 @@ class Addon
 | 
			
		|||
	/**
 | 
			
		||||
	 * @brief Calls a single hook.
 | 
			
		||||
	 *
 | 
			
		||||
	 * @param string $name of the hook to call
 | 
			
		||||
	 * @param array $hook Hook data
 | 
			
		||||
	 * @param string|array &$data to transmit to the callback handler
 | 
			
		||||
	 * @param \Friendica\App $a
 | 
			
		||||
	 * @param string         $name of the hook to call
 | 
			
		||||
	 * @param array          $hook Hook data
 | 
			
		||||
	 * @param string|array   &$data to transmit to the callback handler
 | 
			
		||||
	 */
 | 
			
		||||
	public static function callSingleHook($a, $name, $hook, &$data = null)
 | 
			
		||||
	public static function callSingleHook(\Friendica\App $a, $name, $hook, &$data = null)
 | 
			
		||||
	{
 | 
			
		||||
		// Don't run a theme's hook if the user isn't using the theme
 | 
			
		||||
		if (strpos($hook[0], 'view/theme/') !== false && strpos($hook[0], 'view/theme/'.current_theme()) === false) {
 | 
			
		||||
		if (strpos($hook[0], 'view/theme/') !== false && strpos($hook[0], 'view/theme/' . $a->getCurrentTheme()) === false) {
 | 
			
		||||
			return;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,7 +1,9 @@
 | 
			
		|||
<?php
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @file src/Core/Theme.php
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
namespace Friendica\Core;
 | 
			
		||||
 | 
			
		||||
use Friendica\Core\System;
 | 
			
		||||
| 
						 | 
				
			
			@ -13,177 +15,190 @@ require_once 'boot.php';
 | 
			
		|||
 */
 | 
			
		||||
class Theme
 | 
			
		||||
{
 | 
			
		||||
    /**
 | 
			
		||||
     * @brief Parse theme comment in search of theme infos.
 | 
			
		||||
     *
 | 
			
		||||
     * like
 | 
			
		||||
     * \code
 | 
			
		||||
     * ..* Name: My Theme
 | 
			
		||||
     *   * Description: My Cool Theme
 | 
			
		||||
     * . * Version: 1.2.3
 | 
			
		||||
     *   * Author: John <profile url>
 | 
			
		||||
     *   * Maintainer: Jane <profile url>
 | 
			
		||||
     *   *
 | 
			
		||||
     * \endcode
 | 
			
		||||
     * @param string $theme the name of the theme
 | 
			
		||||
     * @return array
 | 
			
		||||
     */
 | 
			
		||||
	/**
 | 
			
		||||
	 * @brief Parse theme comment in search of theme infos.
 | 
			
		||||
	 *
 | 
			
		||||
	 * like
 | 
			
		||||
	 * \code
 | 
			
		||||
	 * ..* Name: My Theme
 | 
			
		||||
	 *   * Description: My Cool Theme
 | 
			
		||||
	 * . * Version: 1.2.3
 | 
			
		||||
	 *   * Author: John <profile url>
 | 
			
		||||
	 *   * Maintainer: Jane <profile url>
 | 
			
		||||
	 *   *
 | 
			
		||||
	 * \endcode
 | 
			
		||||
	 * @param string $theme the name of the theme
 | 
			
		||||
	 * @return array
 | 
			
		||||
	 */
 | 
			
		||||
	public static function getInfo($theme)
 | 
			
		||||
	{
 | 
			
		||||
		$info = [
 | 
			
		||||
			'name' => $theme,
 | 
			
		||||
			'description' => "",
 | 
			
		||||
			'author' => [],
 | 
			
		||||
			'maintainer' => [],
 | 
			
		||||
			'version' => "",
 | 
			
		||||
			'credits' => "",
 | 
			
		||||
			'experimental' => file_exists("view/theme/$theme/experimental"),
 | 
			
		||||
			'unsupported' => file_exists("view/theme/$theme/unsupported")
 | 
			
		||||
		];
 | 
			
		||||
 | 
			
		||||
    public static function getInfo($theme)
 | 
			
		||||
    {
 | 
			
		||||
        $info=[
 | 
			
		||||
            'name' => $theme,
 | 
			
		||||
            'description' => "",
 | 
			
		||||
            'author' => [],
 | 
			
		||||
            'maintainer' => [],
 | 
			
		||||
            'version' => "",
 | 
			
		||||
            'credits' => "",
 | 
			
		||||
            'experimental' => false,
 | 
			
		||||
            'unsupported' => false
 | 
			
		||||
        ];
 | 
			
		||||
		if (!is_file("view/theme/$theme/theme.php")) {
 | 
			
		||||
			return $info;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
        if (file_exists("view/theme/$theme/experimental"))
 | 
			
		||||
            $info['experimental'] = true;
 | 
			
		||||
        if (file_exists("view/theme/$theme/unsupported"))
 | 
			
		||||
            $info['unsupported'] = true;
 | 
			
		||||
		$a = get_app();
 | 
			
		||||
		$stamp1 = microtime(true);
 | 
			
		||||
		$theme_file = file_get_contents("view/theme/$theme/theme.php");
 | 
			
		||||
		$a->save_timestamp($stamp1, "file");
 | 
			
		||||
 | 
			
		||||
        if (!is_file("view/theme/$theme/theme.php")) return $info;
 | 
			
		||||
		$result = preg_match("|/\*.*\*/|msU", $theme_file, $matches);
 | 
			
		||||
 | 
			
		||||
        $a = get_app();
 | 
			
		||||
        $stamp1 = microtime(true);
 | 
			
		||||
        $f = file_get_contents("view/theme/$theme/theme.php");
 | 
			
		||||
        $a->save_timestamp($stamp1, "file");
 | 
			
		||||
		if ($result) {
 | 
			
		||||
			$comment_lines = explode("\n", $matches[0]);
 | 
			
		||||
			foreach ($comment_lines as $comment_line) {
 | 
			
		||||
				$comment_line = trim($comment_line, "\t\n\r */");
 | 
			
		||||
				if ($comment_line != "") {
 | 
			
		||||
					list($key, $value) = array_map("trim", explode(":", $comment_line, 2));
 | 
			
		||||
					$key = strtolower($key);
 | 
			
		||||
					if ($key == "author") {
 | 
			
		||||
						$result = preg_match("|([^<]+)<([^>]+)>|", $value, $matches);
 | 
			
		||||
						if ($result) {
 | 
			
		||||
							$info['author'][] = ['name' => $matches[1], 'link' => $matches[2]];
 | 
			
		||||
						} else {
 | 
			
		||||
							$info['author'][] = ['name' => $value];
 | 
			
		||||
						}
 | 
			
		||||
					} elseif ($key == "maintainer") {
 | 
			
		||||
						$result = preg_match("|([^<]+)<([^>]+)>|", $value, $matches);
 | 
			
		||||
						if ($result) {
 | 
			
		||||
							$info['maintainer'][] = ['name' => $matches[1], 'link' => $matches[2]];
 | 
			
		||||
						} else {
 | 
			
		||||
							$info['maintainer'][] = ['name' => $value];
 | 
			
		||||
						}
 | 
			
		||||
					} elseif (array_key_exists($key, $info)) {
 | 
			
		||||
						$info[$key] = $value;
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		return $info;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
        $r = preg_match("|/\*.*\*/|msU", $f, $m);
 | 
			
		||||
	/**
 | 
			
		||||
	 * @brief Returns the theme's screenshot.
 | 
			
		||||
	 *
 | 
			
		||||
	 * The screenshot is expected as view/theme/$theme/screenshot.[png|jpg].
 | 
			
		||||
	 *
 | 
			
		||||
	 * @param sring $theme The name of the theme
 | 
			
		||||
	 * @return string
 | 
			
		||||
	 */
 | 
			
		||||
	public static function getScreenshot($theme)
 | 
			
		||||
	{
 | 
			
		||||
		$exts = ['.png', '.jpg'];
 | 
			
		||||
		foreach ($exts as $ext) {
 | 
			
		||||
			if (file_exists('view/theme/' . $theme . '/screenshot' . $ext)) {
 | 
			
		||||
				return(System::baseUrl() . '/view/theme/' . $theme . '/screenshot' . $ext);
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		return(System::baseUrl() . '/images/blank.png');
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
        if ($r) {
 | 
			
		||||
            $ll = explode("\n", $m[0]);
 | 
			
		||||
            foreach ( $ll as $l ) {
 | 
			
		||||
                $l = trim($l,"\t\n\r */");
 | 
			
		||||
                if ($l != "") {
 | 
			
		||||
                    list($k, $v) = array_map("trim", explode(":", $l, 2));
 | 
			
		||||
                    $k= strtolower($k);
 | 
			
		||||
                    if ($k == "author") {
 | 
			
		||||
	// install and uninstall theme
 | 
			
		||||
	public static function uninstall($theme)
 | 
			
		||||
	{
 | 
			
		||||
		logger("Addons: uninstalling theme " . $theme);
 | 
			
		||||
 | 
			
		||||
                        $r=preg_match("|([^<]+)<([^>]+)>|", $v, $m);
 | 
			
		||||
                        if ($r) {
 | 
			
		||||
                            $info['author'][] = ['name'=>$m[1], 'link'=>$m[2]];
 | 
			
		||||
                        } else {
 | 
			
		||||
                            $info['author'][] = ['name'=>$v];
 | 
			
		||||
                        }
 | 
			
		||||
                    } elseif ($k == "maintainer") {
 | 
			
		||||
                        $r=preg_match("|([^<]+)<([^>]+)>|", $v, $m);
 | 
			
		||||
                        if ($r) {
 | 
			
		||||
                            $info['maintainer'][] = ['name'=>$m[1], 'link'=>$m[2]];
 | 
			
		||||
                        } else {
 | 
			
		||||
                            $info['maintainer'][] = ['name'=>$v];
 | 
			
		||||
                        }
 | 
			
		||||
                    } else {
 | 
			
		||||
                        if (array_key_exists($k, $info)) {
 | 
			
		||||
                            $info[$k] = $v;
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        return $info;
 | 
			
		||||
    }
 | 
			
		||||
		include_once "view/theme/$theme/theme.php";
 | 
			
		||||
		if (function_exists("{$theme}_uninstall")) {
 | 
			
		||||
			$func = "{$theme}_uninstall";
 | 
			
		||||
			$func();
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * @brief Returns the theme's screenshot.
 | 
			
		||||
     *
 | 
			
		||||
     * The screenshot is expected as view/theme/$theme/screenshot.[png|jpg].
 | 
			
		||||
     *
 | 
			
		||||
     * @param sring $theme The name of the theme
 | 
			
		||||
     * @return string
 | 
			
		||||
     */
 | 
			
		||||
    public static function getScreenshot($theme)
 | 
			
		||||
    {
 | 
			
		||||
        $exts = ['.png','.jpg'];
 | 
			
		||||
        foreach ($exts as $ext) {
 | 
			
		||||
            if (file_exists('view/theme/' . $theme . '/screenshot' . $ext)) {
 | 
			
		||||
                return(System::baseUrl() . '/view/theme/' . $theme . '/screenshot' . $ext);
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        return(System::baseUrl() . '/images/blank.png');
 | 
			
		||||
    }
 | 
			
		||||
	public static function install($theme)
 | 
			
		||||
	{
 | 
			
		||||
		// silently fail if theme was removed
 | 
			
		||||
 | 
			
		||||
    // install and uninstall theme
 | 
			
		||||
    public static function uninstall($theme)
 | 
			
		||||
    {
 | 
			
		||||
        logger("Addons: uninstalling theme " . $theme);
 | 
			
		||||
		if (!file_exists("view/theme/$theme/theme.php")) {
 | 
			
		||||
			return false;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
        include_once("view/theme/$theme/theme.php");
 | 
			
		||||
        if (function_exists("{$theme}_uninstall")) {
 | 
			
		||||
            $func = "{$theme}_uninstall";
 | 
			
		||||
            $func();
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
		logger("Addons: installing theme $theme");
 | 
			
		||||
 | 
			
		||||
    public static function install($theme)
 | 
			
		||||
    {
 | 
			
		||||
        // silently fail if theme was removed
 | 
			
		||||
		include_once "view/theme/$theme/theme.php";
 | 
			
		||||
 | 
			
		||||
        if (! file_exists("view/theme/$theme/theme.php")) {
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
		if (function_exists("{$theme}_install")) {
 | 
			
		||||
			$func = "{$theme}_install";
 | 
			
		||||
			$func();
 | 
			
		||||
			return true;
 | 
			
		||||
		} else {
 | 
			
		||||
			logger("Addons: FAILED installing theme $theme");
 | 
			
		||||
			return false;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
        logger("Addons: installing theme $theme");
 | 
			
		||||
	/**
 | 
			
		||||
	 * @brief Get the full path to relevant theme files by filename
 | 
			
		||||
	 *
 | 
			
		||||
	 * This function search in the theme directory (and if not present in global theme directory)
 | 
			
		||||
	 * if there is a directory with the file extension and  for a file with the given
 | 
			
		||||
	 * filename.
 | 
			
		||||
	 *
 | 
			
		||||
	 * @param string $file Filename
 | 
			
		||||
	 * @param string $root Full root path
 | 
			
		||||
	 * @return string Path to the file or empty string if the file isn't found
 | 
			
		||||
	 */
 | 
			
		||||
	public static function getPathForFile($file, $root = '')
 | 
			
		||||
	{
 | 
			
		||||
		$file = basename($file);
 | 
			
		||||
 | 
			
		||||
        include_once("view/theme/$theme/theme.php");
 | 
			
		||||
		// Make sure $root ends with a slash / if it's not blank
 | 
			
		||||
		if ($root !== '' && $root[strlen($root) - 1] !== '/') {
 | 
			
		||||
			$root = $root . '/';
 | 
			
		||||
		}
 | 
			
		||||
		$theme_info = get_app()->theme_info;
 | 
			
		||||
		if (is_array($theme_info) && array_key_exists('extends', $theme_info)) {
 | 
			
		||||
			$parent = $theme_info['extends'];
 | 
			
		||||
		} else {
 | 
			
		||||
			$parent = 'NOPATH';
 | 
			
		||||
		}
 | 
			
		||||
		$theme = get_app()->getCurrentTheme();
 | 
			
		||||
		$thname = $theme;
 | 
			
		||||
		$ext = substr($file, strrpos($file, '.') + 1);
 | 
			
		||||
		$paths = [
 | 
			
		||||
			"{$root}view/theme/$thname/$ext/$file",
 | 
			
		||||
			"{$root}view/theme/$parent/$ext/$file",
 | 
			
		||||
			"{$root}view/$ext/$file",
 | 
			
		||||
		];
 | 
			
		||||
		foreach ($paths as $p) {
 | 
			
		||||
			// strpos() is faster than strstr when checking if one string is in another (http://php.net/manual/en/function.strstr.php)
 | 
			
		||||
			if (strpos($p, 'NOPATH') !== false) {
 | 
			
		||||
				continue;
 | 
			
		||||
			} elseif (file_exists($p)) {
 | 
			
		||||
				return $p;
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		return '';
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
        if (function_exists("{$theme}_install")) {
 | 
			
		||||
            $func = "{$theme}_install";
 | 
			
		||||
            $func();
 | 
			
		||||
            return true;
 | 
			
		||||
        } else {
 | 
			
		||||
            logger("Addons: FAILED installing theme $theme");
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
	/**
 | 
			
		||||
	 * @brief Return relative path to theme stylesheet file
 | 
			
		||||
	 *
 | 
			
		||||
	 * Provide a sane default if nothing is chosen or the specified theme does not exist.
 | 
			
		||||
	 *
 | 
			
		||||
	 * @param string $theme Theme name
 | 
			
		||||
	 *
 | 
			
		||||
	 * @return string
 | 
			
		||||
	 */
 | 
			
		||||
	public static function getStylesheetPath($theme)
 | 
			
		||||
	{
 | 
			
		||||
		$a = get_app();
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
		$opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
 | 
			
		||||
		if (file_exists('view/theme/' . $theme . '/style.php')) {
 | 
			
		||||
			return 'view/theme/' . $theme . '/style.pcss' . $opts;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * @brief Get the full path to relevant theme files by filename
 | 
			
		||||
     *
 | 
			
		||||
     * This function search in the theme directory (and if not present in global theme directory)
 | 
			
		||||
     * if there is a directory with the file extension and  for a file with the given
 | 
			
		||||
     * filename.
 | 
			
		||||
     *
 | 
			
		||||
     * @param string $file Filename
 | 
			
		||||
     * @param string $root Full root path
 | 
			
		||||
     * @return string Path to the file or empty string if the file isn't found
 | 
			
		||||
     */
 | 
			
		||||
    public static function getPathForFile($file, $root = '')
 | 
			
		||||
    {
 | 
			
		||||
        $file = basename($file);
 | 
			
		||||
 | 
			
		||||
        // Make sure $root ends with a slash / if it's not blank
 | 
			
		||||
        if ($root !== '' && $root[strlen($root)-1] !== '/') {
 | 
			
		||||
            $root = $root . '/';
 | 
			
		||||
        }
 | 
			
		||||
        $theme_info = get_app()->theme_info;
 | 
			
		||||
        if (is_array($theme_info) && array_key_exists('extends',$theme_info)) {
 | 
			
		||||
            $parent = $theme_info['extends'];
 | 
			
		||||
        } else {
 | 
			
		||||
            $parent = 'NOPATH';
 | 
			
		||||
        }
 | 
			
		||||
        $theme = current_theme();
 | 
			
		||||
        $thname = $theme;
 | 
			
		||||
        $ext = substr($file,strrpos($file,'.')+1);
 | 
			
		||||
        $paths = [
 | 
			
		||||
            "{$root}view/theme/$thname/$ext/$file",
 | 
			
		||||
            "{$root}view/theme/$parent/$ext/$file",
 | 
			
		||||
            "{$root}view/$ext/$file",
 | 
			
		||||
        ];
 | 
			
		||||
        foreach ($paths as $p) {
 | 
			
		||||
            // strpos() is faster than strstr when checking if one string is in another (http://php.net/manual/en/function.strstr.php)
 | 
			
		||||
            if (strpos($p,'NOPATH') !== false) {
 | 
			
		||||
                continue;
 | 
			
		||||
            } elseif (file_exists($p)) {
 | 
			
		||||
                return $p;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        return '';
 | 
			
		||||
    }
 | 
			
		||||
		return 'view/theme/' . $theme . '/style.css';
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -872,7 +872,7 @@ class Item extends BaseObject
 | 
			
		|||
 | 
			
		||||
		$users = [];
 | 
			
		||||
 | 
			
		||||
		$condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND NOT `readonly` AND `rel` IN (?, ?)",
 | 
			
		||||
		$condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND `rel` IN (?, ?)",
 | 
			
		||||
			$parent['owner-id'], CONTACT_IS_SHARING,  CONTACT_IS_FRIEND];
 | 
			
		||||
		$contacts = dba::select('contact', ['uid'], $condition);
 | 
			
		||||
		while ($contact = dba::fetch($contacts)) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -152,7 +152,7 @@ class Profile
 | 
			
		|||
 | 
			
		||||
		$a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
 | 
			
		||||
 | 
			
		||||
		$theme_info_file = 'view/theme/' . current_theme() . '/theme.php';
 | 
			
		||||
		$theme_info_file = 'view/theme/' . $a->getCurrentTheme() . '/theme.php';
 | 
			
		||||
		if (file_exists($theme_info_file)) {
 | 
			
		||||
			require_once $theme_info_file;
 | 
			
		||||
		}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2799,10 +2799,6 @@ class DFRN
 | 
			
		|||
				return true;
 | 
			
		||||
			}
 | 
			
		||||
		} else { // $entrytype == DFRN_TOP_LEVEL
 | 
			
		||||
			if ($importer["readonly"]) {
 | 
			
		||||
				logger('ignoring read-only contact '.$importer["id"]);
 | 
			
		||||
				return;
 | 
			
		||||
			}
 | 
			
		||||
			if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
 | 
			
		||||
				logger("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", LOGGER_DEBUG);
 | 
			
		||||
				return;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1151,7 +1151,7 @@ class Diaspora
 | 
			
		|||
		//}
 | 
			
		||||
 | 
			
		||||
		// We don't seem to like that person
 | 
			
		||||
		if ($contact["blocked"] || $contact["readonly"]) {
 | 
			
		||||
		if ($contact["blocked"]) {
 | 
			
		||||
			// Maybe blocked, don't accept.
 | 
			
		||||
			return false;
 | 
			
		||||
			// We are following this person?
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -22,7 +22,7 @@ class FriendicaSmarty extends Smarty
 | 
			
		|||
		parent::__construct();
 | 
			
		||||
 | 
			
		||||
		$a = get_app();
 | 
			
		||||
		$theme = current_theme();
 | 
			
		||||
		$theme = $a->getCurrentTheme();
 | 
			
		||||
 | 
			
		||||
		// setTemplateDir can be set to an array, which Smarty will parse in order.
 | 
			
		||||
		// The order is thus very important here
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -62,7 +62,7 @@ class FriendicaSmartyEngine implements ITemplateEngine
 | 
			
		|||
			$root = $root . '/';
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		$theme = current_theme();
 | 
			
		||||
		$theme = $a->getCurrentTheme();
 | 
			
		||||
		$filename = $template::SMARTY3_TEMPLATE_FOLDER . '/' . $file;
 | 
			
		||||
 | 
			
		||||
		if (file_exists("{$root}view/theme/$theme/$filename")) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -309,7 +309,7 @@ class OnePoll
 | 
			
		|||
 | 
			
		||||
			// Are we allowed to import from this person?
 | 
			
		||||
 | 
			
		||||
			if ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly']) {
 | 
			
		||||
			if ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked']) {
 | 
			
		||||
				// set the last-update so we don't keep polling
 | 
			
		||||
				dba::update('contact', ['last-update' => DateTimeFormat::utcNow()], ['id' => $contact['id']]);
 | 
			
		||||
				return;
 | 
			
		||||
| 
						 | 
				
			
			@ -590,7 +590,7 @@ class OnePoll
 | 
			
		|||
			}
 | 
			
		||||
 | 
			
		||||
			$hubmode = 'subscribe';
 | 
			
		||||
			if ($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly']) {
 | 
			
		||||
			if ($contact['network'] === NETWORK_DFRN || $contact['blocked']) {
 | 
			
		||||
				$hubmode = 'unsubscribe';
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue