4 * @file src/Core/Theme.php
7 namespace Friendica\Core;
9 use Friendica\BaseObject;
10 use Friendica\Model\Profile;
12 require_once 'boot.php';
15 * Some functions to handle themes
20 * @brief Parse theme comment in search of theme infos.
25 * * Description: My Cool Theme
27 * * Author: John <profile url>
28 * * Maintainer: Jane <profile url>
31 * @param string $theme the name of the theme
34 public static function getInfo($theme)
43 'experimental' => file_exists("view/theme/$theme/experimental"),
44 'unsupported' => file_exists("view/theme/$theme/unsupported")
47 if (!is_file("view/theme/$theme/theme.php")) {
52 $stamp1 = microtime(true);
53 $theme_file = file_get_contents("view/theme/$theme/theme.php");
54 $a->saveTimestamp($stamp1, "file");
56 $result = preg_match("|/\*.*\*/|msU", $theme_file, $matches);
59 $comment_lines = explode("\n", $matches[0]);
60 foreach ($comment_lines as $comment_line) {
61 $comment_line = trim($comment_line, "\t\n\r */");
62 if ($comment_line != "") {
63 list($key, $value) = array_map("trim", explode(":", $comment_line, 2));
64 $key = strtolower($key);
65 if ($key == "author") {
66 $result = preg_match("|([^<]+)<([^>]+)>|", $value, $matches);
68 $info['author'][] = ['name' => $matches[1], 'link' => $matches[2]];
70 $info['author'][] = ['name' => $value];
72 } elseif ($key == "maintainer") {
73 $result = preg_match("|([^<]+)<([^>]+)>|", $value, $matches);
75 $info['maintainer'][] = ['name' => $matches[1], 'link' => $matches[2]];
77 $info['maintainer'][] = ['name' => $value];
79 } elseif (array_key_exists($key, $info)) {
89 * @brief Returns the theme's screenshot.
91 * The screenshot is expected as view/theme/$theme/screenshot.[png|jpg].
93 * @param string $theme The name of the theme
95 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
97 public static function getScreenshot($theme)
99 $exts = ['.png', '.jpg'];
100 foreach ($exts as $ext) {
101 if (file_exists('view/theme/' . $theme . '/screenshot' . $ext)) {
102 return(System::baseUrl() . '/view/theme/' . $theme . '/screenshot' . $ext);
105 return(System::baseUrl() . '/images/blank.png');
108 // install and uninstall theme
109 public static function uninstall($theme)
111 Logger::log("Addons: uninstalling theme " . $theme);
113 include_once "view/theme/$theme/theme.php";
114 if (function_exists("{$theme}_uninstall")) {
115 $func = "{$theme}_uninstall";
120 public static function install($theme)
122 // silently fail if theme was removed
124 if (!file_exists("view/theme/$theme/theme.php")) {
128 Logger::log("Addons: installing theme $theme");
130 include_once "view/theme/$theme/theme.php";
132 if (function_exists("{$theme}_install")) {
133 $func = "{$theme}_install";
137 Logger::log("Addons: FAILED installing theme $theme");
143 * @brief Get the full path to relevant theme files by filename
145 * This function search in the theme directory (and if not present in global theme directory)
146 * if there is a directory with the file extension and for a file with the given
149 * @param string $file Filename
150 * @param string $root Full root path
151 * @return string Path to the file or empty string if the file isn't found
152 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
154 public static function getPathForFile($file, $root = '')
156 $file = basename($file);
158 // Make sure $root ends with a slash / if it's not blank
159 if ($root !== '' && $root[strlen($root) - 1] !== '/') {
162 $theme_info = \get_app()->theme_info;
163 if (is_array($theme_info) && array_key_exists('extends', $theme_info)) {
164 $parent = $theme_info['extends'];
168 $theme = \get_app()->getCurrentTheme();
170 $ext = substr($file, strrpos($file, '.') + 1);
172 "{$root}view/theme/$thname/$ext/$file",
173 "{$root}view/theme/$parent/$ext/$file",
174 "{$root}view/$ext/$file",
176 foreach ($paths as $p) {
177 // strpos() is faster than strstr when checking if one string is in another (http://php.net/manual/en/function.strstr.php)
178 if (strpos($p, 'NOPATH') !== false) {
180 } elseif (file_exists($p)) {
188 * @brief Return relative path to theme stylesheet file
190 * Provide a sane default if nothing is chosen or the specified theme does not exist.
192 * @param string $theme Theme name
196 public static function getStylesheetPath($theme)
198 if (!file_exists('view/theme/' . $theme . '/style.php')) {
199 return 'view/theme/' . $theme . '/style.css';
202 $a = BaseObject::getApp();
206 $puid = Profile::getThemeUid($a);
208 $query_params['puid'] = $puid;
211 return 'view/theme/' . $theme . '/style.pcss' . (!empty($query_params) ? '?' . http_build_query($query_params) : '');