Subs-Themes.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. <?php
  2. /**
  3. * Helper file for handing themes.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines
  9. *
  10. * @copyright 2013 Simple Machines and individual contributors
  11. * @license http://www.simplemachines.org/about/smf/license.php BSD
  12. *
  13. * @version 2.1 Alpha 1
  14. */
  15. if (!defined('SMF'))
  16. die('No direct access...');
  17. function get_single_theme($id)
  18. {
  19. global $smcFunc, $context;
  20. // No data, no fun!
  21. if (empty($id))
  22. return false;
  23. $single = array(
  24. 'id' => $id,
  25. );
  26. $request = $smcFunc['db_query']('', '
  27. SELECT id_theme, variable, value
  28. FROM {db_prefix}themes
  29. WHERE variable IN ({string:theme_dir}, {string:theme_url}, {string:images_url}, {string:name}, {string:theme_layers}, {string:theme_templates}, {string:version}, {string:install_for})
  30. AND id_theme = {int:id_theme}
  31. AND id_member = {int:no_member}',
  32. array(
  33. 'id_theme' => $id,
  34. 'no_member' => 0,
  35. 'theme_dir' => 'theme_dir',
  36. 'images_url' => 'images_url',
  37. 'theme_url' => 'theme_url',
  38. 'name' => 'name',
  39. 'theme_layers' => 'theme_layers',
  40. 'theme_templates' => 'theme_templates',
  41. 'version' => 'version',
  42. 'install_for' => 'install_for',
  43. )
  44. );
  45. while ($row = $smcFunc['db_fetch_assoc']($request))
  46. $single[$row['variable']] = $row['value'];
  47. return $single;
  48. }
  49. function get_all_themes()
  50. {
  51. global $modSettings, $context, $smcFunc;
  52. // Make our known themes a little easier to work with.
  53. $knownThemes = !empty($modSettings['knownThemes']) ? explode(',',$modSettings['knownThemes']) : array();
  54. $request = $smcFunc['db_query']('', '
  55. SELECT id_theme, variable, value
  56. FROM {db_prefix}themes
  57. WHERE variable IN ({string:name}, {string:version}, {string:theme_dir}, {string:theme_url}, {string:images_url})
  58. AND id_member = {int:no_member}',
  59. array(
  60. 'no_member' => 0,
  61. 'name' => 'name',
  62. 'version' => 'version',
  63. 'theme_dir' => 'theme_dir',
  64. 'theme_url' => 'theme_url',
  65. 'images_url' => 'images_url',
  66. )
  67. );
  68. $context['themes'] = array();
  69. while ($row = $smcFunc['db_fetch_assoc']($request))
  70. {
  71. if (!isset($context['themes'][$row['id_theme']]))
  72. $context['themes'][$row['id_theme']] = array(
  73. 'id' => $row['id_theme'],
  74. 'name' => $row['value'],
  75. 'known' => in_array($row['id_theme'], $knownThemes),
  76. );
  77. $context['themes'][$row['id_theme']][$row['variable']] = $row['value'];
  78. }
  79. $smcFunc['db_free_result']($request);
  80. foreach ($context['themes'] as $i => $theme)
  81. {
  82. $context['themes'][$i]['theme_dir'] = realpath($context['themes'][$i]['theme_dir']);
  83. // Fetch the version if there isn't one stored on the DB. @todo get it from the .xml file.
  84. if (empty($context['themes'][$i]['version']) && file_exists($context['themes'][$i]['theme_dir'] . '/index.template.php'))
  85. {
  86. // Fetch the header... a good 256 bytes should be more than enough.
  87. $fp = fopen($context['themes'][$i]['theme_dir'] . '/index.template.php', 'rb');
  88. $header = fread($fp, 256);
  89. fclose($fp);
  90. // Can we find a version comment, at all?
  91. if (preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $header, $match) == 1)
  92. $context['themes'][$i]['version'] = $match[1];
  93. }
  94. $context['themes'][$i]['valid_path'] = file_exists($context['themes'][$i]['theme_dir']) && is_dir($context['themes'][$i]['theme_dir']);
  95. }
  96. return $context['themes'];
  97. }
  98. function get_theme_info($path)
  99. {
  100. global $sourcedir, $forum_version, $explicit_images;
  101. if (empty($path))
  102. return false;
  103. $xml_data = array();
  104. $explicit_images = false;
  105. // Parse theme-info.xml into an xmlArray.
  106. require_once($sourcedir . '/Class-Package.php');
  107. $theme_info_xml = new xmlArray(file_get_contents($path . '/theme_info.xml'));
  108. // Error message, there isn't any valid info.
  109. if (!$theme_info_xml->exists('theme-info[0]'))
  110. fatal_lang_error('package_get_error_packageinfo_corrupt', false);
  111. // Check for compatibility with 2.1 or greater.
  112. if (!$theme_info_xml->exists('theme-info/install'))
  113. fatal_lang_error('package_get_error_theme_not_compatible', false, $forum_version);
  114. // So, we have an install tag which is cool and stuff but we also need to check it and match your current SMF version...
  115. $the_version = strtr($forum_version, array('SMF ' => ''));
  116. $install_versions = $theme_info_xml->path('theme-info/install/@for');
  117. // The theme isn't compatible with the current SMF version.
  118. if (!$install_versions || !matchPackageVersion($the_version, $install_versions))
  119. fatal_lang_error('package_get_error_theme_not_compatible', false, $forum_version);
  120. $theme_info_xml = $theme_info_xml->path('theme-info[0]');
  121. $theme_info_xml = $theme_info_xml->to_array();
  122. $xml_elements = array(
  123. 'name' => 'name',
  124. 'theme_layers' => 'layers',
  125. 'theme_templates' => 'templates',
  126. 'based_on' => 'based-on',
  127. 'version' => 'version',
  128. );
  129. // Assign the values to be stored.
  130. foreach ($xml_elements as $var => $name)
  131. if (!empty($theme_info_xml[$name]))
  132. $xml_data[$var] = $theme_info_xml[$name];
  133. if (!empty($theme_info_xml['images']))
  134. {
  135. $xml_data['images_url'] = $path . '/' . $theme_info_xml['images'];
  136. $explicit_images = true;
  137. }
  138. if (!empty($theme_info_xml['extra']))
  139. $xml_data += unserialize($theme_info_xml['extra']);
  140. return $xml_data;
  141. }
  142. function theme_install($to_install = array())
  143. {
  144. global $sourcedir, $txt, $context, $boarddir, $boardurl;
  145. global $themedir, $themeurl, $explicit_images;
  146. // External use? no problem!
  147. if ($to_install)
  148. $context['to_install'] = $to_install;
  149. // We kinda need this and it should have been previously set.
  150. if (empty($context['to_install']))
  151. return false;
  152. // One last check.
  153. if ($context['to_install']['dir'] != '' && basename($context['to_install']['dir']) != 'Themes')
  154. return false;
  155. // Defaults.
  156. $context['to_install'] = array(
  157. 'theme_url' => $themeurl . '/' . basename($context['to_install']['dir']),
  158. );
  159. // This vars could have been set, it all depends from where are we coming.
  160. if (empty($context['to_install']['images_url']))
  161. $context['to_install']['images_url'] = $themeurl . '/' . basename($context['to_install']['dir']) . '/images';
  162. // Perhaps they are trying to install a mod, lets tell them nicely this is the wrong function.
  163. if (file_exists($context['to_install']['dir'] . '/package-info.xml'))
  164. {
  165. $txt['package_get_error_is_mod'] = str_replace('{MANAGEMODURL}', $scripturl . '?action=admin;area=packages;' . $context['session_var'] . '=' . $context['session_id'], $txt['package_get_error_is_mod']);
  166. fatal_lang_error('package_theme_upload_error_broken', false, $txt['package_get_error_is_mod']);
  167. }
  168. // OK, is this a newer version of an already installed theme?
  169. if (!empty($context['to_install']['version']))
  170. {
  171. $to_update = array();
  172. $request = $smcFunc['db_query']('', '
  173. SELECT th.value AS name, th.id_theme, th2.value AS version
  174. FROM {db_prefix}themes AS th
  175. INNER JOIN {db_prefix}themes AS th2 ON (th2.id_theme = th.id_theme
  176. AND th2.id_member = {int:no_member}
  177. AND th2.variable = {string:version})
  178. WHERE th.id_member = {int:no_member}
  179. AND th.variable = {string:name}
  180. AND th.value LIKE {string:name_value}
  181. LIMIT 1',
  182. array(
  183. 'no_member' => 0,
  184. 'name' => 'name',
  185. 'version' => 'version',
  186. 'name_value' => '%'. $context['to_install']['name'] .'%',
  187. )
  188. );
  189. $to_update = $smcFunc['db_fetch_assoc']($request);
  190. $smcFunc['db_free_result']($request);
  191. // Got something, lets figure it out what to do next.
  192. if (!empty($to_update) && !empty($to_update['version']))
  193. switch (compareVersions($context['to_install']['version'], $to_update['version']))
  194. {
  195. case 0: // This is exactly the same theme.
  196. case -1: // The one being installed is older than the one already installed.
  197. default: // Any other possible result.
  198. fatal_lang_error('package_get_error_theme_no_new_version', false, array($context['to_install']['version'], $to_update['version']));
  199. break;
  200. case 1: // Got a newer version, update the old entry.
  201. $smcFunc['db_query']('', '
  202. UPDATE {db_prefix}themes
  203. SET value = {string:new_value}
  204. WHERE variable = {string:version}
  205. AND id_theme = {int:id_theme}',
  206. array(
  207. 'new_value' => $context['to_install']['version'],
  208. 'version' => 'version',
  209. 'id_theme' => $to_update['id_theme'],
  210. )
  211. );
  212. // Do a redirect and set a nice updated message.
  213. return $to_update['id_theme'];
  214. break; // Just for reference.
  215. }
  216. }
  217. if (isset($context['to_install']['based_on']))
  218. {
  219. // No need for elaborated stuff when the theme is based on the default one.
  220. if ($context['to_install']['based_on'] == 'default')
  221. {
  222. $context['to_install']['theme_url'] = $settings['default_theme_url'];
  223. $context['to_install']['images_url'] = $settings['default_images_url'];
  224. }
  225. // Custom theme based on another custom theme, lets get some info.
  226. elseif ($context['to_install']['based_on'] != '')
  227. {
  228. $context['to_install']['based_on'] = preg_replace('~[^A-Za-z0-9\-_ ]~', '', $context['to_install']['based_on']);
  229. $request = $smcFunc['db_query']('', '
  230. SELECT th.value AS base_theme_dir, th2.value AS base_theme_url' . (!empty($explicit_images) ? '' : ', th3.value AS images_url') . '
  231. FROM {db_prefix}themes AS th
  232. INNER JOIN {db_prefix}themes AS th2 ON (th2.id_theme = th.id_theme
  233. AND th2.id_member = {int:no_member}
  234. AND th2.variable = {string:theme_url})' . (!empty($explicit_images) ? '' : '
  235. INNER JOIN {db_prefix}themes AS th3 ON (th3.id_theme = th.id_theme
  236. AND th3.id_member = {int:no_member}
  237. AND th3.variable = {string:images_url})') . '
  238. WHERE th.id_member = {int:no_member}
  239. AND (th.value LIKE {string:based_on} OR th.value LIKE {string:based_on_path})
  240. AND th.variable = {string:theme_dir}
  241. LIMIT 1',
  242. array(
  243. 'no_member' => 0,
  244. 'theme_url' => 'theme_url',
  245. 'images_url' => 'images_url',
  246. 'theme_dir' => 'theme_dir',
  247. 'based_on' => '%/' . $context['to_install']['based_on'],
  248. 'based_on_path' => '%' . "\\" . $context['to_install']['based_on'],
  249. )
  250. );
  251. $temp = $smcFunc['db_fetch_assoc']($request);
  252. $smcFunc['db_free_result']($request);
  253. // Found the based on theme info, add it to the current one being installed.
  254. if (is_array($temp))
  255. {
  256. $context['to_install'] = $temp + $context['to_install'];
  257. if (empty($explicit_images) && !empty($context['to_install']['base_theme_url']))
  258. $context['to_install']['theme_url'] = $context['to_install']['base_theme_url'];
  259. }
  260. // Nope, sorry, couldn't find any theme already installed.
  261. else
  262. fatal_lang_error('package_get_error_theme_no_based_on_found', false, $context['to_install']['based_on']);
  263. }
  264. unset($context['to_install']['based_on']);
  265. }
  266. // Find the newest id_theme.
  267. $result = $smcFunc['db_query']('', '
  268. SELECT MAX(id_theme)
  269. FROM {db_prefix}themes',
  270. array(
  271. )
  272. );
  273. list ($id_theme) = $smcFunc['db_fetch_row']($result);
  274. $smcFunc['db_free_result']($result);
  275. // This will be theme number...
  276. $id_theme++;
  277. $inserts = array();
  278. foreach ($context['to_install'] as $var => $val)
  279. $inserts[] = array($id_theme, $var, $val);
  280. if (!empty($inserts))
  281. $smcFunc['db_insert']('insert',
  282. '{db_prefix}themes',
  283. array('id_theme' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'),
  284. $inserts,
  285. array('id_theme', 'variable')
  286. );
  287. updateSettings(array('knownThemes' => strtr($modSettings['knownThemes'] . ',' . $id_theme, array(',,' => ','))));
  288. return $id_theme;
  289. }
  290. ?>