Packages.php 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625
  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. checkSubmitOnce('register');
  667. }
  668. /**
  669. * Apply another type of (avatar, language, etc.) package.
  670. */
  671. function PackageInstall()
  672. {
  673. global $boarddir, $txt, $context, $boardurl, $scripturl, $sourcedir, $modSettings;
  674. global $user_info, $smcFunc;
  675. // Make sure we don't install this mod twice.
  676. checkSubmitOnce('check');
  677. checkSession();
  678. // If there's no file, what are we installing?
  679. if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
  680. redirectexit('action=admin;area=packages');
  681. $context['filename'] = $_REQUEST['package'];
  682. // If this is an uninstall, we'll have an id.
  683. $context['install_id'] = isset($_REQUEST['pid']) ? (int) $_REQUEST['pid'] : 0;
  684. require_once($sourcedir . '/Subs-Package.php');
  685. // @todo Perhaps do it in steps, if necessary?
  686. $context['uninstalling'] = $_REQUEST['sa'] == 'uninstall2';
  687. // Set up the linktree for other.
  688. $context['linktree'][count($context['linktree']) - 1] = array(
  689. 'url' => $scripturl . '?action=admin;area=packages;sa=browse',
  690. 'name' => $context['uninstalling'] ? $txt['uninstall'] : $txt['extracting']
  691. );
  692. $context['page_title'] .= ' - ' . ($context['uninstalling'] ? $txt['uninstall'] : $txt['extracting']);
  693. $context['sub_template'] = 'extract_package';
  694. if (!file_exists($boarddir . '/Packages/' . $context['filename']))
  695. fatal_lang_error('package_no_file', false);
  696. // Load up the package FTP information?
  697. create_chmod_control(array(), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=' . $_REQUEST['sa'] . ';package=' . $_REQUEST['package']));
  698. // Make sure temp directory exists and is empty!
  699. if (file_exists($boarddir . '/Packages/temp'))
  700. deltree($boarddir . '/Packages/temp', false);
  701. else
  702. mktree($boarddir . '/Packages/temp', 0777);
  703. // Let the unpacker do the work.
  704. if (is_file($boarddir . '/Packages/' . $context['filename']))
  705. {
  706. $context['extracted_files'] = read_tgz_file($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  707. if (!file_exists($boarddir . '/Packages/temp/package-info.xml'))
  708. foreach ($context['extracted_files'] as $file)
  709. if (basename($file['filename']) == 'package-info.xml')
  710. {
  711. $context['base_path'] = dirname($file['filename']) . '/';
  712. break;
  713. }
  714. if (!isset($context['base_path']))
  715. $context['base_path'] = '';
  716. }
  717. elseif (is_dir($boarddir . '/Packages/' . $context['filename']))
  718. {
  719. copytree($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  720. $context['extracted_files'] = listtree($boarddir . '/Packages/temp');
  721. $context['base_path'] = '';
  722. }
  723. else
  724. fatal_lang_error('no_access', false);
  725. // Are we installing this into any custom themes?
  726. $custom_themes = array(1);
  727. $known_themes = explode(',', $modSettings['knownThemes']);
  728. if (!empty($_POST['custom_theme']))
  729. {
  730. foreach ($_POST['custom_theme'] as $tid)
  731. if (in_array($tid, $known_themes))
  732. $custom_themes[] = (int) $tid;
  733. }
  734. // Now load up the paths of the themes that we need to know about.
  735. $request = $smcFunc['db_query']('', '
  736. SELECT id_theme, variable, value
  737. FROM {db_prefix}themes
  738. WHERE id_theme IN ({array_int:custom_themes})
  739. AND variable IN ({string:name}, {string:theme_dir})',
  740. array(
  741. 'custom_themes' => $custom_themes,
  742. 'name' => 'name',
  743. 'theme_dir' => 'theme_dir',
  744. )
  745. );
  746. $theme_paths = array();
  747. $themes_installed = array(1);
  748. while ($row = $smcFunc['db_fetch_assoc']($request))
  749. $theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
  750. $smcFunc['db_free_result']($request);
  751. // Are there any theme copying that we want to take place?
  752. $context['theme_copies'] = array(
  753. 'require-file' => array(),
  754. 'require-dir' => array(),
  755. );
  756. if (!empty($_POST['theme_changes']))
  757. {
  758. foreach ($_POST['theme_changes'] as $change)
  759. {
  760. if (empty($change))
  761. continue;
  762. $theme_data = unserialize(base64_decode($change));
  763. if (empty($theme_data['type']))
  764. continue;
  765. $themes_installed[] = $theme_data['id'];
  766. $context['theme_copies'][$theme_data['type']][$theme_data['orig']][] = $theme_data['future'];
  767. }
  768. }
  769. // Get the package info...
  770. $packageInfo = getPackageInfo($context['filename']);
  771. if (!is_array($packageInfo))
  772. fatal_lang_error($packageInfo);
  773. $packageInfo['filename'] = $context['filename'];
  774. // Set the type of extraction...
  775. $context['extract_type'] = isset($packageInfo['type']) ? $packageInfo['type'] : 'modification';
  776. // Create a backup file to roll back to! (but if they do this more than once, don't run it a zillion times.)
  777. if (!empty($modSettings['package_make_full_backups']) && (!isset($_SESSION['last_backup_for']) || $_SESSION['last_backup_for'] != $context['filename'] . ($context['uninstalling'] ? '$$' : '$')))
  778. {
  779. $_SESSION['last_backup_for'] = $context['filename'] . ($context['uninstalling'] ? '$$' : '$');
  780. // @todo Internationalize this?
  781. package_create_backup(($context['uninstalling'] ? 'backup_' : 'before_') . strtok($context['filename'], '.'));
  782. }
  783. // The mod isn't installed.... unless proven otherwise.
  784. $context['is_installed'] = false;
  785. // Is it actually installed?
  786. $request = $smcFunc['db_query']('', '
  787. SELECT version, themes_installed, db_changes
  788. FROM {db_prefix}log_packages
  789. WHERE package_id = {string:current_package}
  790. AND install_state != {int:not_installed}
  791. ORDER BY time_installed DESC
  792. LIMIT 1',
  793. array(
  794. 'not_installed' => 0,
  795. 'current_package' => $packageInfo['id'],
  796. )
  797. );
  798. while ($row = $smcFunc['db_fetch_assoc']($request))
  799. {
  800. $old_themes = explode(',', $row['themes_installed']);
  801. $old_version = $row['version'];
  802. $db_changes = empty($row['db_changes']) ? array() : unserialize($row['db_changes']);
  803. }
  804. $smcFunc['db_free_result']($request);
  805. // Wait, it's not installed yet!
  806. // @todo Replace with a better error message!
  807. if (!isset($old_version) && $context['uninstalling'])
  808. {
  809. deltree($boarddir . '/Packages/temp');
  810. fatal_error('Hacker?', false);
  811. }
  812. // Uninstalling?
  813. elseif ($context['uninstalling'])
  814. {
  815. $install_log = parsePackageInfo($packageInfo['xml'], false, 'uninstall');
  816. // Gadzooks! There's no uninstaller at all!?
  817. if (empty($install_log))
  818. fatal_lang_error('package_uninstall_cannot', false);
  819. // They can only uninstall from what it was originally installed into.
  820. foreach ($theme_paths as $id => $data)
  821. if ($id != 1 && !in_array($id, $old_themes))
  822. unset($theme_paths[$id]);
  823. }
  824. elseif (isset($old_version) && $old_version != $packageInfo['version'])
  825. {
  826. // Look for an upgrade...
  827. $install_log = parsePackageInfo($packageInfo['xml'], false, 'upgrade', $old_version);
  828. // There was no upgrade....
  829. if (empty($install_log))
  830. $context['is_installed'] = true;
  831. else
  832. {
  833. // Upgrade previous themes only!
  834. foreach ($theme_paths as $id => $data)
  835. if ($id != 1 && !in_array($id, $old_themes))
  836. unset($theme_paths[$id]);
  837. }
  838. }
  839. elseif (isset($old_version) && $old_version == $packageInfo['version'])
  840. $context['is_installed'] = true;
  841. if (!isset($old_version) || $context['is_installed'])
  842. $install_log = parsePackageInfo($packageInfo['xml'], false, 'install');
  843. $context['install_finished'] = false;
  844. // @todo Make a log of any errors that occurred and output them?
  845. if (!empty($install_log))
  846. {
  847. $failed_steps = array();
  848. $failed_count = 0;
  849. foreach ($install_log as $action)
  850. {
  851. $failed_count++;
  852. if ($action['type'] == 'modification' && !empty($action['filename']))
  853. {
  854. if ($action['boardmod'])
  855. $mod_actions = parseBoardMod(file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths);
  856. else
  857. $mod_actions = parseModification(file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths);
  858. // Any errors worth noting?
  859. foreach ($mod_actions as $key => $action)
  860. {
  861. if ($action['type'] == 'failure')
  862. $failed_steps[] = array(
  863. 'file' => $action['filename'],
  864. 'large_step' => $failed_count,
  865. 'sub_step' => $key,
  866. 'theme' => 1,
  867. );
  868. // Gather the themes we installed into.
  869. if (!empty($action['is_custom']))
  870. $themes_installed[] = $action['is_custom'];
  871. }
  872. }
  873. elseif ($action['type'] == 'code' && !empty($action['filename']))
  874. {
  875. // This is just here as reference for what is available.
  876. global $txt, $boarddir, $sourcedir, $modSettings, $context, $settings, $forum_version, $smcFunc;
  877. // Now include the file and be done with it ;).
  878. if (file_exists($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']))
  879. require($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']);
  880. }
  881. elseif ($action['type'] == 'credits')
  882. {
  883. // Time to build the billboard
  884. $credits_tag = array(
  885. 'url' => $action['url'],
  886. 'license' => $action['license'],
  887. 'copyright' => $action['copyright'],
  888. 'title' => $action['title'],
  889. );
  890. }
  891. elseif ($action['type'] == 'hook' && isset($action['hook'], $action['function']))
  892. {
  893. if ($action['reverse'])
  894. remove_integration_function($action['hook'], $action['function'], $action['include_file']);
  895. else
  896. add_integration_function($action['hook'], $action['function'], $action['include_file']);
  897. }
  898. // Only do the database changes on uninstall if requested.
  899. elseif ($action['type'] == 'database' && !empty($action['filename']) && (!$context['uninstalling'] || !empty($_POST['do_db_changes'])))
  900. {
  901. // These can also be there for database changes.
  902. global $txt, $boarddir, $sourcedir, $modSettings, $context, $settings, $forum_version, $smcFunc;
  903. global $db_package_log;
  904. // We'll likely want the package specific database functionality!
  905. db_extend('packages');
  906. // Let the file work its magic ;)
  907. if (file_exists($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']))
  908. require($boarddir . '/Packages/temp/' . $context['base_path'] . $action['filename']);
  909. }
  910. // Handle a redirect...
  911. elseif ($action['type'] == 'redirect' && !empty($action['redirect_url']))
  912. {
  913. $context['redirect_url'] = $action['redirect_url'];
  914. $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']);
  915. $context['redirect_timeout'] = $action['redirect_timeout'];
  916. // Parse out a couple of common urls.
  917. $urls = array(
  918. '$boardurl' => $boardurl,
  919. '$scripturl' => $scripturl,
  920. '$session_var' => $context['session_var'],
  921. '$session_id' => $context['session_id'],
  922. );
  923. $context['redirect_url'] = strtr($context['redirect_url'], $urls);
  924. }
  925. }
  926. package_flush_cache();
  927. // First, ensure this change doesn't get removed by putting a stake in the ground (So to speak).
  928. package_put_contents($boarddir . '/Packages/installed.list', time());
  929. // See if this is already installed, and change it's state as required.
  930. $request = $smcFunc['db_query']('', '
  931. SELECT package_id, install_state, db_changes
  932. FROM {db_prefix}log_packages
  933. WHERE install_state != {int:not_installed}
  934. AND package_id = {string:current_package}
  935. ' . ($context['install_id'] ? ' AND id_install = {int:install_id} ' : '') . '
  936. ORDER BY time_installed DESC
  937. LIMIT 1',
  938. array(
  939. 'not_installed' => 0,
  940. 'install_id' => $context['install_id'],
  941. 'current_package' => $packageInfo['id'],
  942. )
  943. );
  944. $is_upgrade = false;
  945. while ($row = $smcFunc['db_fetch_assoc']($request))
  946. {
  947. // Uninstalling?
  948. if ($context['uninstalling'])
  949. {
  950. $smcFunc['db_query']('', '
  951. UPDATE {db_prefix}log_packages
  952. SET install_state = {int:not_installed}, member_removed = {string:member_name}, id_member_removed = {int:current_member},
  953. time_removed = {int:current_time}
  954. WHERE package_id = {string:package_id}
  955. AND id_install = {int:install_id}',
  956. array(
  957. 'current_member' => $user_info['id'],
  958. 'not_installed' => 0,
  959. 'current_time' => time(),
  960. 'package_id' => $row['package_id'],
  961. 'member_name' => $user_info['name'],
  962. 'install_id' => $context['install_id'],
  963. )
  964. );
  965. }
  966. // Otherwise must be an upgrade.
  967. else
  968. {
  969. $is_upgrade = true;
  970. $old_db_changes = empty($row['db_changes']) ? array() : unserialize($row['db_changes']);
  971. }
  972. }
  973. // Assuming we're not uninstalling, add the entry.
  974. if (!$context['uninstalling'])
  975. {
  976. // Any db changes from older version?
  977. if (!empty($old_db_changes))
  978. $db_package_log = empty($db_package_log) ? $old_db_changes : array_merge($old_db_changes, $db_package_log);
  979. // If there are some database changes we might want to remove then filter them out.
  980. if (!empty($db_package_log))
  981. {
  982. // We're really just checking for entries which are create table AND add columns (etc).
  983. $tables = array();
  984. function sort_table_first($a, $b)
  985. {
  986. if ($a[0] == $b[0])
  987. return 0;
  988. return $a[0] == 'remove_table' ? -1 : 1;
  989. }
  990. usort($db_package_log, 'sort_table_first');
  991. foreach ($db_package_log as $k => $log)
  992. {
  993. if ($log[0] == 'remove_table')
  994. $tables[] = $log[1];
  995. elseif (in_array($log[1], $tables))
  996. unset($db_package_log[$k]);
  997. }
  998. $db_changes = serialize($db_package_log);
  999. }
  1000. else
  1001. $db_changes = '';
  1002. // What themes did we actually install?
  1003. $themes_installed = array_unique($themes_installed);
  1004. $themes_installed = implode(',', $themes_installed);
  1005. // What failed steps?
  1006. $failed_step_insert = serialize($failed_steps);
  1007. // Credits tag?
  1008. $credits_tag = (empty($credits_tag)) ? '' : serialize($credits_tag);
  1009. $smcFunc['db_insert']('',
  1010. '{db_prefix}log_packages',
  1011. array(
  1012. 'filename' => 'string', 'name' => 'string', 'package_id' => 'string', 'version' => 'string',
  1013. 'id_member_installed' => 'int', 'member_installed' => 'string','time_installed' => 'int',
  1014. 'install_state' => 'int', 'failed_steps' => 'string', 'themes_installed' => 'string',
  1015. 'member_removed' => 'int', 'db_changes' => 'string', 'credits' => 'string',
  1016. ),
  1017. array(
  1018. $packageInfo['filename'], $packageInfo['name'], $packageInfo['id'], $packageInfo['version'],
  1019. $user_info['id'], $user_info['name'], time(),
  1020. $is_upgrade ? 2 : 1, $failed_step_insert, $themes_installed,
  1021. 0, $db_changes, $credits_tag,
  1022. ),
  1023. array('id_install')
  1024. );
  1025. }
  1026. $smcFunc['db_free_result']($request);
  1027. $context['install_finished'] = true;
  1028. }
  1029. // If there's database changes - and they want them removed - let's do it last!
  1030. if (!empty($db_changes) && !empty($_POST['do_db_changes']))
  1031. {
  1032. // We're gonna be needing the package db functions!
  1033. db_extend('packages');
  1034. foreach ($db_changes as $change)
  1035. {
  1036. if ($change[0] == 'remove_table' && isset($change[1]))
  1037. $smcFunc['db_drop_table']($change[1]);
  1038. elseif ($change[0] == 'remove_column' && isset($change[2]))
  1039. $smcFunc['db_remove_column']($change[1], $change[2]);
  1040. elseif ($change[0] == 'remove_index' && isset($change[2]))
  1041. $smcFunc['db_remove_index']($change[1], $change[2]);
  1042. }
  1043. }
  1044. // Clean house... get rid of the evidence ;).
  1045. if (file_exists($boarddir . '/Packages/temp'))
  1046. deltree($boarddir . '/Packages/temp');
  1047. // Log what we just did.
  1048. logAction($context['uninstalling'] ? 'uninstall_package' : (!empty($is_upgrade) ? 'upgrade_package' : 'install_package'), array('package' => $smcFunc['htmlspecialchars']($packageInfo['name']), 'version' => $smcFunc['htmlspecialchars']($packageInfo['version'])), 'admin');
  1049. // Just in case, let's clear the whole cache to avoid anything going up the swanny.
  1050. clean_cache();
  1051. // Restore file permissions?
  1052. create_chmod_control(array(), array(), true);
  1053. }
  1054. /**
  1055. * List the files in a package.
  1056. */
  1057. function PackageList()
  1058. {
  1059. global $txt, $scripturl, $boarddir, $context, $sourcedir;
  1060. require_once($sourcedir . '/Subs-Package.php');
  1061. // No package? Show him or her the door.
  1062. if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
  1063. redirectexit('action=admin;area=packages');
  1064. $context['linktree'][] = array(
  1065. 'url' => $scripturl . '?action=admin;area=packages;sa=list;package=' . $_REQUEST['package'],
  1066. 'name' => $txt['list_file']
  1067. );
  1068. $context['page_title'] .= ' - ' . $txt['list_file'];
  1069. $context['sub_template'] = 'list';
  1070. // The filename...
  1071. $context['filename'] = $_REQUEST['package'];
  1072. // Let the unpacker do the work.
  1073. if (is_file($boarddir . '/Packages/' . $context['filename']))
  1074. $context['files'] = read_tgz_file($boarddir . '/Packages/' . $context['filename'], null);
  1075. elseif (is_dir($boarddir . '/Packages/' . $context['filename']))
  1076. $context['files'] = listtree($boarddir . '/Packages/' . $context['filename']);
  1077. }
  1078. /**
  1079. * Display one of the files in a package.
  1080. */
  1081. function ExamineFile()
  1082. {
  1083. global $txt, $scripturl, $boarddir, $context, $sourcedir;
  1084. require_once($sourcedir . '/Subs-Package.php');
  1085. // No package? Show him or her the door.
  1086. if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
  1087. redirectexit('action=admin;area=packages');
  1088. // No file? Show him or her the door.
  1089. if (!isset($_REQUEST['file']) || $_REQUEST['file'] == '')
  1090. redirectexit('action=admin;area=packages');
  1091. $_REQUEST['package'] = preg_replace('~[\.]+~', '.', strtr($_REQUEST['package'], array('/' => '_', '\\' => '_')));
  1092. $_REQUEST['file'] = preg_replace('~[\.]+~', '.', $_REQUEST['file']);
  1093. if (isset($_REQUEST['raw']))
  1094. {
  1095. if (is_file($boarddir . '/Packages/' . $_REQUEST['package']))
  1096. echo read_tgz_file($boarddir . '/Packages/' . $_REQUEST['package'], $_REQUEST['file'], true);
  1097. elseif (is_dir($boarddir . '/Packages/' . $_REQUEST['package']))
  1098. echo file_get_contents($boarddir . '/Packages/' . $_REQUEST['package'] . '/' . $_REQUEST['file']);
  1099. obExit(false);
  1100. }
  1101. $context['linktree'][count($context['linktree']) - 1] = array(
  1102. 'url' => $scripturl . '?action=admin;area=packages;sa=list;package=' . $_REQUEST['package'],
  1103. 'name' => $txt['package_examine_file']
  1104. );
  1105. $context['page_title'] .= ' - ' . $txt['package_examine_file'];
  1106. $context['sub_template'] = 'examine';
  1107. // The filename...
  1108. $context['package'] = $_REQUEST['package'];
  1109. $context['filename'] = $_REQUEST['file'];
  1110. // Let the unpacker do the work.... but make sure we handle images properly.
  1111. if (in_array(strtolower(strrchr($_REQUEST['file'], '.')), array('.bmp', '.gif', '.jpeg', '.jpg', '.png')))
  1112. $context['filedata'] = '<img src="' . $scripturl . '?action=admin;area=packages;sa=examine;package=' . $_REQUEST['package'] . ';file=' . $_REQUEST['file'] . ';raw" alt="' . $_REQUEST['file'] . '" />';
  1113. else
  1114. {
  1115. if (is_file($boarddir . '/Packages/' . $_REQUEST['package']))
  1116. $context['filedata'] = htmlspecialchars(read_tgz_file($boarddir . '/Packages/' . $_REQUEST['package'], $_REQUEST['file'], true));
  1117. elseif (is_dir($boarddir . '/Packages/' . $_REQUEST['package']))
  1118. $context['filedata'] = htmlspecialchars(file_get_contents($boarddir . '/Packages/' . $_REQUEST['package'] . '/' . $_REQUEST['file']));
  1119. if (strtolower(strrchr($_REQUEST['file'], '.')) == '.php')
  1120. $context['filedata'] = highlight_php_code($context['filedata']);
  1121. }
  1122. }
  1123. /**
  1124. * List the installed packages.
  1125. */
  1126. function InstalledList()
  1127. {
  1128. global $txt, $scripturl, $context;
  1129. $context['page_title'] .= ' - ' . $txt['installed_packages'];
  1130. $context['sub_template'] = 'view_installed';
  1131. // Load the installed mods and send them to the template.
  1132. $context['installed_mods'] = loadInstalledPackages();
  1133. }
  1134. /**
  1135. * Empty out the installed list.
  1136. */
  1137. function FlushInstall()
  1138. {
  1139. global $boarddir, $sourcedir, $smcFunc;
  1140. // Always check the session.
  1141. checkSession('get');
  1142. include_once($sourcedir . '/Subs-Package.php');
  1143. // Record when we last did this.
  1144. package_put_contents($boarddir . '/Packages/installed.list', time());
  1145. // Set everything as uninstalled.
  1146. $smcFunc['db_query']('', '
  1147. UPDATE {db_prefix}log_packages
  1148. SET install_state = {int:not_installed}',
  1149. array(
  1150. 'not_installed' => 0,
  1151. )
  1152. );
  1153. redirectexit('action=admin;area=packages;sa=installed');
  1154. }
  1155. /**
  1156. * Delete a package.
  1157. */
  1158. function PackageRemove()
  1159. {
  1160. global $scripturl, $boarddir;
  1161. // Check it.
  1162. checkSession('get');
  1163. // Ack, don't allow deletion of arbitrary files here, could become a security hole somehow!
  1164. if (!isset($_GET['package']) || $_GET['package'] == 'index.php' || $_GET['package'] == 'installed.list' || $_GET['package'] == 'backups')
  1165. redirectexit('action=admin;area=packages;sa=browse');
  1166. $_GET['package'] = preg_replace('~[\.]+~', '.', strtr($_GET['package'], array('/' => '_', '\\' => '_')));
  1167. // Can't delete what's not there.
  1168. 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) != '.')
  1169. {
  1170. 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));
  1171. if (is_dir($boarddir . '/Packages/' . $_GET['package']))
  1172. deltree($boarddir . '/Packages/' . $_GET['package']);
  1173. else
  1174. {
  1175. @chmod($boarddir . '/Packages/' . $_GET['package'], 0777);
  1176. unlink($boarddir . '/Packages/' . $_GET['package']);
  1177. }
  1178. }
  1179. redirectexit('action=admin;area=packages;sa=browse');
  1180. }
  1181. /**
  1182. * Browse a list of installed packages.
  1183. */
  1184. function PackageBrowse()
  1185. {
  1186. global $txt, $boarddir, $scripturl, $context, $forum_version, $sourcedir, $settings;
  1187. $context['page_title'] .= ' - ' . $txt['browse_packages'];
  1188. $installed = $context['sub_action'] == 'installed' ? true : false;
  1189. $context['forum_version'] = $forum_version;
  1190. $context['modification_types'] = $installed ? array('modification') : array('modification', 'avatar', 'language', 'unknown');
  1191. require_once($sourcedir . '/Subs-List.php');
  1192. foreach ($context['modification_types'] as $type)
  1193. {
  1194. // Use the standard templates for showing this.
  1195. $listOptions = array(
  1196. 'id' => 'packages_lists_' . $type,
  1197. 'title' => $installed ? $txt['view_and_remove'] : $txt[$type . '_package'],
  1198. 'no_items_label' => $txt['no_packages'],
  1199. 'get_items' => array(
  1200. 'function' => 'list_getPackages',
  1201. 'params' => array('type' => $type, 'installed' => $installed),
  1202. ),
  1203. 'base_href' => $scripturl . '?action=admin;area=packages;sa=' . $context['sub_action'] . ';type=' . $type,
  1204. 'default_sort_col' => 'id' . $type,
  1205. 'columns' => array(
  1206. 'id' . $type => array(
  1207. 'header' => array(
  1208. 'value' => $txt['package_id'],
  1209. 'style' => 'width: 40px;',
  1210. ),
  1211. 'data' => array(
  1212. 'function' => create_function('$package_md5', '
  1213. global $context;
  1214. if (isset($context[\'available_' . $type . '\'][$package_md5]))
  1215. return $context[\'available_' . $type . '\'][$package_md5][\'sort_id\'];
  1216. '),
  1217. ),
  1218. 'sort' => array(
  1219. 'default' => 'sort_id',
  1220. 'reverse' => 'sort_id'
  1221. ),
  1222. ),
  1223. 'mod_name' . $type => array(
  1224. 'header' => array(
  1225. 'value' => $txt['mod_name'],
  1226. 'style' => 'width: 25%;',
  1227. ),
  1228. 'data' => array(
  1229. 'function' => create_function('$package_md5', '
  1230. global $context;
  1231. if (isset($context[\'available_' . $type . '\'][$package_md5]))
  1232. return $context[\'available_' . $type . '\'][$package_md5][\'name\'];
  1233. '),
  1234. ),
  1235. 'sort' => array(
  1236. 'default' => 'name',
  1237. 'reverse' => 'name',
  1238. ),
  1239. ),
  1240. 'version' . $type => array(
  1241. 'header' => array(
  1242. 'value' => $txt['mod_version'],
  1243. 'style' => 'width: 25%;',
  1244. ),
  1245. 'data' => array(
  1246. 'function' => create_function('$package_md5', '
  1247. global $context;
  1248. if (isset($context[\'available_' . $type . '\'][$package_md5]))
  1249. return $context[\'available_' . $type . '\'][$package_md5][\'version\'];
  1250. '),
  1251. ),
  1252. 'sort' => array(
  1253. 'default' => 'version',
  1254. 'reverse' => 'version',
  1255. ),
  1256. ),
  1257. 'operations' . $type => array(
  1258. 'header' => array(
  1259. 'value' => '',
  1260. ),
  1261. 'data' => array(
  1262. 'function' => create_function('$package_md5', '
  1263. global $context, $scripturl, $txt;
  1264. if (!isset($context[\'available_' . $type . '\'][$package_md5]))
  1265. return \'\';
  1266. // Rewrite shortcut
  1267. $package = $context[\'available_' . $type . '\'][$package_md5];
  1268. $return = \'\';
  1269. if ($package[\'can_uninstall\'])
  1270. $return = \'
  1271. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=uninstall;package=\' . $package[\'filename\'] . \';pid=\' . $package[\'installed_id\'] . \'">[ \' . $txt[\'uninstall\'] . \' ]</a>\';
  1272. elseif ($package[\'can_emulate_uninstall\'])
  1273. $return = \'
  1274. <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>\';
  1275. elseif ($package[\'can_upgrade\'])
  1276. $return = \'
  1277. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=install;package=\' . $package[\'filename\'] . \'">[ \' . $txt[\'package_upgrade\'] . \' ]</a>\';
  1278. elseif ($package[\'can_install\'])
  1279. $return = \'
  1280. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=install;package=\' . $package[\'filename\'] . \'">[ \' . $txt[\'install_mod\'] . \' ]</a>\';
  1281. elseif ($package[\'can_emulate_install\'])
  1282. $return = \'
  1283. <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>\';
  1284. return $return . \'
  1285. <a href="\' . $scripturl . \'?action=admin;area=packages;sa=list;package=\' . $package[\'filename\'] . \'">[ \' . $txt[\'list_files\'] . \' ]</a>
  1286. <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>\';
  1287. '),
  1288. 'class' => 'righttext',
  1289. ),
  1290. ),
  1291. ),
  1292. 'additional_rows' => array(
  1293. array(
  1294. 'position' => 'bottom_of_list',
  1295. '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>' :
  1296. '<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>'),
  1297. ),
  1298. ),
  1299. );
  1300. createList($listOptions);
  1301. }
  1302. $context['sub_template'] = 'browse';
  1303. $context['default_list'] = 'packages_lists';
  1304. // Empty lists for now.
  1305. $context['available_mods'] = array();
  1306. $context['available_avatars'] = array();
  1307. $context['available_languages'] = array();
  1308. $context['available_other'] = array();
  1309. $context['available_all'] = array();
  1310. }
  1311. function list_getPackages($start, $items_per_page, $sort, $params, $installed)
  1312. {
  1313. global $boarddir, $scripturl, $context, $forum_version;
  1314. static $instmods, $packages;
  1315. // Start things up
  1316. if (!isset($packages[$params]))
  1317. $packages[$params] = array();
  1318. // We need the packages directory to be writable for this.
  1319. if (!@is_writable($boarddir . '/Packages'))
  1320. create_chmod_control(array($boarddir . '/Packages'), array('destination_url' => $scripturl . '?action=admin;area=packages', 'crash_on_error' => true));
  1321. $the_version = strtr($forum_version, array('SMF ' => ''));
  1322. // Here we have a little code to help those who class themselves as something of gods, version emulation ;)
  1323. if (isset($_GET['version_emulate']) && strtr($_GET['version_emulate'], array('SMF ' => '')) == $the_version)
  1324. {
  1325. unset($_SESSION['version_emulate']);
  1326. }
  1327. elseif (isset($_GET['version_emulate']))
  1328. {
  1329. if (($_GET['version_emulate'] === 0 || $_GET['version_emulate'] === $forum_version) && isset($_SESSION['version_emulate']))
  1330. unset($_SESSION['version_emulate']);
  1331. elseif ($_GET['version_emulate'] !== 0)
  1332. $_SESSION['version_emulate'] = strtr($_GET['version_emulate'], array('-' => ' ', '+' => ' ', 'SMF ' => ''));
  1333. }
  1334. if (!empty($_SESSION['version_emulate']))
  1335. {
  1336. $context['forum_version'] = 'SMF ' . $_SESSION['version_emulate'];
  1337. $the_version = $_SESSION['version_emulate'];
  1338. }
  1339. if (isset($_SESSION['single_version_emulate']))
  1340. unset($_SESSION['single_version_emulate']);
  1341. if (empty($instmods))
  1342. {
  1343. $instmods = loadInstalledPackages();
  1344. $installed_mods = array();
  1345. // Look through the list of installed mods...
  1346. foreach ($instmods as $installed_mod)
  1347. $installed_mods[$installed_mod['package_id']] = array(
  1348. 'id' => $installed_mod['id'],
  1349. 'version' => $installed_mod['version'],
  1350. );
  1351. // Get a list of all the ids installed, so the latest packages won't include already installed ones.
  1352. $context['installed_mods'] = array_keys($installed_mods);
  1353. }
  1354. if ($installed)
  1355. {
  1356. $sort_id = 1;
  1357. foreach ($instmods as $installed_mod)
  1358. {
  1359. $context['available_modification'][$installed_mod['package_id']] = array(
  1360. 'sort_id' => $sort_id++,
  1361. 'can_uninstall' => true,
  1362. 'name' => $installed_mod['name'],
  1363. 'filename' => $installed_mod['filename'],
  1364. 'installed_id' => $installed_mod['id'],
  1365. 'version' => $installed_mod['version'],
  1366. 'is_installed' => true,
  1367. 'is_current' => true,
  1368. );
  1369. }
  1370. }
  1371. if (empty($packages))
  1372. foreach ($context['modification_types'] as $type)
  1373. $packages[$type] = array();
  1374. if ($dir = @opendir($boarddir . '/Packages'))
  1375. {
  1376. $dirs = array();
  1377. $sort_id = array(
  1378. 'mod' => 1,
  1379. 'modification' => 1,
  1380. 'avatar' => 1,
  1381. 'language' => 1,
  1382. 'unknown' => 1,
  1383. );
  1384. while ($package = readdir($dir))
  1385. {
  1386. 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'))
  1387. continue;
  1388. $skip = false;
  1389. foreach ($context['modification_types'] as $type)
  1390. if (isset($context['available_' . $type][md5($package)]))
  1391. $skip = true;
  1392. if ($skip)
  1393. continue;
  1394. // Skip directories or files that are named the same.
  1395. if (is_dir($boarddir . '/Packages/' . $package))
  1396. {
  1397. if (in_array($package, $dirs))
  1398. continue;
  1399. $dirs[] = $package;
  1400. }
  1401. elseif (substr(strtolower($package), -7) == '.tar.gz')
  1402. {
  1403. if (in_array(substr($package, 0, -7), $dirs))
  1404. continue;
  1405. $dirs[] = substr($package, 0, -7);
  1406. }
  1407. elseif (substr(strtolower($package), -4) == '.zip' || substr(strtolower($package), -4) == '.tgz')
  1408. {
  1409. if (in_array(substr($package, 0, -4), $dirs))
  1410. continue;
  1411. $dirs[] = substr($package, 0, -4);
  1412. }
  1413. $packageInfo = getPackageInfo($package);
  1414. if (!is_array($packageInfo))
  1415. continue;
  1416. if (!empty($packageInfo))
  1417. {
  1418. $packageInfo['installed_id'] = isset($installed_mods[$packageInfo['id']]) ? $installed_mods[$packageInfo['id']]['id'] : 0;
  1419. $packageInfo['sort_id'] = $sort_id[$packageInfo['type']];
  1420. $packageInfo['is_installed'] = isset($installed_mods[$packageInfo['id']]);
  1421. $packageInfo['is_current'] = $packageInfo['is_installed'] && ($installed_mods[$packageInfo['id']]['version'] == $packageInfo['version']);
  1422. $packageInfo['is_newer'] = $packageInfo['is_installed'] && ($installed_mods[$packageInfo['id']]['version'] > $packageInfo['version']);
  1423. $packageInfo['can_install'] = false;
  1424. $packageInfo['can_uninstall'] = false;
  1425. $packageInfo['can_upgrade'] = false;
  1426. $packageInfo['can_emulate_install'] = false;
  1427. $packageInfo['can_emulate_uninstall'] = false;
  1428. // This package is currently NOT installed. Check if it can be.
  1429. if (!$packageInfo['is_installed'] && $packageInfo['xml']->exists('install'))
  1430. {
  1431. // Check if there's an install for *THIS* version of SMF.
  1432. $installs = $packageInfo['xml']->set('install');
  1433. foreach ($installs as $install)
  1434. {
  1435. if (!$install->exists('@for') || matchPackageVersion($the_version, $install->fetch('@for')))
  1436. {
  1437. // Okay, this one is good to go.
  1438. $packageInfo['can_install'] = true;
  1439. break;
  1440. }
  1441. }
  1442. // no install found for this version, lets see if one exists for another
  1443. if ($packageInfo['can_install'] === false && $install->exists('@for') && empty($_SESSION['version_emulate']))
  1444. {
  1445. $reset = true;
  1446. // Get the highest install version that is available from the package
  1447. foreach ($installs as $install)
  1448. {
  1449. $packageInfo['can_emulate_install'] = matchHighestPackageVersion($install->fetch('@for'), $reset, $the_version);
  1450. $reset = false;
  1451. }
  1452. }
  1453. }
  1454. // An already installed, but old, package. Can we upgrade it?
  1455. elseif ($packageInfo['is_installed'] && !$packageInfo['is_current'] && $packageInfo['xml']->exists('upgrade'))
  1456. {
  1457. $upgrades = $packageInfo['xml']->set('upgrade');
  1458. // First go through, and check against the current version of SMF.
  1459. foreach ($upgrades as $upgrade)
  1460. {
  1461. // Even if it is for this SMF, is it for the installed version of the mod?
  1462. if (!$upgrade->exists('@for') || matchPackageVersion($the_version, $upgrade->fetch('@for')))
  1463. if (!$upgrade->exists('@from') || matchPackageVersion($installed_mods[$packageInfo['id']]['version'], $upgrade->fetch('@from')))
  1464. {
  1465. $packageInfo['can_upgrade'] = true;
  1466. break;
  1467. }
  1468. }
  1469. }
  1470. // Note that it has to be the current version to be uninstallable. Shucks.
  1471. elseif ($packageInfo['is_installed'] && $packageInfo['is_current'] && $packageInfo['xml']->exists('uninstall'))
  1472. {
  1473. $uninstalls = $packageInfo['xml']->set('uninstall');
  1474. // Can we find any uninstallation methods that work for this SMF version?
  1475. foreach ($uninstalls as $uninstall)
  1476. {
  1477. if (!$uninstall->exists('@for') || matchPackageVersion($the_version, $uninstall->fetch('@for')))
  1478. {
  1479. $packageInfo['can_uninstall'] = true;
  1480. break;
  1481. }
  1482. }
  1483. // no uninstall found for this version, lets see if one exists for another
  1484. if ($packageInfo['can_uninstall'] === false && $uninstall->exists('@for') && empty($_SESSION['version_emulate']))
  1485. {
  1486. $reset = true;
  1487. // Get the highest install version that is available from the package
  1488. foreach ($uninstalls as $uninstall)
  1489. {
  1490. $packageInfo['can_emulate_uninstall'] = matchHighestPackageVersion($uninstall->fetch('@for'), $reset, $the_version);
  1491. $reset = false;
  1492. }
  1493. }
  1494. }
  1495. // Modification.
  1496. if ($packageInfo['type'] == 'modification' || $packageInfo['type'] == 'mod')
  1497. {
  1498. $sort_id['modification']++;
  1499. $sort_id['mod']++;
  1500. if ($installed)
  1501. {
  1502. if (!empty($context['available_modification'][$packageInfo['id']]))
  1503. {
  1504. $packages['modification'][strtolower($packageInfo[$sort]) . '_' . $sort_id['mod']] = $packageInfo['id'];
  1505. $context['available_modification'][$packageInfo['id']] = array_merge($context['available_modification'][$packageInfo['id']], $packageInfo);
  1506. }
  1507. }
  1508. else
  1509. {
  1510. $packages['modification'][strtolower($packageInfo[$sort]) . '_' . $sort_id['mod']] = md5($package);
  1511. $context['available_modification'][md5($package)] = $packageInfo;
  1512. }
  1513. }
  1514. // Avatar package.
  1515. elseif ($packageInfo['type'] == 'avatar')
  1516. {
  1517. $sort_id[$packageInfo['type']]++;
  1518. $packages['avatar'][strtolower($packageInfo[$sort])] = md5($package);
  1519. $context['available_avatar'][md5($package)] = $packageInfo;
  1520. }
  1521. // Language package.
  1522. elseif ($packageInfo['type'] == 'language')
  1523. {
  1524. $sort_id[$packageInfo['type']]++;
  1525. $packages['language'][strtolower($packageInfo[$sort])] = md5($package);
  1526. $context['available_language'][md5($package)] = $packageInfo;
  1527. }
  1528. // Other stuff.
  1529. else
  1530. {
  1531. $sort_id['unknown']++;
  1532. $packages['unknown'][strtolower($packageInfo[$sort])] = md5($package);
  1533. $context['available_unknown'][md5($package)] = $packageInfo;
  1534. }
  1535. }
  1536. }
  1537. closedir($dir);
  1538. }
  1539. if (isset($_GET['type']) && $_GET['type'] == $params)
  1540. {
  1541. if (isset($_GET['desc']))
  1542. krsort($packages[$params]);
  1543. else
  1544. ksort($packages[$params]);
  1545. }
  1546. return $packages[$params];
  1547. }
  1548. function PackageOptions()
  1549. {
  1550. global $txt, $scripturl, $context, $sourcedir, $modSettings, $smcFunc;
  1551. if (isset($_POST['save']))
  1552. {
  1553. checkSession('post');
  1554. updateSettings(array(
  1555. 'package_server' => trim($smcFunc['htmlspecialchars']($_POST['pack_server'])),
  1556. 'package_port' => trim($smcFunc['htmlspecialchars']($_POST['pack_port'])),
  1557. 'package_username' => trim($smcFunc['htmlspecialchars']($_POST['pack_user'])),
  1558. 'package_make_backups' => !empty($_POST['package_make_backups']),
  1559. 'package_make_full_backups' => !empty($_POST['package_make_full_backups'])
  1560. ));
  1561. redirectexit('action=admin;area=packages;sa=options');
  1562. }
  1563. if (preg_match('~^/home\d*/([^/]+?)/public_html~', $_SERVER['DOCUMENT_ROOT'], $match))
  1564. $default_username = $match[1];
  1565. else
  1566. $default_username = '';
  1567. $context['page_title'] = $txt['package_settings'];
  1568. $context['sub_template'] = 'install_options';
  1569. $context['package_ftp_server'] = isset($modSettings['package_server']) ? $modSettings['package_server'] : 'localhost';
  1570. $context['package_ftp_port'] = isset($modSettings['package_port']) ? $modSettings['package_port'] : '21';
  1571. $context['package_ftp_username'] = isset($modSettings['package_username']) ? $modSettings['package_username'] : $default_username;
  1572. $context['package_make_backups'] = !empty($modSettings['package_make_backups']);
  1573. $context['package_make_full_backups'] = !empty($modSettings['package_make_full_backups']);
  1574. }
  1575. /**
  1576. * List operations
  1577. */
  1578. function ViewOperations()
  1579. {
  1580. global $context, $txt, $boarddir, $sourcedir, $smcFunc, $modSettings;
  1581. // Can't be in here buddy.
  1582. isAllowedTo('admin_forum');
  1583. // We need to know the operation key for the search and replace, mod file looking at, is it a board mod?
  1584. if (!isset($_REQUEST['operation_key'], $_REQUEST['filename']) && !is_numeric($_REQUEST['operation_key']))
  1585. fatal_lang_error('operation_invalid', 'general');
  1586. // Load the required file.
  1587. require_once($sourcedir . '/Subs-Package.php');
  1588. // Uninstalling the mod?
  1589. $reverse = isset($_REQUEST['reverse']) ? true : false;
  1590. // Get the base name.
  1591. $context['filename'] = preg_replace('~[\.]+~', '.', $_REQUEST['package']);
  1592. // We need to extract this again.
  1593. if (is_file($boarddir . '/Packages/' . $context['filename']))
  1594. {
  1595. $context['extracted_files'] = read_tgz_file($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  1596. if ($context['extracted_files'] && !file_exists($boarddir . '/Packages/temp/package-info.xml'))
  1597. foreach ($context['extracted_files'] as $file)
  1598. if (basename($file['filename']) == 'package-info.xml')
  1599. {
  1600. $context['base_path'] = dirname($file['filename']) . '/';
  1601. break;
  1602. }
  1603. if (!isset($context['base_path']))
  1604. $context['base_path'] = '';
  1605. }
  1606. elseif (is_dir($boarddir . '/Packages/' . $context['filename']))
  1607. {
  1608. copytree($boarddir . '/Packages/' . $context['filename'], $boarddir . '/Packages/temp');
  1609. $context['extracted_files'] = listtree($boarddir . '/Packages/temp');
  1610. $context['base_path'] = '';
  1611. }
  1612. // Load up any custom themes we may want to install into...
  1613. $request = $smcFunc['db_query']('', '
  1614. SELECT id_theme, variable, value
  1615. FROM {db_prefix}themes
  1616. WHERE (id_theme = {int:default_theme} OR id_theme IN ({array_int:known_theme_list}))
  1617. AND variable IN ({string:name}, {string:theme_dir})',
  1618. array(
  1619. 'known_theme_list' => explode(',', $modSettings['knownThemes']),
  1620. 'default_theme' => 1,
  1621. 'name' => 'name',
  1622. 'theme_dir' => 'theme_dir',
  1623. )
  1624. );
  1625. $theme_paths = array();
  1626. while ($row = $smcFunc['db_fetch_assoc']($request))
  1627. $theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
  1628. $smcFunc['db_free_result']($request);
  1629. // Boardmod?
  1630. if (isset($_REQUEST['boardmod']))
  1631. $mod_actions = parseBoardMod(@file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths);
  1632. else
  1633. $mod_actions = parseModification(@file_get_contents($boarddir . '/Packages/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths);
  1634. // Ok lets get the content of the file.
  1635. $context['operations'] = array(
  1636. 'search' => strtr(htmlspecialchars($mod_actions[$_REQUEST['operation_key']]['search_original']), array('[' => '&#91;', ']' => '&#93;')),
  1637. 'replace' => strtr(htmlspecialchars($mod_actions[$_REQUEST['operation_key']]['replace_original']), array('[' => '&#91;', ']' => '&#93;')),
  1638. 'position' => $mod_actions[$_REQUEST['operation_key']]['position'],
  1639. );
  1640. // Let's do some formatting...
  1641. $operation_text = $context['operations']['position'] == 'replace' ? 'operation_replace' : ($context['operations']['position'] == 'before' ? 'operation_after' : 'operation_before');
  1642. $context['operations']['search'] = parse_bbc('[code=' . $txt['operation_find'] . ']' . ($context['operations']['position'] == 'end' ? '?&gt;' : $context['operations']['search']) . '[/code]');
  1643. $context['operations']['replace'] = parse_bbc('[code=' . $txt[$operation_text] . ']' . $context['operations']['replace'] . '[/code]');
  1644. // No layers
  1645. $context['template_layers'] = array();
  1646. $context['sub_template'] = 'view_operations';
  1647. }
  1648. /**
  1649. * Allow the admin to reset permissions on files.
  1650. */
  1651. function PackagePermissions()
  1652. {
  1653. global $context, $txt, $modSettings, $boarddir, $sourcedir, $cachedir, $smcFunc, $package_ftp;
  1654. // Let's try and be good, yes?
  1655. checkSession('get');
  1656. // If we're restoring permissions this is just a pass through really.
  1657. if (isset($_GET['restore']))
  1658. {
  1659. create_chmod_control(array(), array(), true);
  1660. fatal_lang_error('no_access', false);
  1661. }
  1662. // This is a memory eat.
  1663. setMemoryLimit('128M');
  1664. @set_time_limit(600);
  1665. // Load up some FTP stuff.
  1666. create_chmod_control();
  1667. if (empty($package_ftp) && !isset($_POST['skip_ftp']))
  1668. {
  1669. require_once($sourcedir . '/Class-Package.php');
  1670. $ftp = new ftp_connection(null);
  1671. list ($username, $detect_path, $found_path) = $ftp->detect_path($boarddir);
  1672. $context['package_ftp'] = array(
  1673. 'server' => isset($modSettings['package_server']) ? $modSettings['package_server'] : 'localhost',
  1674. 'port' => isset($modSettings['package_port']) ? $modSettings['package_port'] : '21',
  1675. 'username' => empty($username) ? (isset($modSettings['package_username']) ? $modSettings['package_username'] : '') : $username,
  1676. 'path' => $detect_path,
  1677. 'form_elements_only' => true,
  1678. );
  1679. }
  1680. else
  1681. $context['ftp_connected'] = true;
  1682. // Define the template.
  1683. $context['page_title'] = $txt['package_file_perms'];
  1684. $context['sub_template'] = 'file_permissions';
  1685. // Define what files we're interested in, as a tree.
  1686. $context['file_tree'] = array(
  1687. strtr($boarddir, array('\\' => '/')) => array(
  1688. 'type' => 'dir',
  1689. 'contents' => array(
  1690. 'agreement.txt' => array(
  1691. 'type' => 'file',
  1692. 'writable_on' => 'standard',
  1693. ),
  1694. 'Settings.php' => array(
  1695. 'type' => 'file',
  1696. 'writable_on' => 'restrictive',
  1697. ),
  1698. 'Settings_bak.php' => array(
  1699. 'type' => 'file',
  1700. 'writable_on' => 'restrictive',
  1701. ),
  1702. 'attachments' => array(
  1703. 'type' => 'dir',
  1704. 'writable_on' => 'restrictive',
  1705. ),
  1706. 'avatars' => array(
  1707. 'type' => 'dir',
  1708. 'writable_on' => 'standard',
  1709. ),
  1710. 'cache' => array(
  1711. 'type' => 'dir',
  1712. 'writable_on' => 'restrictive',
  1713. ),
  1714. 'custom_avatar_dir' => array(
  1715. 'type' => 'dir',
  1716. 'writable_on' => 'restrictive',
  1717. ),
  1718. 'Smileys' => array(
  1719. 'type' => 'dir_recursive',
  1720. 'writable_on' => 'standard',
  1721. ),
  1722. 'Sources' => array(
  1723. 'type' => 'dir',
  1724. 'list_contents' => true,
  1725. 'writable_on' => 'standard',
  1726. ),
  1727. 'Themes' => array(
  1728. 'type' => 'dir_recursive',
  1729. 'writable_on' => 'standard',
  1730. 'contents' => array(
  1731. 'default' => array(
  1732. 'type' => 'dir_recursive',
  1733. 'list_contents' => true,
  1734. 'contents' => array(
  1735. 'languages' => array(
  1736. 'type' => 'dir',
  1737. 'list_contents' => true,
  1738. ),
  1739. ),
  1740. ),
  1741. ),
  1742. ),
  1743. 'Packages' => array(
  1744. 'type' => 'dir',
  1745. 'writable_on' => 'standard',
  1746. 'contents' => array(
  1747. 'temp' => array(
  1748. 'type' => 'dir',
  1749. ),
  1750. 'backup' => array(
  1751. 'type' => 'dir',
  1752. ),
  1753. 'installed.list' => array(
  1754. 'type' => 'file',
  1755. 'writable_on' => 'standard',
  1756. ),
  1757. ),
  1758. ),
  1759. ),
  1760. ),
  1761. );
  1762. // Directories that can move.
  1763. if (substr($sourcedir, 0, strlen($boarddir)) != $boarddir)
  1764. {
  1765. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Sources']);
  1766. $context['file_tree'][strtr($sourcedir, array('\\' => '/'))] = array(
  1767. 'type' => 'dir',
  1768. 'list_contents' => true,
  1769. 'writable_on' => 'standard',
  1770. );
  1771. }
  1772. // Moved the cache?
  1773. if (substr($cachedir, 0, strlen($boarddir)) != $boarddir)
  1774. {
  1775. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['cache']);
  1776. $context['file_tree'][strtr($cachedir, array('\\' => '/'))] = array(
  1777. 'type' => 'dir',
  1778. 'list_contents' => false,
  1779. 'writable_on' => 'restrictive',
  1780. );
  1781. }
  1782. // Are we using multiple attachment directories?
  1783. if (!empty($modSettings['currentAttachmentUploadDir']))
  1784. {
  1785. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['attachments']);
  1786. if (!is_array($modSettings['attachmentUploadDir']))
  1787. $modSettings['attachmentUploadDir'] = unserialize($modSettings['attachmentUploadDir']);
  1788. // @todo Should we suggest non-current directories be read only?
  1789. foreach ($modSettings['attachmentUploadDir'] as $dir)
  1790. $context['file_tree'][strtr($dir, array('\\' => '/'))] = array(
  1791. 'type' => 'dir',
  1792. 'writable_on' => 'restrictive',
  1793. );
  1794. }
  1795. elseif (substr($modSettings['attachmentUploadDir'], 0, strlen($boarddir)) != $boarddir)
  1796. {
  1797. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['attachments']);
  1798. $context['file_tree'][strtr($modSettings['attachmentUploadDir'], array('\\' => '/'))] = array(
  1799. 'type' => 'dir',
  1800. 'writable_on' => 'restrictive',
  1801. );
  1802. }
  1803. if (substr($modSettings['smileys_dir'], 0, strlen($boarddir)) != $boarddir)
  1804. {
  1805. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Smileys']);
  1806. $context['file_tree'][strtr($modSettings['smileys_dir'], array('\\' => '/'))] = array(
  1807. 'type' => 'dir_recursive',
  1808. 'writable_on' => 'standard',
  1809. );
  1810. }
  1811. if (substr($modSettings['avatar_directory'], 0, strlen($boarddir)) != $boarddir)
  1812. {
  1813. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['avatars']);
  1814. $context['file_tree'][strtr($modSettings['avatar_directory'], array('\\' => '/'))] = array(
  1815. 'type' => 'dir',
  1816. 'writable_on' => 'standard',
  1817. );
  1818. }
  1819. if (isset($modSettings['custom_avatar_dir']) && substr($modSettings['custom_avatar_dir'], 0, strlen($boarddir)) != $boarddir)
  1820. {
  1821. unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['custom_avatar_dir']);
  1822. $context['file_tree'][strtr($modSettings['custom_avatar_dir'], array('\\' => '/'))] = array(
  1823. 'type' => 'dir',
  1824. 'writable_on' => 'restrictive',
  1825. );
  1826. }
  1827. // Load up any custom themes.
  1828. $request = $smcFunc['db_query']('', '
  1829. SELECT value
  1830. FROM {db_prefix}themes
  1831. WHERE id_theme > {int:default_theme_id}
  1832. AND id_member = {int:guest_id}
  1833. AND variable = {string:theme_dir}
  1834. ORDER BY value ASC',
  1835. array(
  1836. 'default_theme_id' => 1,
  1837. 'guest_id' => 0,
  1838. 'theme_dir' => 'theme_dir',
  1839. )
  1840. );
  1841. while ($row = $smcFunc['db_fetch_assoc']($request))
  1842. {
  1843. if (substr(strtolower(strtr($row['value'], array('\\' => '/'))), 0, strlen($boarddir) + 7) == strtolower(strtr($boarddir, array('\\' => '/')) . '/Themes'))
  1844. $context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Themes']['contents'][substr($row['value'], strlen($boarddir) + 8)] = array(
  1845. 'type' => 'dir_recursive',
  1846. 'list_contents' => true,
  1847. 'contents' => array(
  1848. 'languages' => array(
  1849. 'type' => 'dir',
  1850. 'list_contents' => true,
  1851. ),
  1852. ),
  1853. );
  1854. else
  1855. {
  1856. $context['file_tree'][strtr($row['value'], array('\\' => '/'))] = array(
  1857. 'type' => 'dir_recursive',
  1858. 'list_contents' => true,
  1859. 'contents' => array(
  1860. 'languages' => array(
  1861. 'type' => 'dir',
  1862. 'list_contents' => true,
  1863. ),
  1864. ),
  1865. );
  1866. }
  1867. }
  1868. $smcFunc['db_free_result']($request);
  1869. // If we're submitting then let's move on to another function to keep things cleaner..
  1870. if (isset($_POST['action_changes']))
  1871. return PackagePermissionsAction();
  1872. $context['look_for'] = array();
  1873. // Are we looking for a particular tree - normally an expansion?
  1874. if (!empty($_REQUEST['find']))
  1875. $context['look_for'][] = base64_decode($_REQUEST['find']);
  1876. // Only that tree?
  1877. $context['only_find'] = isset($_GET['xml']) && !empty($_REQUEST['onlyfind']) ? $_REQUEST['onlyfind'] : '';
  1878. if ($context['only_find'])
  1879. $context['look_for'][] = $context['only_find'];
  1880. // Have we got a load of back-catalogue trees to expand from a submit etc?
  1881. if (!empty($_GET['back_look']))
  1882. {
  1883. $potententialTrees = unserialize(base64_decode($_GET['back_look']));
  1884. foreach ($potententialTrees as $tree)
  1885. $context['look_for'][] = $tree;
  1886. }
  1887. // ... maybe posted?
  1888. if (!empty($_POST['back_look']))
  1889. $context['only_find'] = array_merge($context['only_find'], $_POST['back_look']);
  1890. $context['back_look_data'] = base64_encode(serialize(array_slice($context['look_for'], 0, 15)));
  1891. // Are we finding more files than first thought?
  1892. $context['file_offset'] = !empty($_REQUEST['fileoffset']) ? (int) $_REQUEST['fileoffset'] : 0;
  1893. // Don't list more than this many files in a directory.
  1894. $context['file_limit'] = 150;
  1895. // How many levels shall we show?
  1896. $context['default_level'] = empty($context['only_find']) ? 2 : 25;
  1897. // This will be used if we end up catching XML data.
  1898. $context['xml_data'] = array(
  1899. 'roots' => array(
  1900. 'identifier' => 'root',
  1901. 'children' => array(
  1902. array(
  1903. 'value' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find']),
  1904. ),
  1905. ),
  1906. ),
  1907. 'folders' => array(
  1908. 'identifier' => 'folder',
  1909. 'children' => array(),
  1910. ),
  1911. );
  1912. foreach ($context['file_tree'] as $path => $data)
  1913. {
  1914. // Run this directory.
  1915. if (file_exists($path) && (empty($context['only_find']) || substr($context['only_find'], 0, strlen($path)) == $path))
  1916. {
  1917. // Get the first level down only.
  1918. fetchPerms__recursive($path, $context['file_tree'][$path], 1);
  1919. $context['file_tree'][$path]['perms'] = array(
  1920. 'chmod' => @is_writable($path),
  1921. 'perms' => @fileperms($path),
  1922. );
  1923. }
  1924. else
  1925. unset($context['file_tree'][$path]);
  1926. }
  1927. // Is this actually xml?
  1928. if (isset($_GET['xml']))
  1929. {
  1930. loadTemplate('Xml');
  1931. $context['sub_template'] = 'generic_xml';
  1932. $context['template_layers'] = array();
  1933. }
  1934. }
  1935. function fetchPerms__recursive($path, &$data, $level)
  1936. {
  1937. global $context;
  1938. $isLikelyPath = false;
  1939. foreach ($context['look_for'] as $possiblePath)
  1940. if (substr($possiblePath, 0, strlen($path)) == $path)
  1941. $isLikelyPath = true;
  1942. // Is this where we stop?
  1943. if (isset($_GET['xml']) && !empty($context['look_for']) && !$isLikelyPath)
  1944. return;
  1945. elseif ($level > $context['default_level'] && !$isLikelyPath)
  1946. return;
  1947. // Are we actually interested in saving this data?
  1948. $save_data = empty($context['only_find']) || $context['only_find'] == $path;
  1949. // @todo Shouldn't happen - but better error message?
  1950. if (!is_dir($path))
  1951. fatal_lang_error('no_access', false);
  1952. // This is where we put stuff we've found for sorting.
  1953. $foundData = array(
  1954. 'files' => array(),
  1955. 'folders' => array(),
  1956. );
  1957. $dh = opendir($path);
  1958. while ($entry = readdir($dh))
  1959. {
  1960. // Some kind of file?
  1961. if (is_file($path . '/' . $entry))
  1962. {
  1963. // Are we listing PHP files in this directory?
  1964. if ($save_data && !empty($data['list_contents']) && substr($entry, -4) == '.php')
  1965. $foundData['files'][$entry] = true;
  1966. // A file we were looking for.
  1967. elseif ($save_data && isset($data['contents'][$entry]))
  1968. $foundData['files'][$entry] = true;
  1969. }
  1970. // It's a directory - we're interested one way or another, probably...
  1971. elseif ($entry != '.' && $entry != '..')
  1972. {
  1973. // Going further?
  1974. 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'))))
  1975. {
  1976. if (!isset($data['contents'][$entry]))
  1977. $foundData['folders'][$entry] = 'dir_recursive';
  1978. else
  1979. $foundData['folders'][$entry] = true;
  1980. // If this wasn't expected inherit the recusiveness...
  1981. if (!isset($data['contents'][$entry]))
  1982. // We need to do this as we will be going all recursive.
  1983. $data['contents'][$entry] = array(
  1984. 'type' => 'dir_recursive',
  1985. );
  1986. // Actually do the recursive stuff...
  1987. fetchPerms__recursive($path . '/' . $entry, $data['contents'][$entry], $level + 1);
  1988. }
  1989. // Maybe it is a folder we are not descending into.
  1990. elseif (isset($data['contents'][$entry]))
  1991. $foundData['folders'][$entry] = true;
  1992. // Otherwise we stop here.
  1993. }
  1994. }
  1995. closedir($dh);
  1996. // Nothing to see here?
  1997. if (!$save_data)
  1998. return;
  1999. // Now actually add the data, starting with the folders.
  2000. ksort($foundData['folders']);
  2001. foreach ($foundData['folders'] as $folder => $type)
  2002. {
  2003. $additional_data = array(
  2004. 'perms' => array(
  2005. 'chmod' => @is_writable($path . '/' . $folder),
  2006. 'perms' => @fileperms($path . '/' . $folder),
  2007. ),
  2008. );
  2009. if ($type !== true)
  2010. $additional_data['type'] = $type;
  2011. // If there's an offset ignore any folders in XML mode.
  2012. if (isset($_GET['xml']) && $context['file_offset'] == 0)
  2013. {
  2014. $context['xml_data']['folders']['children'][] = array(
  2015. 'attributes' => array(
  2016. 'writable' => $additional_data['perms']['chmod'] ? 1 : 0,
  2017. 'permissions' => substr(sprintf('%o', $additional_data['perms']['perms']), -4),
  2018. 'folder' => 1,
  2019. 'path' => $context['only_find'],
  2020. 'level' => $level,
  2021. 'more' => 0,
  2022. 'offset' => $context['file_offset'],
  2023. 'my_ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find'] . '/' . $folder),
  2024. 'ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find']),
  2025. ),
  2026. 'value' => $folder,
  2027. );
  2028. }
  2029. elseif (!isset($_GET['xml']))
  2030. {
  2031. if (isset($data['contents'][$folder]))
  2032. $data['contents'][$folder] = array_merge($data['contents'][$folder], $additional_data);
  2033. else
  2034. $data['contents'][$folder] = $additional_data;
  2035. }
  2036. }
  2037. // Now we want to do a similar thing with files.
  2038. ksort($foundData['files']);
  2039. $counter = -1;
  2040. foreach ($foundData['files'] as $file => $dummy)
  2041. {
  2042. $counter++;
  2043. // Have we reached our offset?
  2044. if ($context['file_offset'] > $counter)
  2045. continue;
  2046. // Gone too far?
  2047. if ($counter > ($context['file_offset'] + $context['file_limit']))
  2048. continue;
  2049. $additional_data = array(
  2050. 'perms' => array(
  2051. 'chmod' => @is_writable($path . '/' . $file),
  2052. 'perms' => @fileperms($path . '/' . $file),
  2053. ),
  2054. );
  2055. // XML?
  2056. if (isset($_GET['xml']))
  2057. {
  2058. $context['xml_data']['folders']['children'][] = array(
  2059. 'attributes' => array(
  2060. 'writable' => $additional_data['perms']['chmod'] ? 1 : 0,
  2061. 'permissions' => substr(sprintf('%o', $additional_data['perms']['perms']), -4),
  2062. 'folder' => 0,
  2063. 'path' => $context['only_find'],
  2064. 'level' => $level,
  2065. 'more' => $counter == ($context['file_offset'] + $context['file_limit']) ? 1 : 0,
  2066. 'offset' => $context['file_offset'],
  2067. 'my_ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find'] . '/' . $file),
  2068. 'ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find']),
  2069. ),
  2070. 'value' => $file,
  2071. );
  2072. }
  2073. elseif ($counter != ($context['file_offset'] + $context['file_limit']))
  2074. {
  2075. if (isset($data['contents'][$file]))
  2076. $data['contents'][$file] = array_merge($data['contents'][$file], $additional_data);
  2077. else
  2078. $data['contents'][$file] = $additional_data;
  2079. }
  2080. }
  2081. }
  2082. /**
  2083. * Actually action the permission changes they want.
  2084. */
  2085. function PackagePermissionsAction()
  2086. {
  2087. global $context, $txt, $time_start, $package_ftp;
  2088. umask(0);
  2089. $timeout_limit = 5;
  2090. $context['method'] = $_POST['method'] == 'individual' ? 'individual' : 'predefined';
  2091. $context['sub_template'] = 'action_permissions';
  2092. $context['page_title'] = $txt['package_file_perms_applying'];
  2093. $context['back_look_data'] = isset($_POST['back_look']) ? $_POST['back_look'] : array();
  2094. // Skipping use of FTP?
  2095. if (empty($package_ftp))
  2096. $context['skip_ftp'] = true;
  2097. // 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.
  2098. if ($context['method'] == 'individual')
  2099. {
  2100. // Only these path roots are legal.
  2101. $legal_roots = array_keys($context['file_tree']);
  2102. $context['custom_value'] = (int) $_POST['custom_value'];
  2103. // Continuing?
  2104. if (isset($_POST['toProcess']))
  2105. $_POST['permStatus'] = unserialize(base64_decode($_POST['toProcess']));
  2106. if (isset($_POST['permStatus']))
  2107. {
  2108. $context['to_process'] = array();
  2109. $validate_custom = false;
  2110. foreach ($_POST['permStatus'] as $path => $status)
  2111. {
  2112. // Nothing to see here?
  2113. if ($status == 'no_change')
  2114. continue;
  2115. $legal = false;
  2116. foreach ($legal_roots as $root)
  2117. if (substr($path, 0, strlen($root)) == $root)
  2118. $legal = true;
  2119. if (!$legal)
  2120. continue;
  2121. // Check it exists.
  2122. if (!file_exists($path))
  2123. continue;
  2124. if ($status == 'custom')
  2125. $validate_custom = true;
  2126. // Now add it.
  2127. $context['to_process'][$path] = $status;
  2128. }
  2129. $context['total_items'] = isset($_POST['totalItems']) ? (int) $_POST['totalItems'] : count($context['to_process']);
  2130. // Make sure the chmod status is valid?
  2131. if ($validate_custom)
  2132. {
  2133. if (preg_match('~^[4567][4567][4567]$~', $context['custom_value']) == false)
  2134. fatal_error($txt['chmod_value_invalid']);
  2135. }
  2136. // Nothing to do?
  2137. if (empty($context['to_process']))
  2138. 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']);
  2139. }
  2140. // Should never get here,
  2141. else
  2142. fatal_lang_error('no_access', false);
  2143. // Setup the custom value.
  2144. $custom_value = octdec('0' . $context['custom_value']);
  2145. // Start processing items.
  2146. foreach ($context['to_process'] as $path => $status)
  2147. {
  2148. if (in_array($status, array('execute', 'writable', 'read')))
  2149. package_chmod($path, $status);
  2150. elseif ($status == 'custom' && !empty($custom_value))
  2151. {
  2152. // Use FTP if we have it.
  2153. if (!empty($package_ftp) && !empty($_SESSION['pack_ftp']))
  2154. {
  2155. $ftp_file = strtr($path, array($_SESSION['pack_ftp']['root'] => ''));
  2156. $package_ftp->chmod($ftp_file, $custom_value);
  2157. }
  2158. else
  2159. @chmod($path, $custom_value);
  2160. }
  2161. // This fish is fried...
  2162. unset($context['to_process'][$path]);
  2163. // See if we're out of time?
  2164. if (time() - array_sum(explode(' ', $time_start)) > $timeout_limit)
  2165. return false;
  2166. }
  2167. }
  2168. // If predefined this is a little different.
  2169. else
  2170. {
  2171. $context['predefined_type'] = isset($_POST['predefined']) ? $_POST['predefined'] : 'restricted';
  2172. $context['total_items'] = isset($_POST['totalItems']) ? (int) $_POST['totalItems'] : 0;
  2173. $context['directory_list'] = isset($_POST['dirList']) ? unserialize(base64_decode($_POST['dirList'])) : array();
  2174. $context['file_offset'] = isset($_POST['fileOffset']) ? (int) $_POST['fileOffset'] : 0;
  2175. // Haven't counted the items yet?
  2176. if (empty($context['total_items']))
  2177. {
  2178. function count_directories__recursive($dir)
  2179. {
  2180. global $context;
  2181. $count = 0;
  2182. $dh = @opendir($dir);
  2183. while ($entry = readdir($dh))
  2184. {
  2185. if ($entry != '.' && $entry != '..' && is_dir($dir . '/' . $entry))
  2186. {
  2187. $context['directory_list'][$dir . '/' . $entry] = 1;
  2188. $count++;
  2189. $count += count_directories__recursive($dir . '/' . $entry);
  2190. }
  2191. }
  2192. closedir($dh);
  2193. return $count;
  2194. }
  2195. foreach ($context['file_tree'] as $path => $data)
  2196. {
  2197. if (is_dir($path))
  2198. {
  2199. $context['directory_list'][$path] = 1;
  2200. $context['total_items'] += count_directories__recursive($path);
  2201. $context['total_items']++;
  2202. }
  2203. }
  2204. }
  2205. // Have we built up our list of special files?
  2206. if (!isset($_POST['specialFiles']) && $context['predefined_type'] != 'free')
  2207. {
  2208. $context['special_files'] = array();
  2209. function build_special_files__recursive($path, &$data)
  2210. {
  2211. global $context;
  2212. if (!empty($data['writable_on']))
  2213. if ($context['predefined_type'] == 'standard' || $data['writable_on'] == 'restrictive')
  2214. $context['special_files'][$path] = 1;
  2215. if (!empty($data['contents']))
  2216. foreach ($data['contents'] as $name => $contents)
  2217. build_special_files__recursive($path . '/' . $name, $contents);
  2218. }
  2219. foreach ($context['file_tree'] as $path => $data)
  2220. build_special_files__recursive($path, $data);
  2221. }
  2222. // Free doesn't need special files.
  2223. elseif ($context['predefined_type'] == 'free')
  2224. $context['special_files'] = array();
  2225. else
  2226. $context['special_files'] = unserialize(base64_decode($_POST['specialFiles']));
  2227. // Now we definitely know where we are, we need to go through again doing the chmod!
  2228. foreach ($context['directory_list'] as $path => $dummy)
  2229. {
  2230. // Do the contents of the directory first.
  2231. $dh = @opendir($path);
  2232. $file_count = 0;
  2233. $dont_chmod = false;
  2234. while ($entry = readdir($dh))
  2235. {
  2236. $file_count++;
  2237. // Actually process this file?
  2238. if (!$dont_chmod && !is_dir($path . '/' . $entry) && (empty($context['file_offset']) || $context['file_offset'] < $file_count))
  2239. {
  2240. $status = $context['predefined_type'] == 'free' || isset($context['special_files'][$path . '/' . $entry]) ? 'writable' : 'execute';
  2241. package_chmod($path . '/' . $entry, $status);
  2242. }
  2243. // See if we're out of time?
  2244. if (!$dont_chmod && time() - array_sum(explode(' ', $time_start)) > $timeout_limit)
  2245. {
  2246. $dont_chmod = true;
  2247. // Don't do this again.
  2248. $context['file_offset'] = $file_count;
  2249. }
  2250. }
  2251. closedir($dh);
  2252. // If this is set it means we timed out half way through.
  2253. if ($dont_chmod)
  2254. {
  2255. $context['total_files'] = $file_count;
  2256. return false;
  2257. }
  2258. // Do the actual directory.
  2259. $status = $context['predefined_type'] == 'free' || isset($context['special_files'][$path]) ? 'writable' : 'execute';
  2260. package_chmod($path, $status);
  2261. // We've finished the directory so no file offset, and no record.
  2262. $context['file_offset'] = 0;
  2263. unset($context['directory_list'][$path]);
  2264. // See if we're out of time?
  2265. if (time() - array_sum(explode(' ', $time_start)) > $timeout_limit)
  2266. return false;
  2267. }
  2268. }
  2269. // If we're here we are done!
  2270. 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']);
  2271. }
  2272. /**
  2273. * Test an FTP connection.
  2274. */
  2275. function PackageFTPTest()
  2276. {
  2277. global $context, $txt, $package_ftp;
  2278. checkSession('get');
  2279. // Try to make the FTP connection.
  2280. create_chmod_control(array(), array('force_find_error' => true));
  2281. // Deal with the template stuff.
  2282. loadTemplate('Xml');
  2283. $context['sub_template'] = 'generic_xml';
  2284. $context['template_layers'] = array();
  2285. // Define the return data, this is simple.
  2286. $context['xml_data'] = array(
  2287. 'results' => array(
  2288. 'identifier' => 'result',
  2289. 'children' => array(
  2290. array(
  2291. 'attributes' => array(
  2292. 'success' => !empty($package_ftp) ? 1 : 0,
  2293. ),
  2294. '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']),
  2295. ),
  2296. ),
  2297. ),
  2298. );
  2299. }
  2300. ?>