Fix formatting in Core\Theme

pull/4951/head
Hypolite Petovan 2018-04-28 18:28:23 -04:00
parent 66e5586d21
commit acbc733dce
1 changed files with 153 additions and 159 deletions

View File

@ -1,7 +1,9 @@
<?php <?php
/** /**
* @file src/Core/Theme.php * @file src/Core/Theme.php
*/ */
namespace Friendica\Core; namespace Friendica\Core;
use Friendica\Core\System; use Friendica\Core\System;
@ -13,177 +15,169 @@ require_once 'boot.php';
*/ */
class Theme class Theme
{ {
/** /**
* @brief Parse theme comment in search of theme infos. * @brief Parse theme comment in search of theme infos.
* *
* like * like
* \code * \code
* ..* Name: My Theme * ..* Name: My Theme
* * Description: My Cool Theme * * Description: My Cool Theme
* . * Version: 1.2.3 * . * Version: 1.2.3
* * Author: John <profile url> * * Author: John <profile url>
* * Maintainer: Jane <profile url> * * Maintainer: Jane <profile url>
* * * *
* \endcode * \endcode
* @param string $theme the name of the theme * @param string $theme the name of the theme
* @return array * @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) if (!is_file("view/theme/$theme/theme.php")) {
{ return $info;
$info=[ }
'name' => $theme,
'description' => "",
'author' => [],
'maintainer' => [],
'version' => "",
'credits' => "",
'experimental' => false,
'unsupported' => false
];
if (file_exists("view/theme/$theme/experimental")) $a = get_app();
$info['experimental'] = true; $stamp1 = microtime(true);
if (file_exists("view/theme/$theme/unsupported")) $theme_file = file_get_contents("view/theme/$theme/theme.php");
$info['unsupported'] = true; $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(); if ($result) {
$stamp1 = microtime(true); $comment_lines = explode("\n", $matches[0]);
$f = file_get_contents("view/theme/$theme/theme.php"); foreach ($comment_lines as $comment_line) {
$a->save_timestamp($stamp1, "file"); $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) { // install and uninstall theme
$ll = explode("\n", $m[0]); public static function uninstall($theme)
foreach ( $ll as $l ) { {
$l = trim($l,"\t\n\r */"); logger("Addons: uninstalling theme " . $theme);
if ($l != "") {
list($k, $v) = array_map("trim", explode(":", $l, 2));
$k= strtolower($k);
if ($k == "author") {
$r=preg_match("|([^<]+)<([^>]+)>|", $v, $m); include_once "view/theme/$theme/theme.php";
if ($r) { if (function_exists("{$theme}_uninstall")) {
$info['author'][] = ['name'=>$m[1], 'link'=>$m[2]]; $func = "{$theme}_uninstall";
} else { $func();
$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;
}
/** public static function install($theme)
* @brief Returns the theme's screenshot. {
* // silently fail if theme was removed
* 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');
}
// install and uninstall theme if (!file_exists("view/theme/$theme/theme.php")) {
public static function uninstall($theme) return false;
{ }
logger("Addons: uninstalling theme " . $theme);
include_once("view/theme/$theme/theme.php"); logger("Addons: installing theme $theme");
if (function_exists("{$theme}_uninstall")) {
$func = "{$theme}_uninstall";
$func();
}
}
public static function install($theme) include_once "view/theme/$theme/theme.php";
{
// silently fail if theme was removed
if (! file_exists("view/theme/$theme/theme.php")) { if (function_exists("{$theme}_install")) {
return false; $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] !== '/') {
if (function_exists("{$theme}_install")) { $root = $root . '/';
$func = "{$theme}_install"; }
$func(); $theme_info = get_app()->theme_info;
return true; if (is_array($theme_info) && array_key_exists('extends', $theme_info)) {
} else { $parent = $theme_info['extends'];
logger("Addons: FAILED installing theme $theme"); } else {
return false; $parent = 'NOPATH';
} }
$theme = current_theme();
} $thname = $theme;
$ext = substr($file, strrpos($file, '.') + 1);
/** $paths = [
* @brief Get the full path to relevant theme files by filename "{$root}view/theme/$thname/$ext/$file",
* "{$root}view/theme/$parent/$ext/$file",
* This function search in the theme directory (and if not present in global theme directory) "{$root}view/$ext/$file",
* if there is a directory with the file extension and for a file with the given ];
* filename. 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)
* @param string $file Filename if (strpos($p, 'NOPATH') !== false) {
* @param string $root Full root path continue;
* @return string Path to the file or empty string if the file isn't found } elseif (file_exists($p)) {
*/ return $p;
public static function getPathForFile($file, $root = '') }
{ }
$file = basename($file); return '';
}
// 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 '';
}
} }