Subs-Themes.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  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}, {string:based_on}, {string:enable})
  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. 'based_on' => 'based_on',
  44. 'enable' => 'enable',
  45. )
  46. );
  47. while ($row = $smcFunc['db_fetch_assoc']($request))
  48. $single[$row['variable']] = $row['value'];
  49. return $single;
  50. }
  51. function get_all_themes()
  52. {
  53. global $modSettings, $context, $smcFunc;
  54. // Make our known themes a little easier to work with.
  55. $knownThemes = !empty($modSettings['knownThemes']) ? explode(',',$modSettings['knownThemes']) : array();
  56. $request = $smcFunc['db_query']('', '
  57. SELECT id_theme, variable, value
  58. FROM {db_prefix}themes
  59. 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}, {string:based_on}, {string:enable})
  60. AND id_member = {int:no_member}',
  61. array(
  62. 'no_member' => 0,
  63. 'theme_dir' => 'theme_dir',
  64. 'images_url' => 'images_url',
  65. 'theme_url' => 'theme_url',
  66. 'name' => 'name',
  67. 'theme_layers' => 'theme_layers',
  68. 'theme_templates' => 'theme_templates',
  69. 'version' => 'version',
  70. 'install_for' => 'install_for',
  71. 'based_on' => 'based_on',
  72. 'enable' => 'enable',
  73. )
  74. );
  75. $context['themes'] = array();
  76. while ($row = $smcFunc['db_fetch_assoc']($request))
  77. {
  78. if (!isset($context['themes'][$row['id_theme']]))
  79. $context['themes'][$row['id_theme']] = array(
  80. 'id' => $row['id_theme'],
  81. 'name' => $row['value'],
  82. 'known' => in_array($row['id_theme'], $knownThemes),
  83. );
  84. $context['themes'][$row['id_theme']][$row['variable']] = $row['value'];
  85. }
  86. $smcFunc['db_free_result']($request);
  87. foreach ($context['themes'] as $i => $theme)
  88. {
  89. $context['themes'][$i]['theme_dir'] = realpath($context['themes'][$i]['theme_dir']);
  90. // Fetch some more info directly form the xml file.
  91. if (file_exists($context['themes'][$i]['theme_dir'] . '/theme_info.xml'))
  92. $context['themes'][$i] += get_theme_info($context['themes'][$i]['theme_dir']);}
  93. $context['themes'][$i]['valid_path'] = file_exists($context['themes'][$i]['theme_dir']) && is_dir($context['themes'][$i]['theme_dir']);
  94. }
  95. return $context['themes'];
  96. }
  97. function get_theme_info($path)
  98. {
  99. global $sourcedir, $forum_version, $txt, $scripturl, $context;
  100. global $explicit_images;
  101. if (empty($path))
  102. return false;
  103. $xml_data = array();
  104. $explicit_images = false;
  105. // Perhaps they are trying to install a mod, lets tell them nicely this is the wrong function.
  106. if (file_exists($path . '/package-info.xml'))
  107. {
  108. loadLanguage('Errors');
  109. // We need to delete the dir otherwise the next time you try to install a theme you will get the same error.
  110. remove_dir($path);
  111. $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']);
  112. fatal_lang_error('package_theme_upload_error_broken', false, $txt['package_get_error_is_mod']);
  113. }
  114. // Parse theme-info.xml into an xmlArray.
  115. require_once($sourcedir . '/Class-Package.php');
  116. $theme_info_xml = new xmlArray(file_get_contents($path . '/theme_info.xml'));
  117. // Error message, there isn't any valid info.
  118. if (!$theme_info_xml->exists('theme-info[0]'))
  119. {
  120. remove_dir($path);
  121. fatal_lang_error('package_get_error_packageinfo_corrupt', false);
  122. }
  123. // Check for compatibility with 2.1 or greater.
  124. if (!$theme_info_xml->exists('theme-info/install'))
  125. {
  126. remove_dir($path);
  127. fatal_lang_error('package_get_error_theme_not_compatible', false, $forum_version);
  128. }
  129. // So, we have an install tag which is cool and stuff but we also need to check it and match your current SMF version...
  130. $the_version = strtr($forum_version, array('SMF ' => ''));
  131. $install_versions = $theme_info_xml->path('theme-info/install/@for');
  132. // The theme isn't compatible with the current SMF version.
  133. if (!$install_versions || !matchPackageVersion($the_version, $install_versions))
  134. {
  135. remove_dir($path);
  136. fatal_lang_error('package_get_error_theme_not_compatible', false, $forum_version);
  137. }
  138. $theme_info_xml = $theme_info_xml->path('theme-info[0]');
  139. $theme_info_xml = $theme_info_xml->to_array();
  140. $xml_elements = array(
  141. 'theme_layers' => 'layers',
  142. 'theme_templates' => 'templates',
  143. 'based_on' => 'based-on',
  144. 'version' => 'version',
  145. );
  146. // Assign the values to be stored.
  147. foreach ($xml_elements as $var => $name)
  148. if (!empty($theme_info_xml[$name]))
  149. $xml_data[$var] = $theme_info_xml[$name];
  150. // Add the supported versions.
  151. $xml_data['install_for'] = $install_versions;
  152. // Overwrite the default images folder.
  153. if (!empty($theme_info_xml['images']))
  154. {
  155. $xml_data['images_url'] = $path . '/' . $theme_info_xml['images'];
  156. $explicit_images = true;
  157. }
  158. if (!empty($theme_info_xml['extra']))
  159. $xml_data += unserialize($theme_info_xml['extra']);
  160. return $xml_data;
  161. }
  162. function theme_install($to_install = array())
  163. {
  164. global $smcFunc, $context, $themedir, $themeurl, $modSettings;
  165. global $settings, $explicit_images;
  166. // External use? no problem!
  167. if ($to_install)
  168. $context['to_install'] = $to_install;
  169. // One last check.
  170. if (empty($context['to_install']['theme_dir']) || basename($context['to_install']['theme_dir']) == 'Themes')
  171. fatal_lang_error('theme_install_invalid_dir', false);
  172. // OK, is this a newer version of an already installed theme?
  173. if (!empty($context['to_install']['version']))
  174. {
  175. $to_update = array();
  176. $request = $smcFunc['db_query']('', '
  177. SELECT th.value AS name, th.id_theme, th2.value AS version
  178. FROM {db_prefix}themes AS th
  179. INNER JOIN {db_prefix}themes AS th2 ON (th2.id_theme = th.id_theme
  180. AND th2.id_member = {int:no_member}
  181. AND th2.variable = {string:version})
  182. WHERE th.id_member = {int:no_member}
  183. AND th.variable = {string:name}
  184. AND th.value LIKE {string:name_value}
  185. LIMIT 1',
  186. array(
  187. 'no_member' => 0,
  188. 'name' => 'name',
  189. 'version' => 'version',
  190. 'name_value' => '%'. $context['to_install']['name'] .'%',
  191. )
  192. );
  193. $to_update = $smcFunc['db_fetch_assoc']($request);
  194. $smcFunc['db_free_result']($request);
  195. // Got something, lets figure it out what to do next.
  196. if (!empty($to_update) && !empty($to_update['version']))
  197. switch (compareVersions($context['to_install']['version'], $to_update['version']))
  198. {
  199. case 0: // This is exactly the same theme.
  200. case -1: // The one being installed is older than the one already installed.
  201. default: // Any other possible result.
  202. fatal_lang_error('package_get_error_theme_no_new_version', false, array($context['to_install']['version'], $to_update['version']));
  203. break;
  204. case 1: // Got a newer version, update the old entry.
  205. $smcFunc['db_query']('', '
  206. UPDATE {db_prefix}themes
  207. SET value = {string:new_value}
  208. WHERE variable = {string:version}
  209. AND id_theme = {int:id_theme}',
  210. array(
  211. 'new_value' => $context['to_install']['version'],
  212. 'version' => 'version',
  213. 'id_theme' => $to_update['id_theme'],
  214. )
  215. );
  216. // Done with the update, tell the user about it.
  217. $context['to_install']['updated'] = true;
  218. $context['to_install']['id'] = $to_update['id_theme'];
  219. return $context['to_install'];
  220. break; // Just for reference.
  221. }
  222. }
  223. if (!empty($context['to_install']['based_on']))
  224. {
  225. // No need for elaborated stuff when the theme is based on the default one.
  226. if ($context['to_install']['based_on'] == 'default')
  227. {
  228. $context['to_install']['theme_url'] = $settings['default_theme_url'];
  229. $context['to_install']['images_url'] = $settings['default_images_url'];
  230. }
  231. // Custom theme based on another custom theme, lets get some info.
  232. elseif ($context['to_install']['based_on'] != '')
  233. {
  234. $context['to_install']['based_on'] = preg_replace('~[^A-Za-z0-9\-_ ]~', '', $context['to_install']['based_on']);
  235. $request = $smcFunc['db_query']('', '
  236. SELECT th.value AS base_theme_dir, th2.value AS base_theme_url' . (!empty($explicit_images) ? '' : ', th3.value AS images_url') . '
  237. FROM {db_prefix}themes AS th
  238. INNER JOIN {db_prefix}themes AS th2 ON (th2.id_theme = th.id_theme
  239. AND th2.id_member = {int:no_member}
  240. AND th2.variable = {string:theme_url})' . (!empty($explicit_images) ? '' : '
  241. INNER JOIN {db_prefix}themes AS th3 ON (th3.id_theme = th.id_theme
  242. AND th3.id_member = {int:no_member}
  243. AND th3.variable = {string:images_url})') . '
  244. WHERE th.id_member = {int:no_member}
  245. AND (th.value LIKE {string:based_on} OR th.value LIKE {string:based_on_path})
  246. AND th.variable = {string:theme_dir}
  247. LIMIT 1',
  248. array(
  249. 'no_member' => 0,
  250. 'theme_url' => 'theme_url',
  251. 'images_url' => 'images_url',
  252. 'theme_dir' => 'theme_dir',
  253. 'based_on' => '%/' . $context['to_install']['based_on'],
  254. 'based_on_path' => '%' . "\\" . $context['to_install']['based_on'],
  255. )
  256. );
  257. $temp = $smcFunc['db_fetch_assoc']($request);
  258. $smcFunc['db_free_result']($request);
  259. // Found the based on theme info, add it to the current one being installed.
  260. if (is_array($temp))
  261. {
  262. $context['to_install'] = $temp + $context['to_install'];
  263. if (empty($explicit_images) && !empty($context['to_install']['base_theme_url']))
  264. $context['to_install']['theme_url'] = $context['to_install']['base_theme_url'];
  265. }
  266. // Nope, sorry, couldn't find any theme already installed.
  267. else
  268. fatal_lang_error('package_get_error_theme_no_based_on_found', false, $context['to_install']['based_on']);
  269. }
  270. unset($context['to_install']['based_on']);
  271. }
  272. // Find the newest id_theme.
  273. $result = $smcFunc['db_query']('', '
  274. SELECT MAX(id_theme)
  275. FROM {db_prefix}themes',
  276. array(
  277. )
  278. );
  279. list ($id_theme) = $smcFunc['db_fetch_row']($result);
  280. $smcFunc['db_free_result']($result);
  281. // This will be theme number...
  282. $id_theme++;
  283. $inserts = array();
  284. foreach ($context['to_install'] as $var => $val)
  285. $inserts[] = array($id_theme, $var, $val);
  286. if (!empty($inserts))
  287. $smcFunc['db_insert']('insert',
  288. '{db_prefix}themes',
  289. array('id_theme' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'),
  290. $inserts,
  291. array('id_theme', 'variable')
  292. );
  293. updateSettings(array('knownThemes' => strtr($modSettings['knownThemes'] . ',' . $id_theme, array(',,' => ','))));
  294. return $id_theme;
  295. }
  296. function remove_dir($path)
  297. {
  298. if (empty($path))
  299. return false;
  300. if (is_dir($path))
  301. {
  302. $objects = scandir($path);
  303. foreach ($objects as $object)
  304. if ($object != '.' && $object != '..')
  305. {
  306. if (filetype($path .'/'. $object) == 'dir')
  307. remove_dir($path .'/'.$object);
  308. else
  309. unlink($path .'/'. $object);
  310. }
  311. }
  312. reset($objects);
  313. rmdir($path);
  314. }
  315. function disable_theme($themeID)
  316. {
  317. global $smcFunc, $modSetting;
  318. if (empty($themeID))
  319. return false;
  320. $known = explode(',', $modSettings['knownThemes']);
  321. // Remove it from the list of known themes.
  322. for ($i = 0, $n = count($known); $i < $n; $i++)
  323. if ($known[$i] == $themeID)
  324. unset($known[$i]);
  325. // Remove it from the themes table.
  326. $smcFunc['db_query']('', '
  327. DELETE FROM {db_prefix}themes
  328. WHERE id_theme = {int:current_theme}',
  329. array(
  330. 'current_theme' => $themeID,
  331. )
  332. );
  333. // Update users preferences.
  334. $smcFunc['db_query']('', '
  335. UPDATE {db_prefix}members
  336. SET id_theme = {int:default_theme}
  337. WHERE id_theme = {int:current_theme}',
  338. array(
  339. 'default_theme' => 0,
  340. 'current_theme' => $themeID,
  341. )
  342. );
  343. // Some boards may have it as preferred theme.
  344. $smcFunc['db_query']('', '
  345. UPDATE {db_prefix}boards
  346. SET id_theme = {int:default_theme}
  347. WHERE id_theme = {int:current_theme}',
  348. array(
  349. 'default_theme' => 0,
  350. 'current_theme' => $themeID,
  351. )
  352. );
  353. $known = strtr(implode(',', $known), array(',,' => ','));
  354. // Fix it if the theme was the overall default theme.
  355. if ($modSettings['theme_guests'] == $themeID)
  356. updateSettings(array('theme_guests' => '1', 'knownThemes' => $known));
  357. else
  358. updateSettings(array('knownThemes' => $known));
  359. return true;
  360. }
  361. ?>