PageRenderTime 174ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 1ms

/Sources/Packages.php

https://github.com/smf-portal/SMF2.1
PHP | 2669 lines | 2140 code | 259 blank | 270 comment | 426 complexity | 150a0a546f8c3d2987075728e2ede4e3 MD5 | raw file
  1. <?php
  2. /**
  3. * This file is the main Package Manager.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2012 Simple Machines
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('Hacking attempt...');
  16. /**
  17. * This is the notoriously defunct package manager..... :/.
  18. */
  19. function Packages()
  20. {
  21. global $txt, $scripturl, $sourcedir, $context;
  22. // @todo Remove this!
  23. if (isset($_GET['get']) || isset($_GET['pgdownload']))
  24. {
  25. require_once($sourcedir . '/PackageGet.php');
  26. return PackageGet();
  27. }
  28. isAllowedTo('admin_forum');
  29. // Load all the basic stuff.
  30. require_once($sourcedir . '/Subs-Package.php');
  31. loadLanguage('Packages');
  32. loadTemplate('Packages', 'admin');
  33. $context['page_title'] = $txt['package'];
  34. // Delegation makes the world... that is, the package manager go 'round.
  35. $subActions = array(
  36. 'browse' => 'PackageBrowse',
  37. 'remove' => 'PackageRemove',
  38. 'list' => 'PackageList',
  39. 'ftptest' => 'PackageFTPTest',
  40. 'install' => 'PackageInstallTest',
  41. 'install2' => 'PackageInstall',
  42. 'uninstall' => 'PackageInstallTest',
  43. 'uninstall2' => 'PackageInstall',
  44. 'installed' => 'PackageBrowse',
  45. 'options' => 'PackageOptions',
  46. 'perms' => 'PackagePermissions',
  47. 'flush' => 'FlushInstall',
  48. 'examine' => 'ExamineFile',
  49. 'showoperations' => 'ViewOperations',
  50. );
  51. // Work out exactly who it is we are calling.
  52. if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]))
  53. $context['sub_action'] = $_REQUEST['sa'];
  54. else
  55. $context['sub_action'] = 'browse';
  56. // Set up some tabs...
  57. $context[$context['admin_menu_name']]['tab_data'] = array(
  58. 'title' => $txt['package_manager'],
  59. // @todo 'help' => 'registrations',
  60. 'description' => $txt['package_manager_desc'],
  61. 'tabs' => array(
  62. 'browse' => array(
  63. ),
  64. 'packageget' => array(
  65. 'description' => $txt['download_packages_desc'],
  66. ),
  67. 'installed' => array(
  68. 'description' => $txt['installed_packages_desc'],
  69. ),
  70. 'perms' => array(
  71. 'description' => $txt['package_file_perms_desc'],
  72. ),
  73. 'options' => array(
  74. 'description' => $txt['package_install_options_desc'],
  75. ),
  76. ),
  77. );
  78. // Call the function we're handing control to.
  79. $subActions[$context['sub_action']]();
  80. }
  81. /**
  82. * Test install a package.
  83. */
  84. function PackageInstallTest()
  85. {
  86. global $boarddir, $txt, $context, $scripturl, $sourcedir, $modSettings, $smcFunc, $settings;
  87. // You have to specify a file!!
  88. if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
  89. redirectexit('action=admin;area=packages');
  90. $context['filename'] = preg_replace('~[\.]+~', '.', $_REQUEST['package']);
  91. // Do we have an existing id, for uninstalls and the like.
  92. $context['install_id'] = isset($_REQUEST['pid']) ? (int) $_REQUEST['pid'] : 0;
  93. require_once($sourcedir . '/Subs-Package.php');
  94. // Load up the package FTP information?
  95. create_chmod_control();
  96. // Make sure temp directory exists and is empty.
  97. if (file_exists($boarddir . '/Packages/temp'))
  98. deltree($boarddir . '/Packages/temp', false);
  99. if (!mktree($boarddir . '/Packages/temp', 0755))
  100. {
  101. deltree($boarddir . '/Packages/temp', false);
  102. if (!mktree($boarddir . '/Packages/temp', 0777))
  103. {
  104. deltree($boarddir . '/Packages/temp', false);
  105. create_chmod_control(array($boarddir . '/Packages/temp/delme.tmp'), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=' . $_REQUEST['sa'] . ';package=' . $_REQUEST['package'], 'crash_on_error' => true));
  106. deltree($boarddir . '/Packages/temp', false);
  107. if (!mktree($boarddir . '/Packages/temp', 0777))
  108. fatal_lang_error('package_cant_download', false);
  109. }
  110. }
  111. $context['uninstalling'] = $_REQUEST['sa'] == 'uninstall';
  112. // Change our last link tree item for more information on this Packages area.
  113. $context['linktree'][count($context['linktree']) - 1] = array(
  114. 'url' => $scripturl . '?action=admin;area=packages;sa=browse',
  115. 'name' => $context['uninstalling'] ? $txt['package_uninstall_actions'] : $txt['install_actions']
  116. );
  117. $context['page_title'] .= ' - ' . ($context['uninstalling'] ? $txt['package_uninstall_actions'] : $txt['install_actions']);
  118. $context['sub_template'] = 'view_package';
  119. if (!file_exists($boarddir . '/Packages/' . $context['filename']))
  120. {
  121. deltree($boarddir . '/Packages/temp');
  122. fatal_lang_error('package_no_file', false);
  123. }
  124. // Extract the files so we can get things like the readme, etc.
  125. if (is_file($boarddir . '/Packages/' . $context['filename']))
  126. {
  127. $context['extracted_files'] = read_tgz_file($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  128. if ($context['extracted_files'] && !file_exists($boarddir . '/Packages/temp/package-info.xml'))
  129. foreach ($context['extracted_files'] as $file)
  130. if (basename($file['filename']) == 'package-info.xml')
  131. {
  132. $context['base_path'] = dirname($file['filename']) . '/';
  133. break;
  134. }
  135. if (!isset($context['base_path']))
  136. $context['base_path'] = '';
  137. }
  138. elseif (is_dir($boarddir . '/Packages/' . $context['filename']))
  139. {
  140. copytree($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  141. $context['extracted_files'] = listtree($boarddir . '/Packages/temp');
  142. $context['base_path'] = '';
  143. }
  144. else
  145. fatal_lang_error('no_access', false);
  146. // Load up any custom themes we may want to install into...
  147. $request = $smcFunc['db_query']('', '
  148. SELECT id_theme, variable, value
  149. FROM {db_prefix}themes
  150. WHERE (id_theme = {int:default_theme} OR id_theme IN ({array_int:known_theme_list}))
  151. AND variable IN ({string:name}, {string:theme_dir})',
  152. array(
  153. 'known_theme_list' => explode(',', $modSettings['knownThemes']),
  154. 'default_theme' => 1,
  155. 'name' => 'name',
  156. 'theme_dir' => 'theme_dir',
  157. )
  158. );
  159. $theme_paths = array();
  160. while ($row = $smcFunc['db_fetch_assoc']($request))
  161. $theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
  162. $smcFunc['db_free_result']($request);
  163. // Get the package info...
  164. $packageInfo = getPackageInfo($context['filename']);
  165. if (!is_array($packageInfo))
  166. fatal_lang_error($packageInfo);
  167. $packageInfo['filename'] = $context['filename'];
  168. $context['package_name'] = isset($packageInfo['name']) ? $packageInfo['name'] : $context['filename'];
  169. // Set the type of extraction...
  170. $context['extract_type'] = isset($packageInfo['type']) ? $packageInfo['type'] : 'modification';
  171. // The mod isn't installed.... unless proven otherwise.
  172. $context['is_installed'] = false;
  173. // See if it is installed?
  174. $request = $smcFunc['db_query']('', '
  175. SELECT version, themes_installed, db_changes
  176. FROM {db_prefix}log_packages
  177. WHERE package_id = {string:current_package}
  178. AND install_state != {int:not_installed}
  179. ORDER BY time_installed DESC
  180. LIMIT 1',
  181. array(
  182. 'not_installed' => 0,
  183. 'current_package' => $packageInfo['id'],
  184. )
  185. );
  186. while ($row = $smcFunc['db_fetch_assoc']($request))
  187. {
  188. $old_themes = explode(',', $row['themes_installed']);
  189. $old_version = $row['version'];
  190. $db_changes = empty($row['db_changes']) ? array() : unserialize($row['db_changes']);
  191. }
  192. $smcFunc['db_free_result']($request);
  193. $context['database_changes'] = array();
  194. if (isset($packageInfo['uninstall']['database']))
  195. $context['database_changes'][] = $txt['execute_database_changes'] . ' - ' . $packageInfo['uninstall']['database'];
  196. elseif (!empty($db_changes))
  197. {
  198. foreach ($db_changes as $change)
  199. {
  200. if (isset($change[2]) && isset($txt['package_db_' . $change[0]]))
  201. $context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1], $change[2]);
  202. elseif (isset($txt['package_db_' . $change[0]]))
  203. $context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1]);
  204. else
  205. $context['database_changes'][] = $change[0] . '-' . $change[1] . (isset($change[2]) ? '-' . $change[2] : '');
  206. }
  207. }
  208. // Uninstalling?
  209. if ($context['uninstalling'])
  210. {
  211. // Wait, it's not installed yet!
  212. if (!isset($old_version) && $context['uninstalling'])
  213. {
  214. deltree($boarddir . '/Packages/temp');
  215. fatal_lang_error('package_cant_uninstall', false);
  216. }
  217. $actions = parsePackageInfo($packageInfo['xml'], true, 'uninstall');
  218. // Gadzooks! There's no uninstaller at all!?
  219. if (empty($actions))
  220. {
  221. deltree($boarddir . '/Packages/temp');
  222. fatal_lang_error('package_uninstall_cannot', false);
  223. }
  224. // Can't edit the custom themes it's edited if you're unisntalling, they must be removed.
  225. $context['themes_locked'] = true;
  226. // Only let them uninstall themes it was installed into.
  227. foreach ($theme_paths as $id => $data)
  228. if ($id != 1 && !in_array($id, $old_themes))
  229. unset($theme_paths[$id]);
  230. }
  231. elseif (isset($old_version) && $old_version != $packageInfo['version'])
  232. {
  233. // Look for an upgrade...
  234. $actions = parsePackageInfo($packageInfo['xml'], true, 'upgrade', $old_version);
  235. // There was no upgrade....
  236. if (empty($actions))
  237. $context['is_installed'] = true;
  238. else
  239. {
  240. // Otherwise they can only upgrade themes from the first time around.
  241. foreach ($theme_paths as $id => $data)
  242. if ($id != 1 && !in_array($id, $old_themes))
  243. unset($theme_paths[$id]);
  244. }
  245. }
  246. elseif (isset($old_version) && $old_version == $packageInfo['version'])
  247. $context['is_installed'] = true;
  248. if (!isset($old_version) || $context['is_installed'])
  249. $actions = parsePackageInfo($packageInfo['xml'], true, 'install');
  250. $context['actions'] = array();
  251. $context['ftp_needed'] = false;
  252. $context['has_failure'] = false;
  253. $chmod_files = array();
  254. // no actions found, return so we can display an error
  255. if (empty($actions))
  256. return;
  257. // This will hold data about anything that can be installed in other themes.
  258. $themeFinds = array(
  259. 'candidates' => array(),
  260. 'other_themes' => array(),
  261. );
  262. // Now prepare things for the template.
  263. foreach ($actions as $action)
  264. {
  265. // Not failed until proven otherwise.
  266. $failed = false;
  267. $thisAction = array();
  268. if ($action['type'] == 'chmod')
  269. {
  270. $chmod_files[] = $action['filename'];
  271. continue;
  272. }
  273. elseif ($action['type'] == 'readme' || $action['type'] == 'license')
  274. {
  275. $type = 'package_' . $action['type'];
  276. if (file_exists($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']))
  277. $context[$type] = htmlspecialchars(trim(file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']), "\n\r"));
  278. elseif (file_exists($action['filename']))
  279. $context[$type] = htmlspecialchars(trim(file_get_contents($action['filename']), "\n\r"));
  280. if (!empty($action['parse_bbc']))
  281. {
  282. require_once($sourcedir . '/Subs-Post.php');
  283. preparsecode($context[$type]);
  284. $context[$type] = parse_bbc($context[$type]);
  285. }
  286. else
  287. $context[$type] = nl2br($context[$type]);
  288. continue;
  289. }
  290. // Don't show redirects.
  291. elseif ($action['type'] == 'redirect')
  292. continue;
  293. elseif ($action['type'] == 'error')
  294. {
  295. $context['has_failure'] = true;
  296. if (isset($action['error_msg']) && isset($action['error_var']))
  297. $context['failure_details'] = sprintf($txt['package_will_fail_' . $action['error_msg']], $action['error_var']);
  298. elseif (isset($action['error_msg']))
  299. $context['failure_details'] = isset($txt['package_will_fail_' . $action['error_msg']]) ? $txt['package_will_fail_' . $action['error_msg']] : $action['error_msg'];
  300. }
  301. elseif ($action['type'] == 'modification')
  302. {
  303. if (!file_exists($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']))
  304. {
  305. $context['has_failure'] = true;
  306. $context['actions'][] = array(
  307. 'type' => $txt['execute_modification'],
  308. 'action' => $smcFunc['htmlspecialchars'](strtr($action['filename'], array($boarddir => '.'))),
  309. 'description' => $txt['package_action_error'],
  310. 'failed' => true,
  311. );
  312. }
  313. else
  314. {
  315. if ($action['boardmod'])
  316. $mod_actions = parseBoardMod(@file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths);
  317. else
  318. $mod_actions = parseModification(@file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths);
  319. if (count($mod_actions) == 1 && isset($mod_actions[0]) && $mod_actions[0]['type'] == 'error' && $mod_actions[0]['filename'] == '-')
  320. $mod_actions[0]['filename'] = $action['filename'];
  321. foreach ($mod_actions as $key => $mod_action)
  322. {
  323. // Lets get the last section of the file name.
  324. if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php')
  325. $actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']);
  326. elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches))
  327. $actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']);
  328. else
  329. $actual_filename = $key;
  330. if ($mod_action['type'] == 'opened')
  331. $failed = false;
  332. elseif ($mod_action['type'] == 'failure')
  333. {
  334. if (empty($mod_action['is_custom']))
  335. $context['has_failure'] = true;
  336. $failed = true;
  337. }
  338. elseif ($mod_action['type'] == 'chmod')
  339. {
  340. $chmod_files[] = $mod_action['filename'];
  341. }
  342. elseif ($mod_action['type'] == 'saved')
  343. {
  344. if (!empty($mod_action['is_custom']))
  345. {
  346. if (!isset($context['theme_actions'][$mod_action['is_custom']]))
  347. $context['theme_actions'][$mod_action['is_custom']] = array(
  348. 'name' => $theme_paths[$mod_action['is_custom']]['name'],
  349. 'actions' => array(),
  350. 'has_failure' => $failed,
  351. );
  352. else
  353. $context['theme_actions'][$mod_action['is_custom']]['has_failure'] |= $failed;
  354. $context['theme_actions'][$mod_action['is_custom']]['actions'][$actual_filename] = array(
  355. 'type' => $txt['execute_modification'],
  356. 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
  357. 'description' => $failed ? $txt['package_action_failure'] : $txt['package_action_success'],
  358. 'failed' => $failed,
  359. );
  360. }
  361. elseif (!isset($context['actions'][$actual_filename]))
  362. {
  363. $context['actions'][$actual_filename] = array(
  364. 'type' => $txt['execute_modification'],
  365. 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
  366. 'description' => $failed ? $txt['package_action_failure'] : $txt['package_action_success'],
  367. 'failed' => $failed,
  368. );
  369. }
  370. else
  371. {
  372. $context['actions'][$actual_filename]['failed'] |= $failed;
  373. $context['actions'][$actual_filename]['description'] = $context['actions'][$actual_filename]['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'];
  374. }
  375. }
  376. elseif ($mod_action['type'] == 'skipping')
  377. {
  378. $context['actions'][$actual_filename] = array(
  379. 'type' => $txt['execute_modification'],
  380. 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
  381. 'description' => $txt['package_action_skipping']
  382. );
  383. }
  384. elseif ($mod_action['type'] == 'missing' && empty($mod_action['is_custom']))
  385. {
  386. $context['has_failure'] = true;
  387. $context['actions'][$actual_filename] = array(
  388. 'type' => $txt['execute_modification'],
  389. 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
  390. 'description' => $txt['package_action_missing'],
  391. 'failed' => true,
  392. );
  393. }
  394. elseif ($mod_action['type'] == 'error')
  395. $context['actions'][$actual_filename] = array(
  396. 'type' => $txt['execute_modification'],
  397. 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
  398. 'description' => $txt['package_action_error'],
  399. 'failed' => true,
  400. );
  401. }
  402. // We need to loop again just to get the operations down correctly.
  403. foreach ($mod_actions as $operation_key => $mod_action)
  404. {
  405. // Lets get the last section of the file name.
  406. if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php')
  407. $actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']);
  408. elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches))
  409. $actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']);
  410. else
  411. $actual_filename = $key;
  412. // We just need it for actual parse changes.
  413. if (!in_array($mod_action['type'], array('error', 'result', 'opened', 'saved', 'end', 'missing', 'skipping', 'chmod')))
  414. {
  415. if (empty($mod_action['is_custom']))
  416. $context['actions'][$actual_filename]['operations'][] = array(
  417. 'type' => $txt['execute_modification'],
  418. 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
  419. 'description' => $mod_action['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'],
  420. 'position' => $mod_action['position'],
  421. 'operation_key' => $operation_key,
  422. 'filename' => $action['filename'],
  423. 'is_boardmod' => $action['boardmod'],
  424. 'failed' => $mod_action['failed'],
  425. 'ignore_failure' => !empty($mod_action['ignore_failure']),
  426. );
  427. // Themes are under the saved type.
  428. if (isset($mod_action['is_custom']) && isset($context['theme_actions'][$mod_action['is_custom']]))
  429. $context['theme_actions'][$mod_action['is_custom']]['actions'][$actual_filename]['operations'][] = array(
  430. 'type' => $txt['execute_modification'],
  431. 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
  432. 'description' => $mod_action['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'],
  433. 'position' => $mod_action['position'],
  434. 'operation_key' => $operation_key,
  435. 'filename' => $action['filename'],
  436. 'is_boardmod' => $action['boardmod'],
  437. 'failed' => $mod_action['failed'],
  438. 'ignore_failure' => !empty($mod_action['ignore_failure']),
  439. );
  440. }
  441. }
  442. }
  443. }
  444. elseif ($action['type'] == 'code')
  445. {
  446. $thisAction = array(
  447. 'type' => $txt['execute_code'],
  448. 'action' => $smcFunc['htmlspecialchars']($action['filename']),
  449. );
  450. }
  451. elseif ($action['type'] == 'database')
  452. {
  453. $thisAction = array(
  454. 'type' => $txt['execute_database_changes'],
  455. 'action' => $smcFunc['htmlspecialchars']($action['filename']),
  456. );
  457. }
  458. elseif (in_array($action['type'], array('create-dir', 'create-file')))
  459. {
  460. $thisAction = array(
  461. 'type' => $txt['package_create'] . ' ' . ($action['type'] == 'create-dir' ? $txt['package_tree'] : $txt['package_file']),
  462. 'action' => $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.')))
  463. );
  464. }
  465. elseif ($action['type'] == 'hook')
  466. {
  467. $action['description'] = !isset($action['hook'], $action['function']) ? $txt['package_action_failure'] : $txt['package_action_success'];
  468. if (!isset($action['hook'], $action['function']))
  469. $context['has_failure'] = true;
  470. $thisAction = array(
  471. 'type' => $action['reverse'] ? $txt['execute_hook_remove'] : $txt['execute_hook_add'],
  472. 'action' => sprintf($txt['execute_hook_action'], $smcFunc['htmlspecialchars']($action['hook'])),
  473. );
  474. }
  475. elseif ($action['type'] == 'credits')
  476. {
  477. $thisAction = array(
  478. 'type' => $txt['execute_credits_add'],
  479. 'action' => sprintf($txt['execute_credits_action'], $smcFunc['htmlspecialchars']($action['title'])),
  480. );
  481. }
  482. elseif ($action['type'] == 'requires')
  483. {
  484. $installed = false;
  485. $version = true;
  486. // package missing required values?
  487. if (!isset($action['id']))
  488. $context['has_failure'] = true;
  489. else
  490. {
  491. // See if this dependancy is installed
  492. $request = $smcFunc['db_query']('', '
  493. SELECT version
  494. FROM {db_prefix}log_packages
  495. WHERE package_id = {string:current_package}
  496. AND install_state != {int:not_installed}
  497. ORDER BY time_installed DESC
  498. LIMIT 1',
  499. array(
  500. 'not_installed' => 0,
  501. 'current_package' => $action['id'],
  502. )
  503. );
  504. $installed = ($smcFunc['db_num_rows']($request) !== 0);
  505. if ($installed)
  506. list($version) = $smcFunc['db_fetch_row']($request);
  507. $smcFunc['db_free_result']($request);
  508. // do a version level check (if requested) in the most basic way
  509. $version = (isset($action['version']) ? $version == $action['version'] : true);
  510. }
  511. // Set success or failure information
  512. $action['description'] = ($installed && $version) ? $txt['package_action_success'] : $txt['package_action_failure'];
  513. $context['has_failure'] = !($installed && $version);
  514. $thisAction = array(
  515. 'type' => $txt['package_requires'],
  516. 'action' => $txt['package_check_for'] . ' ' . $action['id'] . (isset($action['version']) ? (' / ' . ($version ? $action['version'] : '<span class="error">' . $action['version'] . '</span>')) : ''),
  517. );
  518. }
  519. elseif (in_array($action['type'], array('require-dir', 'require-file')))
  520. {
  521. // Do this one...
  522. $thisAction = array(
  523. 'type' => $txt['package_extract'] . ' ' . ($action['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']),
  524. 'action' => $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.')))
  525. );
  526. // Could this be theme related?
  527. if (!empty($action['unparsed_destination']) && preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir|themes_dir)~i', $action['unparsed_destination'], $matches))
  528. {
  529. // Is the action already stated?
  530. $theme_action = !empty($action['theme_action']) && in_array($action['theme_action'], array('no', 'yes', 'auto')) ? $action['theme_action'] : 'auto';
  531. // If it's not auto do we think we have something we can act upon?
  532. if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir')))
  533. $theme_action = '';
  534. // ... or if it's auto do we even want to do anything?
  535. elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir')
  536. $theme_action = '';
  537. // So, we still want to do something?
  538. if ($theme_action != '')
  539. $themeFinds['candidates'][] = $action;
  540. // Otherwise is this is going into another theme record it.
  541. elseif ($matches[1] == 'themes_dir')
  542. $themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_destination']), array('\\' => '/')) . '/' . basename($action['filename']));
  543. }
  544. }
  545. elseif (in_array($action['type'], array('move-dir', 'move-file')))
  546. $thisAction = array(
  547. 'type' => $txt['package_move'] . ' ' . ($action['type'] == 'move-dir' ? $txt['package_tree'] : $txt['package_file']),
  548. 'action' => $smcFunc['htmlspecialchars'](strtr($action['source'], array($boarddir => '.'))) . ' => ' . $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.')))
  549. );
  550. elseif (in_array($action['type'], array('remove-dir', 'remove-file')))
  551. {
  552. $thisAction = array(
  553. 'type' => $txt['package_delete'] . ' ' . ($action['type'] == 'remove-dir' ? $txt['package_tree'] : $txt['package_file']),
  554. 'action' => $smcFunc['htmlspecialchars'](strtr($action['filename'], array($boarddir => '.')))
  555. );
  556. // Could this be theme related?
  557. if (!empty($action['unparsed_filename']) && preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir|themes_dir)~i', $action['unparsed_filename'], $matches))
  558. {
  559. // Is the action already stated?
  560. $theme_action = !empty($action['theme_action']) && in_array($action['theme_action'], array('no', 'yes', 'auto')) ? $action['theme_action'] : 'auto';
  561. $action['unparsed_destination'] = $action['unparsed_filename'];
  562. // If it's not auto do we think we have something we can act upon?
  563. if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir')))
  564. $theme_action = '';
  565. // ... or if it's auto do we even want to do anything?
  566. elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir')
  567. $theme_action = '';
  568. // So, we still want to do something?
  569. if ($theme_action != '')
  570. $themeFinds['candidates'][] = $action;
  571. // Otherwise is this is going into another theme record it.
  572. elseif ($matches[1] == 'themes_dir')
  573. $themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_filename']), array('\\' => '/')) . '/' . basename($action['filename']));
  574. }
  575. }
  576. if (empty($thisAction))
  577. continue;
  578. if ($context['uninstalling'])
  579. $file = in_array($action['type'], array('remove-dir', 'remove-file')) ? $action['filename'] : $boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename'];
  580. else
  581. $file = $boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename'];
  582. if (isset($action['filename']) && !file_exists($file))
  583. {
  584. $context['has_failure'] = true;
  585. $thisAction += array(
  586. 'description' => $txt['package_action_error'],
  587. 'failed' => true,
  588. );
  589. }
  590. // @todo None given?
  591. if (empty($thisAction['description']))
  592. $thisAction['description'] = isset($action['description']) ? $action['description'] : '';
  593. $context['actions'][] = $thisAction;
  594. }
  595. // Have we got some things which we might want to do "multi-theme"?
  596. if (!empty($themeFinds['candidates']))
  597. {
  598. foreach ($themeFinds['candidates'] as $action_data)
  599. {
  600. // Get the part of the file we'll be dealing with.
  601. preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir)(\\|/)*(.+)*~i', $action_data['unparsed_destination'], $matches);
  602. if ($matches[1] == 'imagesdir')
  603. $path = '/' . basename($settings['default_images_url']);
  604. elseif ($matches[1] == 'languagedir' || $matches[1] == 'languages_dir')
  605. $path = '/languages';
  606. else
  607. $path = '';
  608. if (!empty($matches[3]))
  609. $path .= $matches[3];
  610. if (!$context['uninstalling'])
  611. $path .= '/' . basename($action_data['filename']);
  612. // Loop through each custom theme to note it's candidacy!
  613. foreach ($theme_paths as $id => $theme_data)
  614. {
  615. if (isset($theme_data['theme_dir']) && $id != 1)
  616. {
  617. $real_path = $theme_data['theme_dir'] . $path;
  618. // Confirm that we don't already have this dealt with by another entry.
  619. if (!in_array(strtolower(strtr($real_path, array('\\' => '/'))), $themeFinds['other_themes']))
  620. {
  621. // Check if we will need to chmod this.
  622. if (!mktree(dirname($real_path), false))
  623. {
  624. $temp = dirname($real_path);
  625. while (!file_exists($temp) && strlen($temp) > 1)
  626. $temp = dirname($temp);
  627. $chmod_files[] = $temp;
  628. }
  629. if ($action_data['type'] == 'require-dir' && !is_writable($real_path) && (file_exists($real_path) || !is_writable(dirname($real_path))))
  630. $chmod_files[] = $real_path;
  631. if (!isset($context['theme_actions'][$id]))
  632. $context['theme_actions'][$id] = array(
  633. 'name' => $theme_data['name'],
  634. 'actions' => array(),
  635. );
  636. if ($context['uninstalling'])
  637. $context['theme_actions'][$id]['actions'][] = array(
  638. 'type' => $txt['package_delete'] . ' ' . ($action_data['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']),
  639. 'action' => strtr($real_path, array('\\' => '/', $boarddir => '.')),
  640. 'description' => '',
  641. 'value' => base64_encode(serialize(array('type' => $action_data['type'], 'orig' => $action_data['filename'], 'future' => $real_path, 'id' => $id))),
  642. 'not_mod' => true,
  643. );
  644. else
  645. $context['theme_actions'][$id]['actions'][] = array(
  646. 'type' => $txt['package_extract'] . ' ' . ($action_data['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']),
  647. 'action' => strtr($real_path, array('\\' => '/', $boarddir => '.')),
  648. 'description' => '',
  649. 'value' => base64_encode(serialize(array('type' => $action_data['type'], 'orig' => $action_data['destination'], 'future' => $real_path, 'id' => $id))),
  650. 'not_mod' => true,
  651. );
  652. }
  653. }
  654. }
  655. }
  656. }
  657. // Trash the cache... which will also check permissions for us!
  658. package_flush_cache(true);
  659. if (file_exists($boarddir . '/Packages/temp'))
  660. deltree($boarddir . '/Packages/temp');
  661. if (!empty($chmod_files))
  662. {
  663. $ftp_status = create_chmod_control($chmod_files);
  664. $context['ftp_needed'] = !empty($ftp_status['files']['notwritable']) && !empty($context['package_ftp']);
  665. }
  666. $context['post_url'] = $scripturl .'?action=admin;area=packages;sa=' . ($context['uninstalling'] ? 'uninstall' : 'install') . ($context['ftp_needed'] ? '' : '2') . ';package=' . $context['filename'] . ';pid=' . $context['install_id'];
  667. checkSubmitOnce('register');
  668. }
  669. /**
  670. * Apply another type of (avatar, language, etc.) package.
  671. */
  672. function PackageInstall()
  673. {
  674. global $boarddir, $txt, $context, $boardurl, $scripturl, $sourcedir, $modSettings;
  675. global $user_info, $smcFunc;
  676. // Make sure we don't install this mod twice.
  677. checkSubmitOnce('check');
  678. checkSession();
  679. // If there's no file, what are we installing?
  680. if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
  681. redirectexit('action=admin;area=packages');
  682. $context['filename'] = $_REQUEST['package'];
  683. // If this is an uninstall, we'll have an id.
  684. $context['install_id'] = isset($_REQUEST['pid']) ? (int) $_REQUEST['pid'] : 0;
  685. require_once($sourcedir . '/Subs-Package.php');
  686. // @todo Perhaps do it in steps, if necessary?
  687. $context['uninstalling'] = $_REQUEST['sa'] == 'uninstall2';
  688. // Set up the linktree for other.
  689. $context['linktree'][count($context['linktree']) - 1] = array(
  690. 'url' => $scripturl . '?action=admin;area=packages;sa=browse',
  691. 'name' => $context['uninstalling'] ? $txt['uninstall'] : $txt['extracting']
  692. );
  693. $context['page_title'] .= ' - ' . ($context['uninstalling'] ? $txt['uninstall'] : $txt['extracting']);
  694. $context['sub_template'] = 'extract_package';
  695. if (!file_exists($boarddir . '/Packages/' . $context['filename']))
  696. fatal_lang_error('package_no_file', false);
  697. // Load up the package FTP information?
  698. create_chmod_control(array(), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=' . $_REQUEST['sa'] . ';package=' . $_REQUEST['package']));
  699. // Make sure temp directory exists and is empty!
  700. if (file_exists($boarddir . '/Packages/temp'))
  701. deltree($boarddir . '/Packages/temp', false);
  702. else
  703. mktree($boarddir . '/Packages/temp', 0777);
  704. // Let the unpacker do the work.
  705. if (is_file($boarddir . '/Packages/' . $context['filename']))
  706. {
  707. $context['extracted_files'] = read_tgz_file($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  708. if (!file_exists($boarddir . '/Packages/temp/package-info.xml'))
  709. foreach ($context['extracted_files'] as $file)
  710. if (basename($file['filename']) == 'package-info.xml')
  711. {
  712. $context['base_path'] = dirname($file['filename']) . '/';
  713. break;
  714. }
  715. if (!isset($context['base_path']))
  716. $context['base_path'] = '';
  717. }
  718. elseif (is_dir($boarddir . '/Packages/' . $context['filename']))
  719. {
  720. copytree($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  721. $context['extracted_files'] = listtree($boarddir . '/Packages/temp');
  722. $context['base_path'] = '';
  723. }
  724. else
  725. fatal_lang_error('no_access', false);
  726. // Are we installing this into any custom themes?
  727. $custom_themes = array(1);
  728. $known_themes = explode(',', $modSettings['knownThemes']);
  729. if (!empty($_POST['custom_theme']))
  730. {
  731. foreach ($_POST['custom_theme'] as $tid)
  732. if (in_array($tid, $known_themes))
  733. $custom_themes[] = (int) $tid;
  734. }
  735. // Now load up the paths of the themes that we need to know about.
  736. $request = $smcFunc['db_query']('', '
  737. SELECT id_theme, variable, value
  738. FROM {db_prefix}themes
  739. WHERE id_theme IN ({array_int:custom_themes})
  740. AND variable IN ({string:name}, {string:theme_dir})',
  741. array(
  742. 'custom_themes' => $custom_themes,
  743. 'name' => 'name',
  744. 'theme_dir' => 'theme_dir',
  745. )
  746. );
  747. $theme_paths = array();
  748. $themes_installed = array(1);
  749. while ($row = $smcFunc['db_fetch_assoc']($request))
  750. $theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
  751. $smcFunc['db_free_result']($request);
  752. // Are there any theme copying that we want to take place?
  753. $context['theme_copies'] = array(
  754. 'require-file' => array(),
  755. 'require-dir' => array(),
  756. );
  757. if (!empty($_POST['theme_changes']))
  758. {
  759. foreach ($_POST['theme_changes'] as $change)
  760. {
  761. if (empty($change))
  762. continue;
  763. $theme_data = unserialize(base64_decode($change));
  764. if (empty($theme_data['type']))
  765. continue;
  766. $themes_installed[] = $theme_data['id'];
  767. $context['theme_copies'][$theme_data['type']][$theme_data['orig']][] = $theme_data['future'];
  768. }
  769. }
  770. // Get the package info...
  771. $packageInfo = getPackageInfo($context['filename']);
  772. if (!is_array($packageInfo))
  773. fatal_lang_error($packageInfo);
  774. $packageInfo['filename'] = $context['filename'];
  775. // Set the type of extraction...
  776. $context['extract_type'] = isset($packageInfo['type']) ? $packageInfo['type'] : 'modification';
  777. // Create a backup file to roll back to! (but if they do this more than once, don't run it a zillion times.)
  778. if (!empty($modSettings['package_make_full_backups']) && (!isset($_SESSION['last_backup_for']) || $_SESSION['last_backup_for'] != $context['filename'] . ($context['uninstalling'] ? '$$' : '$')))
  779. {
  780. $_SESSION['last_backup_for'] = $context['filename'] . ($context['uninstalling'] ? '$$' : '$');
  781. // @todo Internationalize this?
  782. package_create_backup(($context['uninstalling'] ? 'backup_' : 'before_') . strtok($context['filename'], '.'));
  783. }
  784. // The mod isn't installed.... unless proven otherwise.
  785. $context['is_installed'] = false;
  786. // Is it actually installed?
  787. $request = $smcFunc['db_query']('', '
  788. SELECT version, themes_installed, db_changes
  789. FROM {db_prefix}log_packages
  790. WHERE package_id = {string:current_package}
  791. AND install_state != {int:not_installed}
  792. ORDER BY time_installed DESC
  793. LIMIT 1',
  794. array(
  795. 'not_installed' => 0,
  796. 'current_package' => $packageInfo['id'],
  797. )
  798. );
  799. while ($row = $smcFunc['db_fetch_assoc']($request))
  800. {
  801. $old_themes = explode(',', $row['themes_installed']);
  802. $old_version = $row['version'];
  803. $db_changes = empty($row['db_changes']) ? array() : unserialize($row['db_changes']);
  804. }
  805. $smcFunc['db_free_result']($request);
  806. // Wait, it's not installed yet!
  807. // @todo Replace with a better error message!
  808. if (!isset($old_version) && $context['uninstalling'])
  809. {
  810. deltree($boarddir . '/Packages/temp');
  811. fatal_error('Hacker?', false);
  812. }
  813. // Uninstalling?
  814. elseif ($context['uninstalling'])
  815. {
  816. $install_log = parsePackageInfo($packageInfo['xml'], false, 'uninstall');
  817. // Gadzooks! There's no uninstaller at all!?
  818. if (empty($install_log))
  819. fatal_lang_error('package_uninstall_cannot', false);
  820. // They can only uninstall from what it was originally installed into.
  821. foreach ($theme_paths as $id => $data)
  822. if ($id != 1 && !in_array($id, $old_themes))
  823. unset($theme_paths[$id]);
  824. }
  825. elseif (isset($old_version) && $old_version != $packageInfo['version'])
  826. {
  827. // Look for an upgrade...
  828. $install_log = parsePackageInfo($packageInfo['xml'], false, 'upgrade', $old_version);
  829. // There was no upgrade....
  830. if (empty($install_log))
  831. $context['is_installed'] = true;
  832. else
  833. {
  834. // Upgrade previous themes only!
  835. foreach ($theme_paths as $id => $data)
  836. if ($id != 1 && !in_array($id, $old_themes))
  837. unset($theme_paths[$id]);
  838. }
  839. }
  840. elseif (isset($old_version) && $old_version == $packageInfo['version'])
  841. $context['is_installed'] = true;
  842. if (!isset($old_version) || $context['is_installed'])
  843. $install_log = parsePackageInfo($packageInfo['xml'], false, 'install');
  844. $install_finished = false;
  845. // @todo Make a log of any errors that occurred and output them?
  846. if (!empty($install_log))
  847. {
  848. $failed_steps = array();
  849. $failed_count = 0;
  850. foreach ($install_log as $action)
  851. {
  852. $failed_count++;
  853. if ($action['type'] == 'modification' && !empty($action['filename']))
  854. {
  855. if ($action['boardmod'])
  856. $mod_actions = parseBoardMod(file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths);
  857. else
  858. $mod_actions = parseModification(file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths);
  859. // Any errors worth noting?
  860. foreach ($mod_actions as $key => $action)
  861. {
  862. if ($action['type'] == 'failure')
  863. $failed_steps[] = array(
  864. 'file' => $action['filename'],
  865. 'large_step' => $failed_count,
  866. 'sub_step' => $key,
  867. 'theme' => 1,
  868. );
  869. // Gather the themes we installed into.
  870. if (!empty($action['is_custom']))
  871. $themes_installed[] = $action['is_custom'];
  872. }
  873. }
  874. elseif ($action['type'] == 'code' && !empty($action['filename']))
  875. {
  876. // This is just here as reference for what is available.
  877. global $txt, $boarddir, $sourcedir, $modSettings, $context, $settings, $forum_version, $smcFunc;
  878. // Now include the file and be done with it ;).
  879. if (file_exists($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']))
  880. require($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']);
  881. }
  882. elseif ($action['type'] == 'credits')
  883. {
  884. // Time to build the billboard
  885. $credits_tag = array(
  886. 'url' => $action['url'],
  887. 'license' => $action['license'],
  888. 'copyright' => $action['copyright'],
  889. 'title' => $action['title'],
  890. );
  891. }
  892. elseif ($action['type'] == 'hook' && isset($action['hook'], $action['function']))
  893. {
  894. if ($action['reverse'])
  895. remove_integration_function($action['hook'], $action['function'], $action['include_file']);
  896. else
  897. add_integration_function($action['hook'], $action['function'], $action['include_file']);
  898. }
  899. // Only do the database changes on uninstall if requested.
  900. elseif ($action['type'] == 'database' && !empty($action['filename']) && (!$context['uninstalling'] || !empty($_POST['do_db_changes'])))
  901. {
  902. // These can also be there for database changes.
  903. global $txt, $boarddir, $sourcedir, $modSettings, $context, $settings, $forum_version, $smcFunc;
  904. global $db_package_log;
  905. // We'll likely want the package specific database functionality!
  906. db_extend('packages');
  907. // Let the file work its magic ;)
  908. if (file_exists($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']))
  909. require($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']);
  910. }
  911. // Handle a redirect...
  912. elseif ($action['type'] == 'redirect' && !empty($action['redirect_url']))
  913. {
  914. $context['redirect_url'] = $action['redirect_url'];
  915. $context['redirect_text'] = !empty($action['filename']) && file_exists($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']) ? file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']) : ($context['uninstalling'] ? $txt['package_uninstall_done'] : $txt['package_installed_done']);
  916. $context['redirect_timeout'] = $action['redirect_timeout'];
  917. // Parse out a couple of common urls.
  918. $urls = array(
  919. '$boardurl' => $boardurl,
  920. '$scripturl' => $scripturl,
  921. '$session_var' => $context['session_var'],
  922. '$session_id' => $context['session_id'],
  923. );
  924. $context['redirect_url'] = strtr($context['redirect_url'], $urls);
  925. }
  926. }
  927. package_flush_cache();
  928. // First, ensure this change doesn't get removed by putting a stake in the ground (So to speak).
  929. package_put_contents($boarddir . '/Packages/installed.list', time());
  930. // See if this is already installed, and change it's state as required.
  931. $request = $smcFunc['db_query']('', '
  932. SELECT package_id, install_state, db_changes
  933. FROM {db_prefix}log_packages
  934. WHERE install_state != {int:not_installed}
  935. AND package_id = {string:current_package}
  936. ' . ($context['install_id'] ? ' AND id_install = {int:install_id} ' : '') . '
  937. ORDER BY time_installed DESC
  938. LIMIT 1',
  939. array(
  940. 'not_installed' => 0,
  941. 'install_id' => $context['install_id'],
  942. 'current_package' => $packageInfo['id'],
  943. )
  944. );
  945. $is_upgrade = false;
  946. while ($row = $smcFunc['db_fetch_assoc']($request))
  947. {
  948. // Uninstalling?
  949. if ($context['uninstalling'])
  950. {
  951. $smcFunc['db_query']('', '
  952. UPDATE {db_prefix}log_packages
  953. SET install_state = {int:not_installed}, member_removed = {string:member_name}, id_member_removed = {int:current_member},
  954. time_removed = {int:current_time}
  955. WHERE package_id = {string:package_id}
  956. AND id_install = {int:install_id}',
  957. array(
  958. 'current_member' => $user_info['id'],
  959. 'not_installed' => 0,
  960. 'current_time' => time(),
  961. 'package_id' => $row['package_id'],
  962. 'member_name' => $user_info['name'],
  963. 'install_id' => $context['install_id'],
  964. )
  965. );
  966. }
  967. // Otherwise must be an upgrade.
  968. else
  969. {
  970. $is_upgrade = true;
  971. $old_db_changes = empty($row['db_changes']) ? array() : unserialize($row['db_changes']);
  972. }
  973. }
  974. // Assuming we're not uninstalling, add the entry.
  975. if (!$context['uninstalling'])
  976. {
  977. // Any db changes from older version?
  978. if (!empty($old_db_changes))
  979. $db_package_log = empty($db_package_log) ? $old_db_changes : array_merge($old_db_changes, $db_package_log);
  980. // If there are some database changes we might want to remove then filter them out.
  981. if (!empty($db_package_log))
  982. {
  983. // We're really just checking for entries which are create table AND add columns (etc).
  984. $tables = array();
  985. /**
  986. * Table sorting function used in usort
  987. *
  988. * @param type $a
  989. * @param type $b
  990. * @return int
  991. */
  992. function sort_table_first($a, $b)
  993. {
  994. if ($a[0] == $b[0])
  995. return 0;
  996. return $a[0] == 'remove_table' ? -1 : 1;
  997. }
  998. usort($db_package_log, 'sort_table_first');
  999. foreach ($db_package_log as $k => $log)
  1000. {
  1001. if ($log[0] == 'remove_table')
  1002. $tables[] = $log[1];
  1003. elseif (in_array($log[1], $tables))
  1004. unset($db_package_log[$k]);
  1005. }
  1006. $db_changes = serialize($db_package_log);
  1007. }
  1008. else
  1009. $db_changes = '';
  1010. // What themes did we actually install?
  1011. $themes_installed = array_unique($themes_installed);
  1012. $themes_installed = implode(',', $themes_installed);
  1013. // What failed steps?
  1014. $failed_step_insert = serialize($failed_steps);
  1015. // Credits tag?
  1016. $credits_tag = (empty($credits_tag)) ? '' : serialize($credits_tag);
  1017. $smcFunc['db_insert']('',
  1018. '{db_prefix}log_packages',
  1019. array(
  1020. 'filename' => 'string', 'name' => 'string', 'package_id' => 'string', 'version' => 'string',
  1021. 'id_member_installed' => 'int', 'member_installed' => 'string','time_installed' => 'int',
  1022. 'install_state' => 'int', 'failed_steps' => 'string', 'themes_installed' => 'string',
  1023. 'member_removed' => 'int', 'db_changes' => 'string', 'credits' => 'string',
  1024. ),
  1025. array(
  1026. $packageInfo['filename'], $packageInfo['name'], $packageInfo['id'], $packageInfo['version'],
  1027. $user_info['id'], $user_info['name'], time(),
  1028. $is_upgrade ? 2 : 1, $failed_step_insert, $themes_installed,
  1029. 0, $db_changes, $credits_tag,
  1030. ),
  1031. array('id_install')
  1032. );
  1033. }
  1034. $smcFunc['db_free_result']($request);
  1035. $install_finished = true;
  1036. }
  1037. // If there's database changes - and they want them removed - let's do it last!
  1038. if (!empty($db_changes) && !empty($_POST['do_db_changes']))
  1039. {
  1040. // We're gonna be needing the package db functions!
  1041. db_extend('packages');
  1042. foreach ($db_changes as $change)
  1043. {
  1044. if ($change[0] == 'remove_table' && isset($change[1]))
  1045. $smcFunc['db_drop_table']($change[1]);
  1046. elseif ($change[0] == 'remove_column' && isset($change[2]))
  1047. $smcFunc['db_remove_column']($change[1], $change[2]);
  1048. elseif ($change[0] == 'remove_index' && isset($change[2]))
  1049. $smcFunc['db_remove_index']($change[1], $change[2]);
  1050. }
  1051. }
  1052. // Clean house... get rid of the evidence ;).
  1053. if (file_exists($boarddir . '/Packages/temp'))
  1054. deltree($boarddir . '/Packages/temp');
  1055. // Log what we just did.
  1056. logAction($context['uninstalling'] ? 'uninstall_package' : (!empty($is_upgrade) ? 'upgrade_package' : 'install_package'), array('package' => $smcFunc['htmlspecialchars']($packageInfo['name']), 'version' => $smcFunc['htmlspecialchars']($packageInfo['version'])), 'admin');
  1057. // Just in case, let's clear the whole cache to avoid anything going up the swanny.
  1058. clean_cache();
  1059. // Restore file permissions?
  1060. create_chmod_control(array(), array(), true);
  1061. }
  1062. /**
  1063. * List the files in a package.
  1064. */
  1065. function PackageList()
  1066. {
  1067. global $txt, $scripturl, $boarddir, $context, $sourcedir;
  1068. require_once($sourcedir . '/Subs-Package.php');
  1069. // No package? Show him or her the door.
  1070. if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
  1071. redirectexit('action=admin;area=packages');
  1072. $context['linktree'][] = array(
  1073. 'url' => $scripturl . '?action=admin;area=packages;sa=list;package=' . $_REQUEST['package'],
  1074. 'name' => $txt['list_file']
  1075. );
  1076. $context['page_title'] .= ' - ' . $txt['list_file'];
  1077. $context['sub_template'] = 'list';
  1078. // The filename...
  1079. $context['filename'] = $_REQUEST['package'];
  1080. // Let the unpacker do the work.
  1081. if (is_file($boarddir . '/Packages/' . $context['filename']))
  1082. $context['files'] = read_tgz_file($boarddir . '/Packages/' . $context['filename'], null);
  1083. elseif (is_dir($boarddir . '/Packages/' . $context['filename']))
  1084. $context['files'] = listtree($boarddir . '/Packages/' . $context['filename']);
  1085. }
  1086. /**
  1087. * Display one of the files in a package.
  1088. */
  1089. function ExamineFile()
  1090. {
  1091. global $txt, $scripturl, $boarddir, $context, $sourcedir;
  1092. require_once($sourcedir . '/Subs-Package.php');
  1093. // No package? Show him or her the door.
  1094. if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
  1095. redirectexit('action=admin;area=packages');
  1096. // No file? Show him or her the door.
  1097. if (!isset($_REQUEST['file']) || $_REQUEST['file'] == '')
  1098. redirectexit('action=admin;area=packages');
  1099. $_REQUEST['package'] = preg_replace('~[\.]+~', '.', strtr($_REQUEST['package'], array('/' => '_', '\\' => '_')));
  1100. $_REQUEST['file'] = preg_replace('~[\.]+~', '.', $_REQUEST['file']);
  1101. if (isset($_REQUEST['raw']))
  1102. {
  1103. if (is_file($boarddir . '/Packages/' . $_REQUEST['package']))
  1104. echo read_tgz_file($boarddir . '/Packages/' . $_REQUEST['package'], $_REQUEST['file'], true);
  1105. elseif (is_dir($boarddir . '/Packages/' . $_REQUEST['package']))
  1106. echo file_get_contents($boarddir . '/Packages/' . $_REQUEST['package'] . '/' . $_REQUEST['file']);
  1107. obExit(false);
  1108. }
  1109. $context['linktree'][count($context['linktree']) - 1] = array(
  1110. 'url' => $scripturl . '?action=admin;area=packages;sa=list;package=' . $_REQUEST['package'],
  1111. 'name' => $txt['package_examine_file']
  1112. );
  1113. $context['page_title'] .= ' - ' . $txt['package_examine_file'];
  1114. $context['sub_template'] = 'examine';
  1115. // The filename...
  1116. $context['package'] = $_REQUEST['package'];
  1117. $context['filename'] = $_REQUEST['file'];
  1118. // Let the unpacker do the work.... but make sure we handle images properly.
  1119. if (in_array(strtolower(strrchr($_REQUEST['file'], '.')), array('.bmp', '.gif', '.jpeg', '.jpg', '.png')))
  1120. $context['filedata'] = '<img src="' . $scripturl . '?action=admin;area=packages;sa=examine;package=' . $_REQUEST['package'] . ';file=' . $_REQUEST['file'] . ';raw" alt="' . $_REQUEST['file'] . '" />';
  1121. else
  1122. {
  1123. if (is_file($boarddir . '/Packages/' . $_REQUEST['package']))
  1124. $context['filedata'] = htmlspecialchars(read_tgz_file($boarddir . '/Packages/' . $_REQUEST['package'], $_REQUEST['file'], true));
  1125. elseif (is_dir($boarddir . '/Packages/' . $_REQUEST['package']))
  1126. $context['filedata'] = htmlspecialchars(file_get_contents($boarddir . '/Packages/' . $_REQUEST['package'] . '/' . $_REQUEST['file']));
  1127. if (strtolower(strrchr($_REQUEST['file'], '.')) == '.php')
  1128. $context['filedata'] = highlight_php_code($context['filedata']);
  1129. }
  1130. }
  1131. /**
  1132. * List the installed packages.
  1133. */
  1134. function InstalledList()
  1135. {
  1136. global $txt, $scripturl, $context;
  1137. $context['page_title'] .= ' - ' . $txt['installed_packages'];
  1138. $context['sub_template'] = 'view_installed';
  1139. // Load the installed mods and send them to the template.
  1140. $context['installed_mods'] = loadInstalledPackages();
  1141. }
  1142. /**
  1143. * Empty out the installed list.
  1144. */
  1145. function FlushInstall()
  1146. {
  1147. global $boarddir, $sourcedir, $smcFunc;
  1148. // Always check the session.
  1149. checkSession('get');
  1150. include_once($sourcedir . '/Subs-Package.php');
  1151. // Record when we last did this.
  1152. package_put_contents($boarddir . '/Packages/installed.list', time());
  1153. // Set everything as uninstalled.
  1154. $smcFunc['db_query']('', '
  1155. UPDATE {db_prefix}log_packages
  1156. SET install_state = {int:not_installed}',
  1157. array(
  1158. 'not_installed' => 0,
  1159. )
  1160. );
  1161. redirectexit('action=admin;area=packages;sa=installed');
  1162. }
  1163. /**
  1164. * Delete a package.
  1165. */
  1166. function PackageRemove()
  1167. {
  1168. global $scripturl, $boarddir;
  1169. // Check it.
  1170. checkSession('get');
  1171. // Ack, don't allow deletion of arbitrary files here, could become a security hole somehow!
  1172. if (!isset($_GET['package']) || $_GET['package'] == 'index.php' || $_GET['package'] == 'installed.list' || $_GET['package'] == 'backups')
  1173. redirectexit('action=admin;area=packages;sa=browse');
  1174. $_GET['package'] = preg_replace('~[\.]+~', '.', strtr($_GET['package'], array('/' => '_', '\\' => '_')));
  1175. // Can't delete what's not there.
  1176. if (file_exists($boarddir . '/Packages/' . $_GET['package']) && (substr($_GET['package'], -4) == '.zip' || substr($_GET['package'], -4) == '.tgz' || substr($_GET['package'], -7) == '.tar.gz' || is_dir($boarddir . '/Packages/' . $_GET['package'])) && $_GET['package'] != 'backups' && substr($_GET['package'], 0, 1) != '.')
  1177. {
  1178. create_chmod_control(array($boarddir . '/Packages/' . $_GET['package']), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=remove;package=' . $_GET['package'], 'crash_on_error' => true));
  1179. if (is_dir($boarddir . '/Packages/' . $_GET['package']))
  1180. deltree($boarddir . '/Packages/' . $_GET['package']);
  1181. else
  1182. {
  1183. @chmod($boarddir . '/Packages/' . $_GET['package'], 0777);
  1184. unlink($boarddir . '/Packages/' . $_GET['package']);
  1185. }
  1186. }
  1187. redirectexit('action=admin;area=packages;sa=browse');
  1188. }
  1189. /**
  1190. * Browse a list of installed packages.
  1191. */
  1192. function PackageBrowse()
  1193. {
  1194. global $txt, $boarddir, $scripturl, $context, $forum_version, $sourcedir, $settings;
  1195. $context['page_title'] .= ' - ' . $txt['browse_packages'];
  1196. $installed = $context['sub_action'] == 'installed' ? true : false;
  1197. $context['forum_version'] = $forum_version;
  1198. $context['modification_types'] = $installed ? array('modification') : array('modification', 'avatar', 'language', 'unknown');
  1199. require_once($sourcedir . '/Subs-List.php');
  1200. foreach ($context['modification_types'] as $type)
  1201. {
  1202. // Use the standard templates for showing this.
  1203. $listOptions = array(
  1204. 'id' => 'packages_lists_' . $type,
  1205. 'title' => $installed ? $txt['view_and_remove'] : $txt[$type . '_package'],
  1206. 'no_items_label' => $txt['no_packages'],
  1207. 'get_items' => array(
  1208. 'function' => 'list_getPackages',
  1209. 'params' => array('type' => $type, 'installed' => $installed),
  1210. ),
  1211. 'base_href' => $scripturl . '?action=admin;area=packages;sa=' . $context['sub_action'] . ';type=' . $type,
  1212. 'default_sort_col' => 'id' . $type,
  1213. 'columns' => array(
  1214. 'id' . $type => array(
  1215. 'header' => array(
  1216. 'value' => $txt['package_id'],
  1217. 'style' => 'width: 40px;',
  1218. ),
  1219. 'data' => array(
  1220. 'function' => create_function('$package_md5', '
  1221. global $context;
  1222. if (isset($context[\'available_' . $type . '\'][$package_md5]))
  1223. return $context[\'available_' . $type . '\'][$package_md5][\'sort_id\'];
  1224. '),
  1225. ),
  1226. 'sort' => array(
  1227. 'default' => 'sort_id',
  1228. 'reverse' => 'sort_id'
  1229. ),
  1230. ),
  1231. 'mod_name' . $type => array(
  1232. 'header' => array(
  1233. 'value' => $txt['mod_name'],
  1234. 'style' => 'width: 25%;',
  1235. ),
  1236. 'data' => array(
  1237. 'function' => create_function('$package_md5', '
  1238. global $context;
  1239. if (isset($context[\'available_' . $type . '\'][$package_md5]))
  1240. return $context[\'available_' . $type . '\'][$package_md5][\'name\'];
  1241. '),
  1242. ),
  1243. 'sort' => array(
  1244. 'default' => 'name',
  1245. 'reverse' => 'name',
  1246. ),
  1247. ),
  1248. 'version' . $type => array(
  1249. 'header' => array(
  1250. 'value' => $txt['mod_version'],
  1251. 'style' => 'width: 25%;',
  1252. ),
  1253. 'data' => array(
  1254. 'function' => create_function('$package_md5', '
  1255. global $context;
  1256. if (isset($context[\'available_' . $type . '\'][$package_md5]))
  1257. return $context[\'available_' . $type . '\'][$package_md5][\'version\'];
  1258. '),
  1259. ),
  1260. 'sort' => array(
  1261. 'default' => 'version',
  1262. 'reverse' => 'version',
  1263. ),
  1264. ),
  1265. 'operations' . $type => array(
  1266. 'header' => array(
  1267. 'value' => '',
  1268. ),
  1269. 'data' => array(
  1270. 'function' => create_function('$package_md5', '
  1271. global $context, $scripturl, $txt;
  1272. if (!isset($context[\'available_' . $type . '\'][$package_md5]))
  1273. return \'\';
  1274. // Rewrite shortcut
  1275. $package = $context[\'available_' . $type . '\'][$package_md5];
  1276. $return = \'\';
  1277. if ($package[\'can_uninstall\'])
  1278. $return = \'
  1279. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=uninstall;package=\' . $package[\'filename\'] . \';pid=\' . $package[\'installed_id\'] . \'">[ \' . $txt[\'uninstall\'] . \' ]</a>\';
  1280. elseif ($package[\'can_emulate_uninstall\'])
  1281. $return = \'
  1282. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=uninstall;ve=\' . $package[\'can_emulate_uninstall\'] . \';package=\' . $package[\'filename\'] . \';pid=\' . $package[\'installed_id\'] . \'">[ \' . $txt[\'package_emulate_uninstall\'] . \' \' . $package[\'can_emulate_uninstall\'] . \' ]</a>\';
  1283. elseif ($package[\'can_upgrade\'])
  1284. $return = \'
  1285. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=install;package=\' . $package[\'filename\'] . \'">[ \' . $txt[\'package_upgrade\'] . \' ]</a>\';
  1286. elseif ($package[\'can_install\'])
  1287. $return = \'
  1288. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=install;package=\' . $package[\'filename\'] . \'">[ \' . $txt[\'install_mod\'] . \' ]</a>\';
  1289. elseif ($package[\'can_emulate_install\'])
  1290. $return = \'
  1291. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=install;ve=\' . $package[\'can_emulate_install\'] . \';package=\' . $package[\'filename\'] . \'">[ \' . $txt[\'package_emulate_install\'] . \' \' . $package[\'can_emulate_install\'] . \' ]</a>\';
  1292. return $return . \'
  1293. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=list;package=\' . $package[\'filename\'] . \'">[ \' . $txt[\'list_files\'] . \' ]</a>
  1294. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=remove;package=\' . $package[\'filename\'] . \';\' . $context[\'session_var\'] . \'=\' . $context[\'session_id\'] . \'"\' . ($package[\'is_installed\'] && $package[\'is_current\'] ? \' onclick="return confirm(\\\'\' . $txt[\'package_delete_bad\'] . \'\\\');"\' : \'\') . \'>[ \' . $txt[\'package_delete\'] . \' ]</a>\';
  1295. '),
  1296. 'class' => 'righttext',
  1297. ),
  1298. ),
  1299. ),
  1300. 'additional_rows' => array(
  1301. array(
  1302. 'position' => 'bottom_of_list',
  1303. 'value' => ($context['sub_action'] == 'browse' ? '<div class="padding smalltext">' . $txt['package_installed_key'] . '<img src="' . $settings['images_url'] . '/icons/package_installed.png" alt="" class="centericon" style="margin-left: 1ex;" /> ' . $txt['package_installed_current'] . '<img src="' . $settings['images_url'] . '/icons/package_old.png" alt="" class="centericon" style="margin-left: 2ex;" /> ' . $txt['package_installed_old'] . '</div>' :
  1304. '<a class="button_link" href="' . $scripturl . '?action=admin;area=packages;sa=flush;' . $context['session_var'] . '=' . $context['session_id'] . '" onclick="return confirm(\'' . $txt['package_delete_list_warning'] . '\');">' . $txt['delete_list'] . '</a>'),
  1305. ),
  1306. ),
  1307. );
  1308. createList($listOptions);
  1309. }
  1310. $context['sub_template'] = 'browse';
  1311. $context['default_list'] = 'packages_lists';
  1312. // Empty lists for now.
  1313. $context['available_mods'] = array();
  1314. $context['available_avatars'] = array();
  1315. $context['available_languages'] = array();
  1316. $context['available_other'] = array();
  1317. $context['available_all'] = array();
  1318. }
  1319. /**
  1320. * Get a listing of all the packages
  1321. * Determines if the package is a mod, avatar, language package
  1322. * Determines if the package has been installed or not
  1323. *
  1324. * @param type $start
  1325. * @param type $items_per_page
  1326. * @param type $sort
  1327. * @param type $params
  1328. * @param type $installed
  1329. * @return type
  1330. */
  1331. function list_getPackages($start, $items_per_page, $sort, $params, $installed)
  1332. {
  1333. global $boarddir, $scripturl, $context, $forum_version;
  1334. static $instmods, $packages;
  1335. // Start things up
  1336. if (!isset($packages[$params]))
  1337. $packages[$params] = array();
  1338. // We need the packages directory to be writable for this.
  1339. if (!@is_writable($boarddir . '/Packages'))
  1340. create_chmod_control(array($boarddir . '/Packages'), array('destination_url' => $scripturl . '?action=admin;area=packages', 'crash_on_error' => true));
  1341. $the_version = strtr($forum_version, array('SMF ' => ''));
  1342. // Here we have a little code to help those who class themselves as something of gods, version emulation ;)
  1343. if (isset($_GET['version_emulate']) && strtr($_GET['version_emulate'], array('SMF ' => '')) == $the_version)
  1344. {
  1345. unset($_SESSION['version_emulate']);
  1346. }
  1347. elseif (isset($_GET['version_emulate']))
  1348. {
  1349. if (($_GET['version_emulate'] === 0 || $_GET['version_emulate'] === $forum_version) && isset($_SESSION['version_emulate']))
  1350. unset($_SESSION['version_emulate']);
  1351. elseif ($_GET['version_emulate'] !== 0)
  1352. $_SESSION['version_emulate'] = strtr($_GET['version_emulate'], array('-' => ' ', '+' => ' ', 'SMF ' => ''));
  1353. }
  1354. if (!empty($_SESSION['version_emulate']))
  1355. {
  1356. $context['forum_version'] = 'SMF ' . $_SESSION['version_emulate'];
  1357. $the_version = $_SESSION['version_emulate'];
  1358. }
  1359. if (isset($_SESSION['single_version_emulate']))
  1360. unset($_SESSION['single_version_emulate']);
  1361. if (empty($instmods))
  1362. {
  1363. $instmods = loadInstalledPackages();
  1364. $installed_mods = array();
  1365. // Look through the list of installed mods...
  1366. foreach ($instmods as $installed_mod)
  1367. $installed_mods[$installed_mod['package_id']] = array(
  1368. 'id' => $installed_mod['id'],
  1369. 'version' => $installed_mod['version'],
  1370. );
  1371. // Get a list of all the ids installed, so the latest packages won't include already installed ones.
  1372. $context['installed_mods'] = array_keys($installed_mods);
  1373. }
  1374. if ($installed)
  1375. {
  1376. $sort_id = 1;
  1377. foreach ($instmods as $installed_mod)
  1378. {
  1379. $context['available_modification'][$installed_mod['package_id']] = array(
  1380. 'sort_id' => $sort_id++,
  1381. 'can_uninstall' => true,
  1382. 'name' => $installed_mod['name'],
  1383. 'filename' => $installed_mod['filename'],
  1384. 'installed_id' => $installed_mod['id'],
  1385. 'version' => $installed_mod['version'],
  1386. 'is_installed' => true,
  1387. 'is_current' => true,
  1388. );
  1389. }
  1390. }
  1391. if (empty($packages))
  1392. foreach ($context['modification_types'] as $type)
  1393. $packages[$type] = array();
  1394. if ($dir = @opendir($boarddir . '/Packages'))
  1395. {
  1396. $dirs = array();
  1397. $sort_id = array(
  1398. 'mod' => 1,
  1399. 'modification' => 1,
  1400. 'avatar' => 1,
  1401. 'language' => 1,
  1402. 'unknown' => 1,
  1403. );
  1404. while ($package = readdir($dir))
  1405. {
  1406. if ($package == '.' || $package == '..' || $package == 'temp' || (!(is_dir($boarddir . '/Packages/' . $package) && file_exists($boarddir . '/Packages/' . $package . '/package-info.xml')) && substr(strtolower($package), -7) != '.tar.gz' && substr(strtolower($package), -4) != '.tgz' && substr(strtolower($package), -4) != '.zip'))
  1407. continue;
  1408. $skip = false;
  1409. foreach ($context['modification_types'] as $type)
  1410. if (isset($context['available_' . $type][md5($package)]))
  1411. $skip = true;
  1412. if ($skip)
  1413. continue;
  1414. // Skip directories or files that are named the same.
  1415. if (is_dir($boarddir . '/Packages/' . $package))
  1416. {
  1417. if (in_array($package, $dirs))
  1418. continue;
  1419. $dirs[] = $package;
  1420. }
  1421. elseif (substr(strtolower($package), -7) == '.tar.gz')
  1422. {
  1423. if (in_array(substr($package, 0, -7), $dirs))
  1424. continue;
  1425. $dirs[] = substr($package, 0, -7);
  1426. }
  1427. elseif (substr(strtolower($package), -4) == '.zip' || substr(strtolower($package), -4) == '.tgz')
  1428. {
  1429. if (in_array(substr($package, 0, -4), $dirs))
  1430. continue;
  1431. $dirs[] = substr($package, 0, -4);
  1432. }
  1433. $packageInfo = getPackageInfo($package);
  1434. if (!is_array($packageInfo))
  1435. continue;
  1436. if (!empty($packageInfo))
  1437. {
  1438. $packageInfo['installed_id'] = isset($installed_mods[$packageInfo['id']]) ? $installed_mods[$packageInfo['id']]['id'] : 0;
  1439. $packageInfo['sort_id'] = $sort_id[$packageInfo['type']];
  1440. $packageInfo['is_installed'] = isset($installed_mods[$packageInfo['id']]);
  1441. $packageInfo['is_current'] = $packageInfo['is_installed'] && ($installed_mods[$packageInfo['id']]['version'] == $packageInfo['version']);
  1442. $packageInfo['is_newer'] = $packageInfo['is_installed'] && ($installed_mods[$packageInfo['id']]['version'] > $packageInfo['version']);
  1443. $packageInfo['can_install'] = false;
  1444. $packageInfo['can_uninstall'] = false;
  1445. $packageInfo['can_upgrade'] = false;
  1446. $packageInfo['can_emulate_install'] = false;
  1447. $packageInfo['can_emulate_uninstall'] = false;
  1448. // This package is currently NOT installed. Check if it can be.
  1449. if (!$packageInfo['is_installed'] && $packageInfo['xml']->exists('install'))
  1450. {
  1451. // Check if there's an install for *THIS* version of SMF.
  1452. $installs = $packageInfo['xml']->set('install');
  1453. foreach ($installs as $install)
  1454. {
  1455. if (!$install->exists('@for') || matchPackageVersion($the_version, $install->fetch('@for')))
  1456. {
  1457. // Okay, this one is good to go.
  1458. $packageInfo['can_install'] = true;
  1459. break;
  1460. }
  1461. }
  1462. // no install found for this version, lets see if one exists for another
  1463. if ($packageInfo['can_install'] === false && $install->exists('@for') && empty($_SESSION['version_emulate']))
  1464. {
  1465. $reset = true;
  1466. // Get the highest install version that is available from the package
  1467. foreach ($installs as $install)
  1468. {
  1469. $packageInfo['can_emulate_install'] = matchHighestPackageVersion($install->fetch('@for'), $reset, $the_version);
  1470. $reset = false;
  1471. }
  1472. }
  1473. }
  1474. // An already installed, but old, package. Can we upgrade it?
  1475. elseif ($packageInfo['is_installed'] && !$packageInfo['is_current'] && $packageInfo['xml']->exists('upgrade'))
  1476. {
  1477. $upgrades = $packageInfo['xml']->set('upgrade');
  1478. // First go through, and check against the current version of SMF.
  1479. foreach ($upgrades as $upgrade)
  1480. {
  1481. // Even if it is for this SMF, is it for the installed version of the mod?
  1482. if (!$upgrade->exists('@for') || matchPackageVersion($the_version, $upgrade->fetch('@for')))
  1483. if (!$upgrade->exists('@from') || matchPackageVersion($installed_mods[$packageInfo['id']]['version'], $upgrade->fetch('@from')))
  1484. {
  1485. $packageInfo['can_upgrade'] = true;
  1486. break;
  1487. }
  1488. }
  1489. }
  1490. // Note that it has to be the current version to be uninstallable. Shucks.
  1491. elseif ($packageInfo['is_installed'] && $packageInfo['is_current'] && $packageInfo['xml']->exists('uninstall'))
  1492. {
  1493. $uninstalls = $packageInfo['xml']->set('uninstall');
  1494. // Can we find any uninstallation methods that work for this SMF version?
  1495. foreach ($uninstalls as $uninstall)
  1496. {
  1497. if (!$uninstall->exists('@for') || matchPackageVersion($the_version, $uninstall->fetch('@for')))
  1498. {
  1499. $packageInfo['can_uninstall'] = true;
  1500. break;
  1501. }
  1502. }
  1503. // no uninstall found for this version, lets see if one exists for another
  1504. if ($packageInfo['can_uninstall'] === false && $uninstall->exists('@for') && empty($_SESSION['version_emulate']))
  1505. {
  1506. $reset = true;
  1507. // Get the highest install version that is available from the package
  1508. foreach ($uninstalls as $uninstall)
  1509. {
  1510. $packageInfo['can_emulate_uninstall'] = matchHighestPackageVersion($uninstall->fetch('@for'), $reset, $the_version);
  1511. $reset = false;
  1512. }
  1513. }
  1514. }
  1515. // Modification.
  1516. if ($packageInfo['type'] == 'modification' || $packageInfo['type'] == 'mod')
  1517. {
  1518. $sort_id['modification']++;
  1519. $sort_id['mod']++;
  1520. if ($installed)
  1521. {
  1522. if (!empty($context['available_modification'][$packageInfo['id']]))
  1523. {
  1524. $packages['modification'][strtolower($packageInfo[$sort]) . '_' . $sort_id['mod']] = $packageInfo['id'];
  1525. $context['available_modification'][$packageInfo['id']] = array_merge($context['available_modification'][$packageInfo['id']], $packageInfo);
  1526. }
  1527. }
  1528. else
  1529. {
  1530. $packages['modification'][strtolower($packageInfo[$sort]) . '_' . $sort_id['mod']] = md5($package);
  1531. $context['available_modification'][md5($package)] = $packageInfo;
  1532. }
  1533. }
  1534. // Avatar package.
  1535. elseif ($packageInfo['type'] == 'avatar')
  1536. {
  1537. $sort_id[$packageInfo['type']]++;
  1538. $packages['avatar'][strtolower($packageInfo[$sort])] = md5($package);
  1539. $context['available_avatar'][md5($package)] = $packageInfo;
  1540. }
  1541. // Language package.
  1542. elseif ($packageInfo['type'] == 'language')
  1543. {
  1544. $sort_id[$packageInfo['type']]++;
  1545. $packages['language'][strtolower($packageInfo[$sort])] = md5($package);
  1546. $context['available_language'][md5($package)] = $packageInfo;
  1547. }
  1548. // Other stuff.
  1549. else
  1550. {
  1551. $sort_id['unknown']++;
  1552. $packages['unknown'][strtolower($packageInfo[$sort])] = md5($package);
  1553. $context['available_unknown'][md5($package)] = $packageInfo;
  1554. }
  1555. }
  1556. }
  1557. closedir($dir);
  1558. }
  1559. if (isset($_GET['type']) && $_GET['type'] == $params)
  1560. {
  1561. if (isset($_GET['desc']))
  1562. krsort($packages[$params]);
  1563. else
  1564. ksort($packages[$params]);
  1565. }
  1566. return $packages[$params];
  1567. }
  1568. /**
  1569. * Used when a temp FTP access is needed to package functions
  1570. */
  1571. function PackageOptions()
  1572. {
  1573. global $txt, $scripturl, $context, $sourcedir, $modSettings, $smcFunc;
  1574. if (isset($_POST['save']))
  1575. {
  1576. checkSession('post');
  1577. updateSettings(array(
  1578. 'package_server' => trim($smcFunc['htmlspecialchars']($_POST['pack_server'])),
  1579. 'package_port' => trim($smcFunc['htmlspecialchars']($_POST['pack_port'])),
  1580. 'package_username' => trim($smcFunc['htmlspecialchars']($_POST['pack_user'])),
  1581. 'package_make_backups' => !empty($_POST['package_make_backups']),
  1582. 'package_make_full_backups' => !empty($_POST['package_make_full_backups'])
  1583. ));
  1584. redirectexit('action=admin;area=packages;sa=options');
  1585. }
  1586. if (preg_match('~^/home\d*/([^/]+?)/public_html~', $_SERVER['DOCUMENT_ROOT'], $match))
  1587. $default_username = $match[1];
  1588. else
  1589. $default_username = '';
  1590. $context['page_title'] = $txt['package_settings'];
  1591. $context['sub_template'] = 'install_options';
  1592. $context['package_ftp_server'] = isset($modSettings['package_server']) ? $modSettings['package_server'] : 'localhost';
  1593. $context['package_ftp_port'] = isset($modSettings['package_port']) ? $modSettings['package_port'] : '21';
  1594. $context['package_ftp_username'] = isset($modSettings['package_username']) ? $modSettings['package_username'] : $default_username;
  1595. $context['package_make_backups'] = !empty($modSettings['package_make_backups']);
  1596. $context['package_make_full_backups'] = !empty($modSettings['package_make_full_backups']);
  1597. }
  1598. /**
  1599. * List operations
  1600. */
  1601. function ViewOperations()
  1602. {
  1603. global $context, $txt, $boarddir, $sourcedir, $smcFunc, $modSettings;
  1604. // Can't be in here buddy.
  1605. isAllowedTo('admin_forum');
  1606. // We need to know the operation key for the search and replace, mod file looking at, is it a board mod?
  1607. if (!isset($_REQUEST['operation_key'], $_REQUEST['filename']) && !is_numeric($_REQUEST['operation_key']))
  1608. fatal_lang_error('operation_invalid', 'general');
  1609. // Load the required file.
  1610. require_once($sourcedir . '/Subs-Package.php');
  1611. // Uninstalling the mod?
  1612. $reverse = isset($_REQUEST['reverse']) ? true : false;
  1613. // Get the base name.
  1614. $context['filename'] = preg_replace('~[\.]+~', '.', $_REQUEST['package']);
  1615. // We need to extract this again.
  1616. if (is_file($boarddir . '/Packages/' . $context['filename']))
  1617. {
  1618. $context['extracted_files'] = read_tgz_file($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  1619. if ($context['extracted_files'] && !file_exists($boarddir . '/Packages/temp/package-info.xml'))
  1620. foreach ($context['extracted_files'] as $file)
  1621. if (basename($file['filename']) == 'package-info.xml')
  1622. {
  1623. $context['base_path'] = dirname($file['filename']) . '/';
  1624. break;
  1625. }
  1626. if (!isset($context['base_path']))
  1627. $context['base_path'] = '';
  1628. }
  1629. elseif (is_dir($boarddir . '/Packages/' . $context['filename']))
  1630. {
  1631. copytree($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  1632. $context['extracted_files'] = listtree($boarddir . '/Packages/temp');
  1633. $context['base_path'] = '';
  1634. }
  1635. // Load up any custom themes we may want to install into...
  1636. $request = $smcFunc['db_query']('', '
  1637. SELECT id_theme, variable, value
  1638. FROM {db_prefix}themes
  1639. WHERE (id_theme = {int:default_theme} OR id_theme IN ({array_int:known_theme_list}))
  1640. AND variable IN ({string:name}, {string:theme_dir})',
  1641. array(
  1642. 'known_theme_list' => explode(',', $modSettings['knownThemes']),
  1643. 'default_theme' => 1,
  1644. 'name' => 'name',
  1645. 'theme_dir' => 'theme_dir',
  1646. )
  1647. );
  1648. $theme_paths = array();
  1649. while ($row = $smcFunc['db_fetch_assoc']($request))
  1650. $theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
  1651. $smcFunc['db_free_result']($request);
  1652. // Boardmod?
  1653. if (isset($_REQUEST['boardmod']))
  1654. $mod_actions = parseBoardMod(@file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths);
  1655. else
  1656. $mod_actions = parseModification(@file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths);
  1657. // Ok lets get the content of the file.
  1658. $context['operations'] = array(
  1659. 'search' => strtr(htmlspecialchars($mod_actions[$_REQUEST['operation_key']]['search_original']), array('[' => '&#91;', ']' => '&#93;')),
  1660. 'replace' => strtr(htmlspecialchars($mod_actions[$_REQUEST['operation_key']]['replace_original']), array('[' => '&#91;', ']' => '&#93;')),
  1661. 'position' => $mod_actions[$_REQUEST['operation_key']]['position'],
  1662. );
  1663. // Let's do some formatting...
  1664. $operation_text = $context['operations']['position'] == 'replace' ? 'operation_replace' : ($context['operations']['position'] == 'before' ? 'operation_after' : 'operation_before');
  1665. $context['operations']['search'] = parse_bbc('[code=' . $txt['operation_find'] . ']' . ($context['operations']['position'] == 'end' ? '?&gt;' : $context['operations']['search']) . '[/code]');
  1666. $context['operations']['replace'] = parse_bbc('[code=' . $txt[$operation_text] . ']' . $context['operations']['replace'] . '[/code]');
  1667. // No layers
  1668. $context['template_layers'] = array();
  1669. $context['sub_template'] = 'view_operations';
  1670. }
  1671. /**
  1672. * Allow the admin to reset permissions on files.
  1673. */
  1674. function PackagePermissions()
  1675. {
  1676. global $context, $txt, $modSettings, $boarddir, $sourcedir, $cachedir, $smcFunc, $package_ftp;
  1677. // Let's try and be good, yes?
  1678. checkSession('get');
  1679. // If we're restoring permissions this is just a pass through really.
  1680. if (isset($_GET['restore']))
  1681. {
  1682. create_chmod_control(array(), array(), true);
  1683. fatal_lang_error('no_access', false);
  1684. }
  1685. // This is a memory eat.
  1686. setMemoryLimit('128M');
  1687. @set_time_limit(600);
  1688. // Load up some FTP stuff.
  1689. create_chmod_control();
  1690. if (empty($package_ftp) && !isset($_POST['skip_ftp']))
  1691. {
  1692. require_once($sourcedir . '/Class-Package.php');
  1693. $ftp = new ftp_connection(null);
  1694. list ($username, $detect_path, $found_path) = $ftp->detect_path($boarddir);
  1695. $context['package_ftp'] = array(
  1696. 'server' => isset($modSettings['package_server']) ? $modSettings['package_server'] : 'localhost',
  1697. 'port' => isset($modSettings['package_port']) ? $modSettings['package_port'] : '21',
  1698. 'username' => empty($username) ? (isset($modSettings['package_username']) ? $modSettings['package_username'] : '') : $username,
  1699. 'path' => $detect_path,
  1700. 'form_elements_only' => true,
  1701. );
  1702. }
  1703. else
  1704. $context['ftp_connected'] = true;
  1705. // Define the template.
  1706. $context['page_title'] = $txt['package_file_perms'];
  1707. $context['sub_template'] = 'file_permissions';
  1708. // Define what files we're interested in, as a tree.
  1709. $context['file_tree'] = array(
  1710. strtr($boarddir, array('\\' => '/')) => array(
  1711. 'type' => 'dir',
  1712. 'contents' => array(
  1713. 'agreement.txt' => array(
  1714. 'type' => 'file',
  1715. 'writable_on' => 'standard',
  1716. ),
  1717. 'Settings.php' => array(
  1718. 'type' => 'file',
  1719. 'writable_on' => 'restrictive',
  1720. ),
  1721. 'Settings_bak.php' => array(
  1722. 'type' => 'file',
  1723. 'writable_on' => 'restrictive',
  1724. ),
  1725. 'attachments' => array(
  1726. 'type' => 'dir',
  1727. 'writable_on' => 'restrictive',
  1728. ),
  1729. 'avatars' => array(
  1730. 'type' => 'dir',
  1731. 'writable_on' => 'standard',
  1732. ),
  1733. 'cache' => array(
  1734. 'type' => 'dir',
  1735. 'writable_on' => 'restrictive',
  1736. ),
  1737. 'custom_avatar_dir' => array(
  1738. 'type' => 'dir',
  1739. 'writable_on' => 'restrictive',
  1740. ),
  1741. 'Smileys' => array(
  1742. 'type' => 'dir_recursive',
  1743. 'writable_on' => 'standard',
  1744. ),
  1745. 'Sources' => array(
  1746. 'type' => 'dir',
  1747. 'list_contents' => true,
  1748. 'writable_on' => 'standard',
  1749. ),
  1750. 'Themes' => array(
  1751. 'type' => 'dir_recursive',
  1752. 'writable_on' => 'standard',
  1753. 'contents' => array(
  1754. 'default' => array(
  1755. 'type' => 'dir_recursive',
  1756. 'list_contents' => true,
  1757. 'contents' => array(
  1758. 'languages' => array(
  1759. 'type' => 'dir',
  1760. 'list_contents' => true,
  1761. ),
  1762. ),
  1763. ),
  1764. ),
  1765. ),
  1766. 'Packages' => array(
  1767. 'type' => 'dir',
  1768. 'writable_on' => 'standard',
  1769. 'contents' => array(
  1770. 'temp' => array(
  1771. 'type' => 'dir',
  1772. ),
  1773. 'backup' => array(
  1774. 'type' => 'dir',
  1775. ),
  1776. 'installed.list' => array(
  1777. 'type' => 'file',
  1778. 'writable_on' => 'standard',
  1779. ),
  1780. ),
  1781. ),
  1782. ),
  1783. ),
  1784. );
  1785. // Directories that can move.
  1786. if (substr($sourcedir, 0, strlen($boarddir)) != $boarddir)
  1787. {
  1788. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Sources']);
  1789. $context['file_tree'][strtr($sourcedir, array('\\' => '/'))] = array(
  1790. 'type' => 'dir',
  1791. 'list_contents' => true,
  1792. 'writable_on' => 'standard',
  1793. );
  1794. }
  1795. // Moved the cache?
  1796. if (substr($cachedir, 0, strlen($boarddir)) != $boarddir)
  1797. {
  1798. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['cache']);
  1799. $context['file_tree'][strtr($cachedir, array('\\' => '/'))] = array(
  1800. 'type' => 'dir',
  1801. 'list_contents' => false,
  1802. 'writable_on' => 'restrictive',
  1803. );
  1804. }
  1805. // Are we using multiple attachment directories?
  1806. if (!empty($modSettings['currentAttachmentUploadDir']))
  1807. {
  1808. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['attachments']);
  1809. if (!is_array($modSettings['attachmentUploadDir']))
  1810. $modSettings['attachmentUploadDir'] = unserialize($modSettings['attachmentUploadDir']);
  1811. // @todo Should we suggest non-current directories be read only?
  1812. foreach ($modSettings['attachmentUploadDir'] as $dir)
  1813. $context['file_tree'][strtr($dir, array('\\' => '/'))] = array(
  1814. 'type' => 'dir',
  1815. 'writable_on' => 'restrictive',
  1816. );
  1817. }
  1818. elseif (substr($modSettings['attachmentUploadDir'], 0, strlen($boarddir)) != $boarddir)
  1819. {
  1820. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['attachments']);
  1821. $context['file_tree'][strtr($modSettings['attachmentUploadDir'], array('\\' => '/'))] = array(
  1822. 'type' => 'dir',
  1823. 'writable_on' => 'restrictive',
  1824. );
  1825. }
  1826. if (substr($modSettings['smileys_dir'], 0, strlen($boarddir)) != $boarddir)
  1827. {
  1828. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Smileys']);
  1829. $context['file_tree'][strtr($modSettings['smileys_dir'], array('\\' => '/'))] = array(
  1830. 'type' => 'dir_recursive',
  1831. 'writable_on' => 'standard',
  1832. );
  1833. }
  1834. if (substr($modSettings['avatar_directory'], 0, strlen($boarddir)) != $boarddir)
  1835. {
  1836. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['avatars']);
  1837. $context['file_tree'][strtr($modSettings['avatar_directory'], array('\\' => '/'))] = array(
  1838. 'type' => 'dir',
  1839. 'writable_on' => 'standard',
  1840. );
  1841. }
  1842. if (isset($modSettings['custom_avatar_dir']) && substr($modSettings['custom_avatar_dir'], 0, strlen($boarddir)) != $boarddir)
  1843. {
  1844. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['custom_avatar_dir']);
  1845. $context['file_tree'][strtr($modSettings['custom_avatar_dir'], array('\\' => '/'))] = array(
  1846. 'type' => 'dir',
  1847. 'writable_on' => 'restrictive',
  1848. );
  1849. }
  1850. // Load up any custom themes.
  1851. $request = $smcFunc['db_query']('', '
  1852. SELECT value
  1853. FROM {db_prefix}themes
  1854. WHERE id_theme > {int:default_theme_id}
  1855. AND id_member = {int:guest_id}
  1856. AND variable = {string:theme_dir}
  1857. ORDER BY value ASC',
  1858. array(
  1859. 'default_theme_id' => 1,
  1860. 'guest_id' => 0,
  1861. 'theme_dir' => 'theme_dir',
  1862. )
  1863. );
  1864. while ($row = $smcFunc['db_fetch_assoc']($request))
  1865. {
  1866. if (substr(strtolower(strtr($row['value'], array('\\' => '/'))), 0, strlen($boarddir) + 7) == strtolower(strtr($boarddir, array('\\' => '/')) . '/Themes'))
  1867. $context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Themes']['contents'][substr($row['value'], strlen($boarddir) + 8)] = array(
  1868. 'type' => 'dir_recursive',
  1869. 'list_contents' => true,
  1870. 'contents' => array(
  1871. 'languages' => array(
  1872. 'type' => 'dir',
  1873. 'list_contents' => true,
  1874. ),
  1875. ),
  1876. );
  1877. else
  1878. {
  1879. $context['file_tree'][strtr($row['value'], array('\\' => '/'))] = array(
  1880. 'type' => 'dir_recursive',
  1881. 'list_contents' => true,
  1882. 'contents' => array(
  1883. 'languages' => array(
  1884. 'type' => 'dir',
  1885. 'list_contents' => true,
  1886. ),
  1887. ),
  1888. );
  1889. }
  1890. }
  1891. $smcFunc['db_free_result']($request);
  1892. // If we're submitting then let's move on to another function to keep things cleaner..
  1893. if (isset($_POST['action_changes']))
  1894. return PackagePermissionsAction();
  1895. $context['look_for'] = array();
  1896. // Are we looking for a particular tree - normally an expansion?
  1897. if (!empty($_REQUEST['find']))
  1898. $context['look_for'][] = base64_decode($_REQUEST['find']);
  1899. // Only that tree?
  1900. $context['only_find'] = isset($_GET['xml']) && !empty($_REQUEST['onlyfind']) ? $_REQUEST['onlyfind'] : '';
  1901. if ($context['only_find'])
  1902. $context['look_for'][] = $context['only_find'];
  1903. // Have we got a load of back-catalogue trees to expand from a submit etc?
  1904. if (!empty($_GET['back_look']))
  1905. {
  1906. $potententialTrees = unserialize(base64_decode($_GET['back_look']));
  1907. foreach ($potententialTrees as $tree)
  1908. $context['look_for'][] = $tree;
  1909. }
  1910. // ... maybe posted?
  1911. if (!empty($_POST['back_look']))
  1912. $context['only_find'] = array_merge($context['only_find'], $_POST['back_look']);
  1913. $context['back_look_data'] = base64_encode(serialize(array_slice($context['look_for'], 0, 15)));
  1914. // Are we finding more files than first thought?
  1915. $context['file_offset'] = !empty($_REQUEST['fileoffset']) ? (int) $_REQUEST['fileoffset'] : 0;
  1916. // Don't list more than this many files in a directory.
  1917. $context['file_limit'] = 150;
  1918. // How many levels shall we show?
  1919. $context['default_level'] = empty($context['only_find']) ? 2 : 25;
  1920. // This will be used if we end up catching XML data.
  1921. $context['xml_data'] = array(
  1922. 'roots' => array(
  1923. 'identifier' => 'root',
  1924. 'children' => array(
  1925. array(
  1926. 'value' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find']),
  1927. ),
  1928. ),
  1929. ),
  1930. 'folders' => array(
  1931. 'identifier' => 'folder',
  1932. 'children' => array(),
  1933. ),
  1934. );
  1935. foreach ($context['file_tree'] as $path => $data)
  1936. {
  1937. // Run this directory.
  1938. if (file_exists($path) && (empty($context['only_find']) || substr($context['only_find'], 0, strlen($path)) == $path))
  1939. {
  1940. // Get the first level down only.
  1941. fetchPerms__recursive($path, $context['file_tree'][$path], 1);
  1942. $context['file_tree'][$path]['perms'] = array(
  1943. 'chmod' => @is_writable($path),
  1944. 'perms' => @fileperms($path),
  1945. );
  1946. }
  1947. else
  1948. unset($context['file_tree'][$path]);
  1949. }
  1950. // Is this actually xml?
  1951. if (isset($_GET['xml']))
  1952. {
  1953. loadTemplate('Xml');
  1954. $context['sub_template'] = 'generic_xml';
  1955. $context['template_layers'] = array();
  1956. }
  1957. }
  1958. /**
  1959. * Checkes the permissions of all the areas that will be affected by the package
  1960. *
  1961. * @param type $path
  1962. * @param type $data
  1963. * @param type $level
  1964. * @return type
  1965. */
  1966. function fetchPerms__recursive($path, &$data, $level)
  1967. {
  1968. global $context;
  1969. $isLikelyPath = false;
  1970. foreach ($context['look_for'] as $possiblePath)
  1971. if (substr($possiblePath, 0, strlen($path)) == $path)
  1972. $isLikelyPath = true;
  1973. // Is this where we stop?
  1974. if (isset($_GET['xml']) && !empty($context['look_for']) && !$isLikelyPath)
  1975. return;
  1976. elseif ($level > $context['default_level'] && !$isLikelyPath)
  1977. return;
  1978. // Are we actually interested in saving this data?
  1979. $save_data = empty($context['only_find']) || $context['only_find'] == $path;
  1980. // @todo Shouldn't happen - but better error message?
  1981. if (!is_dir($path))
  1982. fatal_lang_error('no_access', false);
  1983. // This is where we put stuff we've found for sorting.
  1984. $foundData = array(
  1985. 'files' => array(),
  1986. 'folders' => array(),
  1987. );
  1988. $dh = opendir($path);
  1989. while ($entry = readdir($dh))
  1990. {
  1991. // Some kind of file?
  1992. if (is_file($path . '/' . $entry))
  1993. {
  1994. // Are we listing PHP files in this directory?
  1995. if ($save_data && !empty($data['list_contents']) && substr($entry, -4) == '.php')
  1996. $foundData['files'][$entry] = true;
  1997. // A file we were looking for.
  1998. elseif ($save_data && isset($data['contents'][$entry]))
  1999. $foundData['files'][$entry] = true;
  2000. }
  2001. // It's a directory - we're interested one way or another, probably...
  2002. elseif ($entry != '.' && $entry != '..')
  2003. {
  2004. // Going further?
  2005. if ((!empty($data['type']) && $data['type'] == 'dir_recursive') || (isset($data['contents'][$entry]) && (!empty($data['contents'][$entry]['list_contents']) || (!empty($data['contents'][$entry]['type']) && $data['contents'][$entry]['type'] == 'dir_recursive'))))
  2006. {
  2007. if (!isset($data['contents'][$entry]))
  2008. $foundData['folders'][$entry] = 'dir_recursive';
  2009. else
  2010. $foundData['folders'][$entry] = true;
  2011. // If this wasn't expected inherit the recusiveness...
  2012. if (!isset($data['contents'][$entry]))
  2013. // We need to do this as we will be going all recursive.
  2014. $data['contents'][$entry] = array(
  2015. 'type' => 'dir_recursive',
  2016. );
  2017. // Actually do the recursive stuff...
  2018. fetchPerms__recursive($path . '/' . $entry, $data['contents'][$entry], $level + 1);
  2019. }
  2020. // Maybe it is a folder we are not descending into.
  2021. elseif (isset($data['contents'][$entry]))
  2022. $foundData['folders'][$entry] = true;
  2023. // Otherwise we stop here.
  2024. }
  2025. }
  2026. closedir($dh);
  2027. // Nothing to see here?
  2028. if (!$save_data)
  2029. return;
  2030. // Now actually add the data, starting with the folders.
  2031. ksort($foundData['folders']);
  2032. foreach ($foundData['folders'] as $folder => $type)
  2033. {
  2034. $additional_data = array(
  2035. 'perms' => array(
  2036. 'chmod' => @is_writable($path . '/' . $folder),
  2037. 'perms' => @fileperms($path . '/' . $folder),
  2038. ),
  2039. );
  2040. if ($type !== true)
  2041. $additional_data['type'] = $type;
  2042. // If there's an offset ignore any folders in XML mode.
  2043. if (isset($_GET['xml']) && $context['file_offset'] == 0)
  2044. {
  2045. $context['xml_data']['folders']['children'][] = array(
  2046. 'attributes' => array(
  2047. 'writable' => $additional_data['perms']['chmod'] ? 1 : 0,
  2048. 'permissions' => substr(sprintf('%o', $additional_data['perms']['perms']), -4),
  2049. 'folder' => 1,
  2050. 'path' => $context['only_find'],
  2051. 'level' => $level,
  2052. 'more' => 0,
  2053. 'offset' => $context['file_offset'],
  2054. 'my_ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find'] . '/' . $folder),
  2055. 'ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find']),
  2056. ),
  2057. 'value' => $folder,
  2058. );
  2059. }
  2060. elseif (!isset($_GET['xml']))
  2061. {
  2062. if (isset($data['contents'][$folder]))
  2063. $data['contents'][$folder] = array_merge($data['contents'][$folder], $additional_data);
  2064. else
  2065. $data['contents'][$folder] = $additional_data;
  2066. }
  2067. }
  2068. // Now we want to do a similar thing with files.
  2069. ksort($foundData['files']);
  2070. $counter = -1;
  2071. foreach ($foundData['files'] as $file => $dummy)
  2072. {
  2073. $counter++;
  2074. // Have we reached our offset?
  2075. if ($context['file_offset'] > $counter)
  2076. continue;
  2077. // Gone too far?
  2078. if ($counter > ($context['file_offset'] + $context['file_limit']))
  2079. continue;
  2080. $additional_data = array(
  2081. 'perms' => array(
  2082. 'chmod' => @is_writable($path . '/' . $file),
  2083. 'perms' => @fileperms($path . '/' . $file),
  2084. ),
  2085. );
  2086. // XML?
  2087. if (isset($_GET['xml']))
  2088. {
  2089. $context['xml_data']['folders']['children'][] = array(
  2090. 'attributes' => array(
  2091. 'writable' => $additional_data['perms']['chmod'] ? 1 : 0,
  2092. 'permissions' => substr(sprintf('%o', $additional_data['perms']['perms']), -4),
  2093. 'folder' => 0,
  2094. 'path' => $context['only_find'],
  2095. 'level' => $level,
  2096. 'more' => $counter == ($context['file_offset'] + $context['file_limit']) ? 1 : 0,
  2097. 'offset' => $context['file_offset'],
  2098. 'my_ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find'] . '/' . $file),
  2099. 'ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find']),
  2100. ),
  2101. 'value' => $file,
  2102. );
  2103. }
  2104. elseif ($counter != ($context['file_offset'] + $context['file_limit']))
  2105. {
  2106. if (isset($data['contents'][$file]))
  2107. $data['contents'][$file] = array_merge($data['contents'][$file], $additional_data);
  2108. else
  2109. $data['contents'][$file] = $additional_data;
  2110. }
  2111. }
  2112. }
  2113. /**
  2114. * Actually action the permission changes they want.
  2115. */
  2116. function PackagePermissionsAction()
  2117. {
  2118. global $context, $txt, $time_start, $package_ftp;
  2119. umask(0);
  2120. $timeout_limit = 5;
  2121. $context['method'] = $_POST['method'] == 'individual' ? 'individual' : 'predefined';
  2122. $context['sub_template'] = 'action_permissions';
  2123. $context['page_title'] = $txt['package_file_perms_applying'];
  2124. $context['back_look_data'] = isset($_POST['back_look']) ? $_POST['back_look'] : array();
  2125. // Skipping use of FTP?
  2126. if (empty($package_ftp))
  2127. $context['skip_ftp'] = true;
  2128. // We'll start off in a good place, security. Make sure that if we're dealing with individual files that they seem in the right place.
  2129. if ($context['method'] == 'individual')
  2130. {
  2131. // Only these path roots are legal.
  2132. $legal_roots = array_keys($context['file_tree']);
  2133. $context['custom_value'] = (int) $_POST['custom_value'];
  2134. // Continuing?
  2135. if (isset($_POST['toProcess']))
  2136. $_POST['permStatus'] = unserialize(base64_decode($_POST['toProcess']));
  2137. if (isset($_POST['permStatus']))
  2138. {
  2139. $context['to_process'] = array();
  2140. $validate_custom = false;
  2141. foreach ($_POST['permStatus'] as $path => $status)
  2142. {
  2143. // Nothing to see here?
  2144. if ($status == 'no_change')
  2145. continue;
  2146. $legal = false;
  2147. foreach ($legal_roots as $root)
  2148. if (substr($path, 0, strlen($root)) == $root)
  2149. $legal = true;
  2150. if (!$legal)
  2151. continue;
  2152. // Check it exists.
  2153. if (!file_exists($path))
  2154. continue;
  2155. if ($status == 'custom')
  2156. $validate_custom = true;
  2157. // Now add it.
  2158. $context['to_process'][$path] = $status;
  2159. }
  2160. $context['total_items'] = isset($_POST['totalItems']) ? (int) $_POST['totalItems'] : count($context['to_process']);
  2161. // Make sure the chmod status is valid?
  2162. if ($validate_custom)
  2163. {
  2164. if (preg_match('~^[4567][4567][4567]$~', $context['custom_value']) == false)
  2165. fatal_error($txt['chmod_value_invalid']);
  2166. }
  2167. // Nothing to do?
  2168. if (empty($context['to_process']))
  2169. redirectexit('action=admin;area=packages;sa=perms' . (!empty($context['back_look_data']) ? ';back_look=' . base64_encode(serialize($context['back_look_data'])) : '') . ';' . $context['session_var'] . '=' . $context['session_id']);
  2170. }
  2171. // Should never get here,
  2172. else
  2173. fatal_lang_error('no_access', false);
  2174. // Setup the custom value.
  2175. $custom_value = octdec('0' . $context['custom_value']);
  2176. // Start processing items.
  2177. foreach ($context['to_process'] as $path => $status)
  2178. {
  2179. if (in_array($status, array('execute', 'writable', 'read')))
  2180. package_chmod($path, $status);
  2181. elseif ($status == 'custom' && !empty($custom_value))
  2182. {
  2183. // Use FTP if we have it.
  2184. if (!empty($package_ftp) && !empty($_SESSION['pack_ftp']))
  2185. {
  2186. $ftp_file = strtr($path, array($_SESSION['pack_ftp']['root'] => ''));
  2187. $package_ftp->chmod($ftp_file, $custom_value);
  2188. }
  2189. else
  2190. @chmod($path, $custom_value);
  2191. }
  2192. // This fish is fried...
  2193. unset($context['to_process'][$path]);
  2194. // See if we're out of time?
  2195. if (time() - array_sum(explode(' ', $time_start)) > $timeout_limit)
  2196. return false;
  2197. }
  2198. }
  2199. // If predefined this is a little different.
  2200. else
  2201. {
  2202. $context['predefined_type'] = isset($_POST['predefined']) ? $_POST['predefined'] : 'restricted';
  2203. $context['total_items'] = isset($_POST['totalItems']) ? (int) $_POST['totalItems'] : 0;
  2204. $context['directory_list'] = isset($_POST['dirList']) ? unserialize(base64_decode($_POST['dirList'])) : array();
  2205. $context['file_offset'] = isset($_POST['fileOffset']) ? (int) $_POST['fileOffset'] : 0;
  2206. // Haven't counted the items yet?
  2207. if (empty($context['total_items']))
  2208. {
  2209. /**
  2210. * Counts all the directorys under a given path
  2211. *
  2212. * @param type $dir
  2213. * @return integer
  2214. */
  2215. function count_directories__recursive($dir)
  2216. {
  2217. global $context;
  2218. $count = 0;
  2219. $dh = @opendir($dir);
  2220. while ($entry = readdir($dh))
  2221. {
  2222. if ($entry != '.' && $entry != '..' && is_dir($dir . '/' . $entry))
  2223. {
  2224. $context['directory_list'][$dir . '/' . $entry] = 1;
  2225. $count++;
  2226. $count += count_directories__recursive($dir . '/' . $entry);
  2227. }
  2228. }
  2229. closedir($dh);
  2230. return $count;
  2231. }
  2232. foreach ($context['file_tree'] as $path => $data)
  2233. {
  2234. if (is_dir($path))
  2235. {
  2236. $context['directory_list'][$path] = 1;
  2237. $context['total_items'] += count_directories__recursive($path);
  2238. $context['total_items']++;
  2239. }
  2240. }
  2241. }
  2242. // Have we built up our list of special files?
  2243. if (!isset($_POST['specialFiles']) && $context['predefined_type'] != 'free')
  2244. {
  2245. $context['special_files'] = array();
  2246. /**
  2247. * Builds a list of special files recusivly for a given path
  2248. *
  2249. * @param type $path
  2250. * @param type $data
  2251. */
  2252. function build_special_files__recursive($path, &$data)
  2253. {
  2254. global $context;
  2255. if (!empty($data['writable_on']))
  2256. if ($context['predefined_type'] == 'standard' || $data['writable_on'] == 'restrictive')
  2257. $context['special_files'][$path] = 1;
  2258. if (!empty($data['contents']))
  2259. foreach ($data['contents'] as $name => $contents)
  2260. build_special_files__recursive($path . '/' . $name, $contents);
  2261. }
  2262. foreach ($context['file_tree'] as $path => $data)
  2263. build_special_files__recursive($path, $data);
  2264. }
  2265. // Free doesn't need special files.
  2266. elseif ($context['predefined_type'] == 'free')
  2267. $context['special_files'] = array();
  2268. else
  2269. $context['special_files'] = unserialize(base64_decode($_POST['specialFiles']));
  2270. // Now we definitely know where we are, we need to go through again doing the chmod!
  2271. foreach ($context['directory_list'] as $path => $dummy)
  2272. {
  2273. // Do the contents of the directory first.
  2274. $dh = @opendir($path);
  2275. $file_count = 0;
  2276. $dont_chmod = false;
  2277. while ($entry = readdir($dh))
  2278. {
  2279. $file_count++;
  2280. // Actually process this file?
  2281. if (!$dont_chmod && !is_dir($path . '/' . $entry) && (empty($context['file_offset']) || $context['file_offset'] < $file_count))
  2282. {
  2283. $status = $context['predefined_type'] == 'free' || isset($context['special_files'][$path . '/' . $entry]) ? 'writable' : 'execute';
  2284. package_chmod($path . '/' . $entry, $status);
  2285. }
  2286. // See if we're out of time?
  2287. if (!$dont_chmod && time() - array_sum(explode(' ', $time_start)) > $timeout_limit)
  2288. {
  2289. $dont_chmod = true;
  2290. // Don't do this again.
  2291. $context['file_offset'] = $file_count;
  2292. }
  2293. }
  2294. closedir($dh);
  2295. // If this is set it means we timed out half way through.
  2296. if ($dont_chmod)
  2297. {
  2298. $context['total_files'] = $file_count;
  2299. return false;
  2300. }
  2301. // Do the actual directory.
  2302. $status = $context['predefined_type'] == 'free' || isset($context['special_files'][$path]) ? 'writable' : 'execute';
  2303. package_chmod($path, $status);
  2304. // We've finished the directory so no file offset, and no record.
  2305. $context['file_offset'] = 0;
  2306. unset($context['directory_list'][$path]);
  2307. // See if we're out of time?
  2308. if (time() - array_sum(explode(' ', $time_start)) > $timeout_limit)
  2309. return false;
  2310. }
  2311. }
  2312. // If we're here we are done!
  2313. redirectexit('action=admin;area=packages;sa=perms' . (!empty($context['back_look_data']) ? ';back_look=' . base64_encode(serialize($context['back_look_data'])) : '') . ';' . $context['session_var'] . '=' . $context['session_id']);
  2314. }
  2315. /**
  2316. * Test an FTP connection.
  2317. */
  2318. function PackageFTPTest()
  2319. {
  2320. global $context, $txt, $package_ftp;
  2321. checkSession('get');
  2322. // Try to make the FTP connection.
  2323. create_chmod_control(array(), array('force_find_error' => true));
  2324. // Deal with the template stuff.
  2325. loadTemplate('Xml');
  2326. $context['sub_template'] = 'generic_xml';
  2327. $context['template_layers'] = array();
  2328. // Define the return data, this is simple.
  2329. $context['xml_data'] = array(
  2330. 'results' => array(
  2331. 'identifier' => 'result',
  2332. 'children' => array(
  2333. array(
  2334. 'attributes' => array(
  2335. 'success' => !empty($package_ftp) ? 1 : 0,
  2336. ),
  2337. 'value' => !empty($package_ftp) ? $txt['package_ftp_test_success'] : (isset($context['package_ftp'], $context['package_ftp']['error']) ? $context['package_ftp']['error'] : $txt['package_ftp_test_failed']),
  2338. ),
  2339. ),
  2340. ),
  2341. );
  2342. }
  2343. ?>