forked from SimpleMachines/SMF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Packages.php
2730 lines (2396 loc) · 95.4 KB
/
Packages.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* This file is the main Package Manager.
*
* Simple Machines Forum (SMF)
*
* @package SMF
* @author Simple Machines https://www.simplemachines.org
* @copyright 2022 Simple Machines and individual contributors
* @license https://www.simplemachines.org/about/smf/license.php BSD
*
* @version 2.1.0
*/
if (!defined('SMF'))
die('No direct access...');
/**
* This is the notoriously defunct package manager..... :/.
*/
function Packages()
{
global $txt, $sourcedir, $context;
// @todo Remove this!
if (isset($_GET['get']) || isset($_GET['pgdownload']))
{
require_once($sourcedir . '/PackageGet.php');
return PackageGet();
}
isAllowedTo('admin_forum');
// Load all the basic stuff.
require_once($sourcedir . '/Subs-Package.php');
loadLanguage('Packages');
loadTemplate('Packages', 'admin');
$context['page_title'] = $txt['package'];
// Delegation makes the world... that is, the package manager go 'round.
$subActions = array(
'browse' => 'PackageBrowse',
'remove' => 'PackageRemove',
'list' => 'PackageList',
'ftptest' => 'PackageFTPTest',
'install' => 'PackageInstallTest',
'install2' => 'PackageInstall',
'uninstall' => 'PackageInstallTest',
'uninstall2' => 'PackageInstall',
'options' => 'PackageOptions',
'perms' => 'PackagePermissions',
'flush' => 'FlushInstall',
'examine' => 'ExamineFile',
'showoperations' => 'ViewOperations',
);
// Work out exactly who it is we are calling.
if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]))
$context['sub_action'] = $_REQUEST['sa'];
else
$context['sub_action'] = 'browse';
// Set up some tabs...
$context[$context['admin_menu_name']]['tab_data'] = array(
'title' => $txt['package_manager'],
// @todo 'help' => 'registrations',
'description' => $txt['package_manager_desc'],
'tabs' => array(
'browse' => array(
),
'packageget' => array(
'description' => $txt['download_packages_desc'],
),
'perms' => array(
'description' => $txt['package_file_perms_desc'],
),
'options' => array(
'description' => $txt['package_install_options_desc'],
),
),
);
if ($context['sub_action'] == 'browse')
loadJavaScriptFile('suggest.js', array('defer' => false, 'minimize' => true), 'smf_suggest');
call_integration_hook('integrate_manage_packages', array(&$subActions));
// Call the function we're handing control to.
call_helper($subActions[$context['sub_action']]);
}
/**
* Test install a package.
*/
function PackageInstallTest()
{
global $boarddir, $txt, $context, $scripturl, $sourcedir, $packagesdir, $modSettings, $smcFunc, $settings;
// You have to specify a file!!
if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
redirectexit('action=admin;area=packages');
$context['filename'] = preg_replace('~[\.]+~', '.', $_REQUEST['package']);
// Do we have an existing id, for uninstalls and the like.
$context['install_id'] = isset($_REQUEST['pid']) ? (int) $_REQUEST['pid'] : 0;
require_once($sourcedir . '/Subs-Package.php');
// Load up the package FTP information?
create_chmod_control();
// Make sure temp directory exists and is empty.
if (file_exists($packagesdir . '/temp'))
deltree($packagesdir . '/temp', false);
if (!mktree($packagesdir . '/temp', 0755))
{
deltree($packagesdir . '/temp', false);
if (!mktree($packagesdir . '/temp', 0777))
{
deltree($packagesdir . '/temp', false);
create_chmod_control(array($packagesdir . '/temp/delme.tmp'), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=' . $_REQUEST['sa'] . ';package=' . $_REQUEST['package'], 'crash_on_error' => true));
deltree($packagesdir . '/temp', false);
if (!mktree($packagesdir . '/temp', 0777))
fatal_lang_error('package_cant_download', false);
}
}
$context['uninstalling'] = $_REQUEST['sa'] == 'uninstall';
// Change our last link tree item for more information on this Packages area.
$context['linktree'][count($context['linktree']) - 1] = array(
'url' => $scripturl . '?action=admin;area=packages;sa=browse',
'name' => $context['uninstalling'] ? $txt['package_uninstall_actions'] : $txt['install_actions']
);
$context['page_title'] .= ' - ' . ($context['uninstalling'] ? $txt['package_uninstall_actions'] : $txt['install_actions']);
$context['sub_template'] = 'view_package';
if (!file_exists($packagesdir . '/' . $context['filename']))
{
deltree($packagesdir . '/temp');
fatal_lang_error('package_no_file', false);
}
// Extract the files so we can get things like the readme, etc.
if (is_file($packagesdir . '/' . $context['filename']))
{
$context['extracted_files'] = read_tgz_file($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
if ($context['extracted_files'] && !file_exists($packagesdir . '/temp/package-info.xml'))
foreach ($context['extracted_files'] as $file)
if (basename($file['filename']) == 'package-info.xml')
{
$context['base_path'] = dirname($file['filename']) . '/';
break;
}
if (!isset($context['base_path']))
$context['base_path'] = '';
}
elseif (is_dir($packagesdir . '/' . $context['filename']))
{
copytree($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
$context['extracted_files'] = listtree($packagesdir . '/temp');
$context['base_path'] = '';
}
else
fatal_lang_error('no_access', false);
// Load up any custom themes we may want to install into...
$request = $smcFunc['db_query']('', '
SELECT id_theme, variable, value
FROM {db_prefix}themes
WHERE (id_theme = {int:default_theme} OR id_theme IN ({array_int:known_theme_list}))
AND variable IN ({string:name}, {string:theme_dir})',
array(
'known_theme_list' => explode(',', $modSettings['knownThemes']),
'default_theme' => 1,
'name' => 'name',
'theme_dir' => 'theme_dir',
)
);
$theme_paths = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
$smcFunc['db_free_result']($request);
// Get the package info...
$packageInfo = getPackageInfo($context['filename']);
if (!is_array($packageInfo))
fatal_lang_error($packageInfo);
$packageInfo['filename'] = $context['filename'];
$context['package_name'] = isset($packageInfo['name']) ? $packageInfo['name'] : $context['filename'];
// Set the type of extraction...
$context['extract_type'] = isset($packageInfo['type']) ? $packageInfo['type'] : 'modification';
// Get our validation info.
$context['validation_tests'] = package_validate_installtest(array(
'file_name' => $packagesdir . '/' . $context['filename'],
'custom_id' => !empty($packageInfo['id']) ? $packageInfo['id'] : '',
'custom_type' => $context['extract_type']
));
// The mod isn't installed.... unless proven otherwise.
$context['is_installed'] = false;
// See if it is installed?
$request = $smcFunc['db_query']('', '
SELECT version, themes_installed, db_changes
FROM {db_prefix}log_packages
WHERE package_id = {string:current_package}
AND install_state != {int:not_installed}
ORDER BY time_installed DESC
LIMIT 1',
array(
'not_installed' => 0,
'current_package' => $packageInfo['id'],
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$old_themes = explode(',', $row['themes_installed']);
$old_version = $row['version'];
$db_changes = empty($row['db_changes']) ? array() : $smcFunc['json_decode']($row['db_changes'], true);
}
$smcFunc['db_free_result']($request);
$context['database_changes'] = array();
if (isset($packageInfo['uninstall']['database']))
$context['database_changes'][] = sprintf($txt['package_db_code'], $packageInfo['uninstall']['database']);
if (!empty($db_changes))
{
foreach ($db_changes as $change)
{
if (isset($change[2]) && isset($txt['package_db_' . $change[0]]))
$context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1], $change[2]);
elseif (isset($txt['package_db_' . $change[0]]))
$context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1]);
else
$context['database_changes'][] = $change[0] . '-' . $change[1] . (isset($change[2]) ? '-' . $change[2] : '');
}
}
// Uninstalling?
if ($context['uninstalling'])
{
// Wait, it's not installed yet!
if (!isset($old_version) && $context['uninstalling'])
{
deltree($packagesdir . '/temp');
fatal_lang_error('package_cant_uninstall', false);
}
$actions = parsePackageInfo($packageInfo['xml'], true, 'uninstall');
// Gadzooks! There's no uninstaller at all!?
if (empty($actions))
{
deltree($packagesdir . '/temp');
fatal_lang_error('package_uninstall_cannot', false);
}
// Can't edit the custom themes it's edited if you're uninstalling, they must be removed.
$context['themes_locked'] = true;
// Only let them uninstall themes it was installed into.
foreach ($theme_paths as $id => $data)
if ($id != 1 && !in_array($id, $old_themes))
unset($theme_paths[$id]);
}
elseif (isset($old_version) && $old_version != $packageInfo['version'])
{
// Look for an upgrade...
$actions = parsePackageInfo($packageInfo['xml'], true, 'upgrade', $old_version);
// There was no upgrade....
if (empty($actions))
$context['is_installed'] = true;
else
{
// Otherwise they can only upgrade themes from the first time around.
foreach ($theme_paths as $id => $data)
if ($id != 1 && !in_array($id, $old_themes))
unset($theme_paths[$id]);
}
}
elseif (isset($old_version) && $old_version == $packageInfo['version'])
$context['is_installed'] = true;
if (!isset($old_version) || $context['is_installed'])
$actions = parsePackageInfo($packageInfo['xml'], true, 'install');
$context['actions'] = array();
$context['ftp_needed'] = false;
$context['has_failure'] = false;
$chmod_files = array();
// no actions found, return so we can display an error
if (empty($actions))
return;
// This will hold data about anything that can be installed in other themes.
$themeFinds = array(
'candidates' => array(),
'other_themes' => array(),
);
// Now prepare things for the template.
foreach ($actions as $action)
{
// Not failed until proven otherwise.
$failed = false;
$thisAction = array();
if ($action['type'] == 'chmod')
{
$chmod_files[] = $action['filename'];
continue;
}
elseif ($action['type'] == 'readme' || $action['type'] == 'license')
{
$type = 'package_' . $action['type'];
if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename']))
$context[$type] = $smcFunc['htmlspecialchars'](trim(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), "\n\r"));
elseif (file_exists($action['filename']))
$context[$type] = $smcFunc['htmlspecialchars'](trim(file_get_contents($action['filename']), "\n\r"));
if (!empty($action['parse_bbc']))
{
require_once($sourcedir . '/Subs-Post.php');
$context[$type] = preg_replace('~\[[/]?html\]~i', '', $context[$type]);
preparsecode($context[$type]);
$context[$type] = parse_bbc($context[$type]);
}
else
$context[$type] = nl2br($context[$type]);
continue;
}
// Don't show redirects.
elseif ($action['type'] == 'redirect')
continue;
elseif ($action['type'] == 'error')
{
$context['has_failure'] = true;
if (isset($action['error_msg']) && isset($action['error_var']))
$context['failure_details'] = sprintf($txt['package_will_fail_' . $action['error_msg']], $action['error_var']);
elseif (isset($action['error_msg']))
$context['failure_details'] = isset($txt['package_will_fail_' . $action['error_msg']]) ? $txt['package_will_fail_' . $action['error_msg']] : $action['error_msg'];
}
elseif ($action['type'] == 'modification')
{
if (!file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename']))
{
$context['has_failure'] = true;
$context['actions'][] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($action['filename'], array($boarddir => '.'))),
'description' => $txt['package_action_missing'],
'failed' => true,
);
}
else
{
if ($action['boardmod'])
$mod_actions = parseBoardMod(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths);
else
$mod_actions = parseModification(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths);
if (count($mod_actions) == 1 && isset($mod_actions[0]) && $mod_actions[0]['type'] == 'error' && $mod_actions[0]['filename'] == '-')
$mod_actions[0]['filename'] = $action['filename'];
foreach ($mod_actions as $key => $mod_action)
{
// Lets get the last section of the file name.
if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php')
$actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']);
elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches))
$actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']);
else
$actual_filename = $key;
if ($mod_action['type'] == 'opened')
$failed = false;
elseif ($mod_action['type'] == 'failure')
{
if (empty($mod_action['is_custom']))
$context['has_failure'] = true;
$failed = true;
}
elseif ($mod_action['type'] == 'chmod')
{
$chmod_files[] = $mod_action['filename'];
}
elseif ($mod_action['type'] == 'saved')
{
if (!empty($mod_action['is_custom']))
{
if (!isset($context['theme_actions'][$mod_action['is_custom']]))
$context['theme_actions'][$mod_action['is_custom']] = array(
'name' => $theme_paths[$mod_action['is_custom']]['name'],
'actions' => array(),
'has_failure' => $failed,
);
else
$context['theme_actions'][$mod_action['is_custom']]['has_failure'] |= $failed;
$context['theme_actions'][$mod_action['is_custom']]['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $failed ? $txt['package_action_failure'] : $txt['package_action_success'],
'failed' => $failed,
);
}
elseif (!isset($context['actions'][$actual_filename]))
{
$context['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $failed ? $txt['package_action_failure'] : $txt['package_action_success'],
'failed' => $failed,
);
}
else
{
$context['actions'][$actual_filename]['failed'] |= $failed;
$context['actions'][$actual_filename]['description'] = $context['actions'][$actual_filename]['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'];
}
}
elseif ($mod_action['type'] == 'skipping')
{
$context['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $txt['package_action_skipping']
);
}
elseif ($mod_action['type'] == 'missing' && empty($mod_action['is_custom']))
{
$context['has_failure'] = true;
$context['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $txt['package_action_missing'],
'failed' => true,
);
}
elseif ($mod_action['type'] == 'error')
$context['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $txt['package_action_error'],
'failed' => true,
);
}
// We need to loop again just to get the operations down correctly.
foreach ($mod_actions as $operation_key => $mod_action)
{
// Lets get the last section of the file name.
if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php')
$actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']);
elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches))
$actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']);
else
$actual_filename = $key;
// We just need it for actual parse changes.
if (!in_array($mod_action['type'], array('error', 'result', 'opened', 'saved', 'end', 'missing', 'skipping', 'chmod')))
{
if (empty($mod_action['is_custom']))
$context['actions'][$actual_filename]['operations'][] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $mod_action['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'],
'position' => $mod_action['position'],
'operation_key' => $operation_key,
'filename' => $action['filename'],
'is_boardmod' => $action['boardmod'],
'failed' => $mod_action['failed'],
'ignore_failure' => !empty($mod_action['ignore_failure']),
);
// Themes are under the saved type.
if (isset($mod_action['is_custom']) && isset($context['theme_actions'][$mod_action['is_custom']]))
$context['theme_actions'][$mod_action['is_custom']]['actions'][$actual_filename]['operations'][] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $mod_action['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'],
'position' => $mod_action['position'],
'operation_key' => $operation_key,
'filename' => $action['filename'],
'is_boardmod' => $action['boardmod'],
'failed' => $mod_action['failed'],
'ignore_failure' => !empty($mod_action['ignore_failure']),
);
}
}
}
}
elseif ($action['type'] == 'code')
{
$thisAction = array(
'type' => $txt['execute_code'],
'action' => $smcFunc['htmlspecialchars']($action['filename']),
);
}
elseif ($action['type'] == 'database' && !$context['uninstalling'])
{
$thisAction = array(
'type' => $txt['execute_database_changes'],
'action' => $smcFunc['htmlspecialchars']($action['filename']),
);
}
elseif (in_array($action['type'], array('create-dir', 'create-file')))
{
$thisAction = array(
'type' => $txt['package_create'] . ' ' . ($action['type'] == 'create-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.')))
);
}
elseif ($action['type'] == 'hook')
{
$action['description'] = !isset($action['hook'], $action['function']) ? $txt['package_action_failure'] : $txt['package_action_success'];
if (!isset($action['hook'], $action['function']))
$context['has_failure'] = true;
$thisAction = array(
'type' => $action['reverse'] ? $txt['execute_hook_remove'] : $txt['execute_hook_add'],
'action' => sprintf($txt['execute_hook_action' . ($action['reverse'] ? '_inverse' : '')], $smcFunc['htmlspecialchars']($action['hook'])),
);
}
elseif ($action['type'] == 'credits')
{
$thisAction = array(
'type' => $txt['execute_credits_add'],
'action' => sprintf($txt['execute_credits_action'], $smcFunc['htmlspecialchars']($action['title'])),
);
}
elseif ($action['type'] == 'requires')
{
$installed = false;
$version = true;
// package missing required values?
if (!isset($action['id']))
$context['has_failure'] = true;
else
{
// See if this dependancy is installed
$request = $smcFunc['db_query']('', '
SELECT version
FROM {db_prefix}log_packages
WHERE package_id = {string:current_package}
AND install_state != {int:not_installed}
ORDER BY time_installed DESC
LIMIT 1',
array(
'not_installed' => 0,
'current_package' => $action['id'],
)
);
$installed = ($smcFunc['db_num_rows']($request) !== 0);
if ($installed)
list ($version) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
// do a version level check (if requested) in the most basic way
$version = (isset($action['version']) ? $version == $action['version'] : true);
}
// Set success or failure information
$action['description'] = ($installed && $version) ? $txt['package_action_success'] : $txt['package_action_failure'];
$context['has_failure'] = !($installed && $version);
$thisAction = array(
'type' => $txt['package_requires'],
'action' => $txt['package_check_for'] . ' ' . $action['id'] . (isset($action['version']) ? (' / ' . ($version ? $action['version'] : '<span class="error">' . $action['version'] . '</span>')) : ''),
);
}
elseif (in_array($action['type'], array('require-dir', 'require-file')))
{
// Do this one...
$thisAction = array(
'type' => $txt['package_extract'] . ' ' . ($action['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.')))
);
// Could this be theme related?
if (!empty($action['unparsed_destination']) && preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir|themes_dir)~i', $action['unparsed_destination'], $matches))
{
// Is the action already stated?
$theme_action = !empty($action['theme_action']) && in_array($action['theme_action'], array('no', 'yes', 'auto')) ? $action['theme_action'] : 'auto';
// If it's not auto do we think we have something we can act upon?
if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir')))
$theme_action = '';
// ... or if it's auto do we even want to do anything?
elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir')
$theme_action = '';
// So, we still want to do something?
if ($theme_action != '')
$themeFinds['candidates'][] = $action;
// Otherwise is this is going into another theme record it.
elseif ($matches[1] == 'themes_dir')
$themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_destination']), array('\\' => '/')) . '/' . basename($action['filename']));
}
}
elseif (in_array($action['type'], array('move-dir', 'move-file')))
$thisAction = array(
'type' => $txt['package_move'] . ' ' . ($action['type'] == 'move-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => $smcFunc['htmlspecialchars'](strtr($action['source'], array($boarddir => '.'))) . ' => ' . $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.')))
);
elseif (in_array($action['type'], array('remove-dir', 'remove-file')))
{
$thisAction = array(
'type' => $txt['package_delete'] . ' ' . ($action['type'] == 'remove-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => $smcFunc['htmlspecialchars'](strtr($action['filename'], array($boarddir => '.')))
);
// Could this be theme related?
if (!empty($action['unparsed_filename']) && preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir|themes_dir)~i', $action['unparsed_filename'], $matches))
{
// Is the action already stated?
$theme_action = !empty($action['theme_action']) && in_array($action['theme_action'], array('no', 'yes', 'auto')) ? $action['theme_action'] : 'auto';
$action['unparsed_destination'] = $action['unparsed_filename'];
// If it's not auto do we think we have something we can act upon?
if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir')))
$theme_action = '';
// ... or if it's auto do we even want to do anything?
elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir')
$theme_action = '';
// So, we still want to do something?
if ($theme_action != '')
$themeFinds['candidates'][] = $action;
// Otherwise is this is going into another theme record it.
elseif ($matches[1] == 'themes_dir')
$themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_filename']), array('\\' => '/')) . '/' . basename($action['filename']));
}
}
if (empty($thisAction))
continue;
if (!in_array($action['type'], array('hook', 'credits')))
{
if ($context['uninstalling'])
$file = in_array($action['type'], array('remove-dir', 'remove-file')) ? $action['filename'] : $packagesdir . '/temp/' . $context['base_path'] . $action['filename'];
else
$file = $packagesdir . '/temp/' . $context['base_path'] . $action['filename'];
}
// Don't fail if a file/directory we're trying to create doesn't exist...
if (isset($action['filename']) && !file_exists($file) && !in_array($action['type'], array('create-dir', 'create-file')))
{
$context['has_failure'] = true;
$thisAction += array(
'description' => $txt['package_action_missing'],
'failed' => true,
);
}
// @todo None given?
if (empty($thisAction['description']))
$thisAction['description'] = isset($action['description']) ? $action['description'] : '';
$context['actions'][] = $thisAction;
}
// Have we got some things which we might want to do "multi-theme"?
if (!empty($themeFinds['candidates']))
{
foreach ($themeFinds['candidates'] as $action_data)
{
// Get the part of the file we'll be dealing with.
preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir)(\\|/)*(.+)*~i', $action_data['unparsed_destination'], $matches);
if ($matches[1] == 'imagesdir')
$path = '/' . basename($settings['default_images_url']);
elseif ($matches[1] == 'languagedir' || $matches[1] == 'languages_dir')
$path = '/languages';
else
$path = '';
if (!empty($matches[3]))
$path .= $matches[3];
if (!$context['uninstalling'])
$path .= '/' . basename($action_data['filename']);
// Loop through each custom theme to note it's candidacy!
foreach ($theme_paths as $id => $theme_data)
{
if (isset($theme_data['theme_dir']) && $id != 1)
{
$real_path = $theme_data['theme_dir'] . $path;
// Confirm that we don't already have this dealt with by another entry.
if (!in_array(strtolower(strtr($real_path, array('\\' => '/'))), $themeFinds['other_themes']))
{
// Check if we will need to chmod this.
if (!mktree(dirname($real_path), false))
{
$temp = dirname($real_path);
while (!file_exists($temp) && strlen($temp) > 1)
$temp = dirname($temp);
$chmod_files[] = $temp;
}
if ($action_data['type'] == 'require-dir' && !is_writable($real_path) && (file_exists($real_path) || !is_writable(dirname($real_path))))
$chmod_files[] = $real_path;
if (!isset($context['theme_actions'][$id]))
$context['theme_actions'][$id] = array(
'name' => $theme_data['name'],
'actions' => array(),
);
if ($context['uninstalling'])
$context['theme_actions'][$id]['actions'][] = array(
'type' => $txt['package_delete'] . ' ' . ($action_data['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => strtr($real_path, array('\\' => '/', $boarddir => '.')),
'description' => '',
'value' => base64_encode($smcFunc['json_encode'](array('type' => $action_data['type'], 'orig' => $action_data['filename'], 'future' => $real_path, 'id' => $id))),
'not_mod' => true,
);
else
$context['theme_actions'][$id]['actions'][] = array(
'type' => $txt['package_extract'] . ' ' . ($action_data['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => strtr($real_path, array('\\' => '/', $boarddir => '.')),
'description' => '',
'value' => base64_encode($smcFunc['json_encode'](array('type' => $action_data['type'], 'orig' => $action_data['destination'], 'future' => $real_path, 'id' => $id))),
'not_mod' => true,
);
}
}
}
}
}
// Trash the cache... which will also check permissions for us!
package_flush_cache(true);
if (file_exists($packagesdir . '/temp'))
deltree($packagesdir . '/temp');
if (!empty($chmod_files))
{
$ftp_status = create_chmod_control($chmod_files);
$context['ftp_needed'] = !empty($ftp_status['files']['notwritable']) && !empty($context['package_ftp']);
}
$context['post_url'] = $scripturl . '?action=admin;area=packages;sa=' . ($context['uninstalling'] ? 'uninstall' : 'install') . ($context['ftp_needed'] ? '' : '2') . ';package=' . $context['filename'] . ';pid=' . $context['install_id'];
checkSubmitOnce('register');
}
/**
* Apply another type of (avatar, language, etc.) package.
*/
function PackageInstall()
{
global $txt, $context, $boardurl, $scripturl, $sourcedir, $packagesdir, $modSettings;
global $user_info, $smcFunc;
// Make sure we don't install this mod twice.
checkSubmitOnce('check');
checkSession();
// If there's no file, what are we installing?
if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
redirectexit('action=admin;area=packages');
$context['filename'] = $_REQUEST['package'];
// If this is an uninstall, we'll have an id.
$context['install_id'] = isset($_REQUEST['pid']) ? (int) $_REQUEST['pid'] : 0;
require_once($sourcedir . '/Subs-Package.php');
// @todo Perhaps do it in steps, if necessary?
$context['uninstalling'] = $_REQUEST['sa'] == 'uninstall2';
// Set up the linktree for other.
$context['linktree'][count($context['linktree']) - 1] = array(
'url' => $scripturl . '?action=admin;area=packages;sa=browse',
'name' => $context['uninstalling'] ? $txt['uninstall'] : $txt['extracting']
);
$context['page_title'] .= ' - ' . ($context['uninstalling'] ? $txt['uninstall'] : $txt['extracting']);
$context['sub_template'] = 'extract_package';
if (!file_exists($packagesdir . '/' . $context['filename']))
fatal_lang_error('package_no_file', false);
// Load up the package FTP information?
create_chmod_control(array(), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=' . $_REQUEST['sa'] . ';package=' . $_REQUEST['package']));
// Make sure temp directory exists and is empty!
if (file_exists($packagesdir . '/temp'))
deltree($packagesdir . '/temp', false);
else
mktree($packagesdir . '/temp', 0777);
// Let the unpacker do the work.
if (is_file($packagesdir . '/' . $context['filename']))
{
$context['extracted_files'] = read_tgz_file($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
if (!file_exists($packagesdir . '/temp/package-info.xml'))
foreach ($context['extracted_files'] as $file)
if (basename($file['filename']) == 'package-info.xml')
{
$context['base_path'] = dirname($file['filename']) . '/';
break;
}
if (!isset($context['base_path']))
$context['base_path'] = '';
}
elseif (is_dir($packagesdir . '/' . $context['filename']))
{
copytree($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
$context['extracted_files'] = listtree($packagesdir . '/temp');
$context['base_path'] = '';
}
else
fatal_lang_error('no_access', false);
// Are we installing this into any custom themes?
$custom_themes = array(1);
$known_themes = explode(',', $modSettings['knownThemes']);
if (!empty($_POST['custom_theme']))
{
foreach ($_POST['custom_theme'] as $tid)
if (in_array($tid, $known_themes))
$custom_themes[] = (int) $tid;
}
// Now load up the paths of the themes that we need to know about.
$request = $smcFunc['db_query']('', '
SELECT id_theme, variable, value
FROM {db_prefix}themes
WHERE id_theme IN ({array_int:custom_themes})
AND variable IN ({string:name}, {string:theme_dir})',
array(
'custom_themes' => $custom_themes,
'name' => 'name',
'theme_dir' => 'theme_dir',
)
);
$theme_paths = array();
$themes_installed = array(1);
while ($row = $smcFunc['db_fetch_assoc']($request))
$theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
$smcFunc['db_free_result']($request);
// Are there any theme copying that we want to take place?
$context['theme_copies'] = array(
'require-file' => array(),
'require-dir' => array(),
);
if (!empty($_POST['theme_changes']))
{
foreach ($_POST['theme_changes'] as $change)
{
if (empty($change))
continue;
$theme_data = $smcFunc['json_decode'](base64_decode($change), true);
if (empty($theme_data['type']))
continue;
$themes_installed[] = $theme_data['id'];
$context['theme_copies'][$theme_data['type']][$theme_data['orig']][] = $theme_data['future'];
}
}
// Get the package info...
$packageInfo = getPackageInfo($context['filename']);
if (!is_array($packageInfo))
fatal_lang_error($packageInfo);
if (is_dir($packagesdir . '/' . $context['filename']))
$context['package_sha256_hash'] = '';
else
$context['package_sha256_hash'] = hash_file('sha256', $packagesdir . '/' . $context['filename']);
$packageInfo['filename'] = $context['filename'];
// Set the type of extraction...
$context['extract_type'] = isset($packageInfo['type']) ? $packageInfo['type'] : 'modification';
// Create a backup file to roll back to! (but if they do this more than once, don't run it a zillion times.)
if (!empty($modSettings['package_make_full_backups']) && (!isset($_SESSION['last_backup_for']) || $_SESSION['last_backup_for'] != $context['filename'] . ($context['uninstalling'] ? '$$' : '$')))
{
$_SESSION['last_backup_for'] = $context['filename'] . ($context['uninstalling'] ? '$$' : '$');
$result = package_create_backup(($context['uninstalling'] ? 'backup_' : 'before_') . strtok($context['filename'], '.'));
if (!$result)
fatal_lang_error('could_not_package_backup', false);
}
// The mod isn't installed.... unless proven otherwise.
$context['is_installed'] = false;
// Is it actually installed?
$request = $smcFunc['db_query']('', '
SELECT version, themes_installed, db_changes
FROM {db_prefix}log_packages
WHERE package_id = {string:current_package}
AND install_state != {int:not_installed}
ORDER BY time_installed DESC
LIMIT 1',
array(
'not_installed' => 0,
'current_package' => $packageInfo['id'],
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$old_themes = explode(',', $row['themes_installed']);
$old_version = $row['version'];
$db_changes = empty($row['db_changes']) ? array() : $smcFunc['json_decode']($row['db_changes'], true);
}
$smcFunc['db_free_result']($request);
// Wait, it's not installed yet!
// @todo Replace with a better error message!
if (!isset($old_version) && $context['uninstalling'])
{
deltree($packagesdir . '/temp');
fatal_error('Hacker?', false);
}
// Uninstalling?
elseif ($context['uninstalling'])
{
$install_log = parsePackageInfo($packageInfo['xml'], false, 'uninstall');
// Gadzooks! There's no uninstaller at all!?
if (empty($install_log))
fatal_lang_error('package_uninstall_cannot', false);
// They can only uninstall from what it was originally installed into.
foreach ($theme_paths as $id => $data)
if ($id != 1 && !in_array($id, $old_themes))
unset($theme_paths[$id]);
$context['keep_url'] = $scripturl . '?action=admin;area=packages;sa=browse;' . $context['session_var'] . '=' . $context['session_id'];
$context['remove_url'] = $scripturl . '?action=admin;area=packages;sa=remove;package=' . $context['filename'] . ';' . $context['session_var'] . '=' . $context['session_id'];
}
elseif (isset($old_version) && $old_version != $packageInfo['version'])
{
// Look for an upgrade...
$install_log = parsePackageInfo($packageInfo['xml'], false, 'upgrade', $old_version);
// There was no upgrade....
if (empty($install_log))
$context['is_installed'] = true;
else
{
// Upgrade previous themes only!
foreach ($theme_paths as $id => $data)
if ($id != 1 && !in_array($id, $old_themes))
unset($theme_paths[$id]);
}
}
elseif (isset($old_version) && $old_version == $packageInfo['version'])
$context['is_installed'] = true;
if (!isset($old_version) || $context['is_installed'])
$install_log = parsePackageInfo($packageInfo['xml'], false, 'install');
$context['install_finished'] = false;
// @todo Make a log of any errors that occurred and output them?
if (!empty($install_log))
{
$failed_steps = array();
$failed_count = 0;
foreach ($install_log as $action)
{
$failed_count++;
if ($action['type'] == 'modification' && !empty($action['filename']))
{
if ($action['boardmod'])