-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmedia.php
More file actions
1189 lines (1082 loc) · 46.1 KB
/
media.php
File metadata and controls
1189 lines (1082 loc) · 46.1 KB
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
/**
* Popup window that will allow a user to search for a media
*
* phpGedView: Genealogy Viewer
* Copyright (C) 2002 to 2008 PGV Development Team. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @author PGV Development Team
* @package PhpGedView
* @subpackage Display
* @version $Id$
*/
/* TODO:
* Add check for missing index.php files when creating a directory
* Add an option to generate thumbnails for all files on the page
* Add filter for correct media like php, gif etc.
* Check for URL instead of physical file
* Check array buld up use ID_GEDCOM for aray key
*/
/* Standard variable convention media.php
* $filename = Filename of the media item
* $thumbnail = Filename of the thumbnail of the media item
* $gedfile = Name of the GEDCOM file
* $medialist = Array with all media items
* $directory = Current directory, starting with $MEDIA_DIRECTORY. Has trailing "/".
* $dirs = list of subdirectories within current directory. Built with medialist.
*/
/**
* load the main configuration and context
*/
require_once( '../kernel/setup_inc.php' );
// Is package installed and enabled
$gBitSystem->verifyPackage( 'phpgedview' );
include_once( PHPGEDVIEW_PKG_PATH.'BitGEDCOM.php' );
$gGedcom = new BitGEDCOM();
// leave manual config until we can move it to bitweaver table
require("config.php");
require_once 'includes/functions/functions_print_lists.php';
require_once 'includes/functions/functions_print_facts.php';
require_once 'includes/functions/functions_edit.php';
require_once 'includes/functions/functions_import.php';
require_once 'includes/functions/functions_mediadb.php';
if (isset($_REQUEST['DEBUG'])) $DEBUG = $_REQUEST['DEBUG'];
else $DEBUG = false;
/**
* This functions checks if an existing directory is physically writeable
* The standard PHP function only checks for the R/O attribute and doesn't
* detect authorisation by ACL.
*/
function dir_is_writable($dir) {
$err_write = false;
$handle = @fopen(filename_decode($dir."x.y"),"w+");
if ($handle) {
$i = fclose($handle);
$err_write = true;
@unlink(filename_decode($dir."x.y"));
}
return($err_write);
}
/**
* Moves a file from one location to another, creating destination directory if needed
* used by the routines that move files between the standard media directory and the protected media directory
*/
function move_file($src, $dest) {
global $pgv_lang, $MEDIA_FIREWALL_ROOTDIR, $MEDIA_DIRECTORY;
// sometimes thumbnail files are set to something like "images/media.gif", this ensures we do not move them
// check to make sure the src file is in the standard or protected media directories
if (preg_match("'^($MEDIA_FIREWALL_ROOTDIR)?$MEDIA_DIRECTORY'", $src)==0){
return false;
}
// check to make sure the dest file is in the standard or protected media directories
if (preg_match("'^($MEDIA_FIREWALL_ROOTDIR)?$MEDIA_DIRECTORY'", $dest)==0){
return false;
}
$destdir = dirname($dest);
if (!is_dir($destdir)) {
@mkdirs($destdir);
if (!is_dir($destdir)) {
print "<div class=\"error\">".$pgv_lang["folder_no_create"]." [".$destdir."]</div>";
return false;
}
}
if(!rename($src, $dest)) {
print "<div class=\"error\">".$pgv_lang["media_file_not_moved"]." [".$src."]</div>";
return false;
}
print "<div>".$pgv_lang["media_file_moved"]." [".$src."]</div>";
return true;
}
/**
* Recursively moves files from standard media directory to the protected media directory
* and vice-versa. Operates directly on the filesystem, does not use the db.
*/
function move_files($path, $protect) {
global $MEDIA_FIREWALL_THUMBS, $TIME_LIMIT, $starttime, $pgv_lang;
if ($dir=@opendir($path)) {
while (($element=readdir($dir))!== false) {
$timelimit = $TIME_LIMIT ? $TIME_LIMIT : 0;
$exectime = time() - $starttime;
if (($timelimit != 0) && ($timelimit - $exectime) < 3) {
// bail now to ensure nothing is lost
print "<div class=\"error\">".$pgv_lang["move_time_exceeded"]."</div>";
return;
}
// do not move certain files...
if ($element!= "." && $element!= ".." && $element!=".svn" && $element!="watermark" && $element!="thumbs" && $element!=".htaccess" && $element!="index.php" && $element!="MediaInfo.txt" && $element!="ThumbsInfo.txt") {
$filename = $path."/".$element;
if (is_dir($filename)) {
// call this function recursively on this directory
move_files($filename, $protect);
} else {
if ($protect) {
// Move single file and optionally its corresponding thumbnail to protected dir
if (file_exists($filename)) {
move_file($filename, get_media_firewall_path($filename));
}
if ($MEDIA_FIREWALL_THUMBS) {
$thumbnail = thumbnail_file($filename,false);
if (file_exists($thumbnail)) {
move_file($thumbnail, get_media_firewall_path($thumbnail));
}
}
} else {
// Move single file and its corresponding thumbnail to standard dir
$filename = get_media_standard_path($filename);
if (file_exists(get_media_firewall_path($filename))) {
move_file(get_media_firewall_path($filename), $filename);
}
$thumbnail = thumbnail_file($filename,false);
if (file_exists(get_media_firewall_path($thumbnail))) {
move_file(get_media_firewall_path($thumbnail), $thumbnail);
}
}
}
}
}
print "</td></tr></table>";
$action="filter";
closedir($dir);
}
return;
}
/**
* Recursively sets the permissions on files
* Operates directly on the filesystem, does not use the db.
*/
function set_perms($path) {
global $MEDIA_FIREWALL_ROOTDIR, $MEDIA_DIRECTORY, $TIME_LIMIT, $starttime, $pgv_lang;
if (preg_match("'^($MEDIA_FIREWALL_ROOTDIR)?$MEDIA_DIRECTORY'", $path."/")==0){
return false;
}
if ($dir=@opendir($path)) {
while (($element=readdir($dir))!== false) {
$timelimit = $TIME_LIMIT ? $TIME_LIMIT : 0;
$exectime = time() - $starttime;
if (($timelimit != 0) && ($timelimit - $exectime) < 3) {
// bail now to ensure nothing is lost
print "<div class=\"error\">".$pgv_lang["setperms_time_exceeded"]."</div>";
return;
}
// do not set perms on certain files...
if ($element!= "." && $element!= ".." && $element!=".svn") {
$fullpath = $path."/".$element;
if (is_dir($fullpath)) {
if (@chmod($fullpath, PGV_PERM_EXE)) {
print "<div>".$pgv_lang["setperms_success"]." [".decoct(PGV_PERM_EXE)."] [".$fullpath."]</div>";
} else {
print "<div>".$pgv_lang["setperms_failure"]." [".decoct(PGV_PERM_EXE)."] [".$fullpath."]</div>";
}
// call this function recursively on this directory
set_perms($fullpath);
} else {
if (@chmod($fullpath, PGV_PERM_FILE)) {
print "<div>".$pgv_lang["setperms_success"]." [".decoct(PGV_PERM_FILE)."] [".$fullpath."]</div>";
} else {
print "<div>".$pgv_lang["setperms_failure"]." [".decoct(PGV_PERM_FILE)."] [".$fullpath."]</div>";
}
}
}
}
closedir($dir);
}
return;
}
// global var used by recursive functions
$starttime = time();
// TODO Determine source and validation requirements for these variables
$filename=decrypt(safe_REQUEST($_REQUEST, 'filename'));
$directory=safe_REQUEST($_REQUEST, 'directory', PGV_REGEX_NOSCRIPT, $MEDIA_DIRECTORY);
$movetodir=safe_REQUEST($_REQUEST, 'movetodir');
$movefile=safe_REQUEST($_REQUEST, 'movefile');
$action=safe_REQUEST($_REQUEST, 'action', PGV_REGEX_ALPHA, 'filter');
$subclick=safe_REQUEST($_REQUEST, 'subclick', PGV_REGEX_ALPHA, 'none');
$media=safe_REQUEST($_REQUEST, 'media');
$filter=safe_REQUEST($_REQUEST, 'filter', PGV_REGEX_NOSCRIPT);
$sortby=safe_REQUEST($_REQUEST, 'sortby', 'file', 'title');
$level=safe_REQUEST($_REQUEST, 'level', PGV_REGEX_INTEGER, 0);
$start=safe_REQUEST($_REQUEST, 'start', PGV_REGEX_INTEGER, 0);
$max=safe_REQUEST($_REQUEST, 'max', PGV_REGEX_INTEGER, 20);
$showthumb=safe_REQUEST($_REQUEST, 'showthumb');
$all=safe_REQUEST($_REQUEST, 'all', 'yes', 'no');
if (isset($_REQUEST['xref'])) $xref = $_REQUEST['xref'];
if (count($_POST) == 0) $showthumb = true;
$thumbget = "";
if ($showthumb) $thumbget = "&showthumb=true";
//-- prevent script from accessing an area outside of the media directory
//-- and keep level consistency
if (($level < 0) || ($level > $MEDIA_DIRECTORY_LEVELS)){
$directory = $MEDIA_DIRECTORY;
$level = 0;
} elseif (preg_match("'^$MEDIA_DIRECTORY'", $directory)==0){
$directory = $MEDIA_DIRECTORY;
$level = 0;
}
$thumbdir = str_replace($MEDIA_DIRECTORY, $MEDIA_DIRECTORY."thumbs/", $directory);
$directory_fw = get_media_firewall_path($directory);
$thumbdir_fw = get_media_firewall_path($thumbdir);
//-- only allow users with Admin privileges to access script.
if (!PGV_USER_IS_ADMIN || !$ALLOW_EDIT_GEDCOM) {
header("Location: login.php?url=media.php");
exit;
}
//-- TODO add check for -- admin can manipulate files
$fileaccess = false;
if (PGV_USER_IS_ADMIN) {
$fileaccess = true;
}
// Print the header of the page
print_header($pgv_lang["manage_media"]);
?>
<script language="JavaScript" type="text/javascript">
<!--
function pasteid(id) {
window.opener.paste_id(id);
window.close();
}
function ilinkitem(mediaid, type) {
window.open('inverselink.php?mediaid='+mediaid+'&linkto='+type+'&'+sessionname+'='+sessionid, '_blank', 'top=50,left=50,width=570,height=650,resizable=1,scrollbars=1');
return false;
}
function checknames(frm) {
if (document.managemedia.subclick) button = document.managemedia.subclick.value;
if (button == "all") {
frm.filter.value = "";
return true;
}
else if (frm.filter.value.length < 2) {
alert("<?php print $pgv_lang["search_more_chars"]; ?>");
frm.filter.focus();
return false;
}
return true;
}
function checkpath(folder) {
value = folder.value;
if (value.substr(value.length-1,1) == "/") value = value.substr(0, value.length-1);
if (value.substr(0,1) == "/") value = value.substr(1, value.length-1);
result = value.split("/");
if (result.length > <?php print $MEDIA_DIRECTORY_LEVELS; ?>) {
alert('<?php print_text("max_media_depth"); ?>');
folder.focus();
return false;
}
}
function showchanges() {
window.location = '<?php print $SCRIPT_NAME."?show_changes=yes&directory=".$directory."&level=".$level."&filter=".$filter."&subclick=".$subclick; ?>';
}
//-->
</script>
<script src="js/phpgedview.js" language="JavaScript" type="text/javascript"></script>
<?php
if (check_media_structure()) {
print "<div id=\"uploadmedia\" style=\"display:none\">";
// Check if Media Directory is writeable or if Media features are enabled
// If one of these is not true then do not continue
if (!dir_is_writable($MEDIA_DIRECTORY) || !$MULTI_MEDIA) {
print "<span class=\"error\"><b>";
print $pgv_lang["no_upload"];
print "</b></span><br />";
} else {
show_mediaUpload_form('media.php', $showthumb); // We have the green light to upload media, print the form
}
print "</div><br />";
ob_start(); // Save output until action table has been printed
if ($action == "deletedir") {
print "<table class=\"list_table width100\">";
print "<tr><td class=\"messagebox\">";
// Check if media directory and thumbs directory are empty
$clean = false;
$files = array();
$thumbfiles = array();
$files_fw = array();
$thumbfiles_fw = array();
$resdir = false;
$resthumb = false;
// Media directory check
if (@is_dir(filename_decode($directory))) {
$handle = opendir(filename_decode($directory));
$files = array();
while (false !== ($file = readdir($handle))) {
if (!in_array($file, $BADMEDIA)) $files[] = $file;
}
} else {
print "<div class=\"error\">".$directory." ".$pgv_lang["directory_not_exist"]."</div>";
AddToLog($directory." ".$pgv_lang["directory_not_exist"]);
}
// Thumbs directory check
if (@is_dir(filename_decode($thumbdir))) {
$handle = opendir(filename_decode($thumbdir));
$thumbfiles = array();
while (false !== ($file = readdir($handle))) {
if (!in_array($file, $BADMEDIA)) $thumbfiles[] = $file;
}
closedir($handle);
}
// Media Firewall Media directory check
if (@is_dir(filename_decode($directory_fw))) {
$handle = opendir(filename_decode($directory_fw));
$files_fw = array();
while (false !== ($file = readdir($handle))) {
if (!in_array($file, $BADMEDIA)) $files_fw[] = $file;
}
}
// Media Firewall Thumbs directory check
if (@is_dir(filename_decode($thumbdir_fw))) {
$handle = opendir(filename_decode($thumbdir_fw));
$thumbfiles_fw = array();
while (false !== ($file = readdir($handle))) {
if (!in_array($file, $BADMEDIA)) $thumbfiles_fw[] = $file;
}
closedir($handle);
}
if (!isset($error)) {
if (count($files) > 0 ) {
print "<div class=\"error\">".$directory." -- ".$pgv_lang["directory_not_empty"]."</div>";
AddToLog($directory." -- ".$pgv_lang["directory_not_empty"]);
$clean = false;
}
if (count($thumbfiles) > 0) {
print "<div class=\"error\">".$thumbdir." -- ".$pgv_lang["directory_not_empty"]."</div>";
AddToLog($thumbdir." -- ".$pgv_lang["directory_not_empty"]);
$clean = false;
}
if (count($files_fw) > 0 ) {
print "<div class=\"error\">".$directory_fw." -- ".$pgv_lang["directory_not_empty"]."</div>";
AddToLog($directory_fw." -- ".$pgv_lang["directory_not_empty"]);
$clean = false;
}
if (count($thumbfiles_fw) > 0) {
print "<div class=\"error\">".$thumbdir_fw." -- ".$pgv_lang["directory_not_empty"]."</div>";
AddToLog($thumbdir_fw." -- ".$pgv_lang["directory_not_empty"]);
$clean = false;
}
else $clean = true;
}
// Only start deleting if all directories are empty
if ($clean) {
$resdir = true;
$resthumb = true;
$resdir_fw = true;
$resthumb_fw = true;
if (file_exists(filename_decode($directory."index.php"))) @unlink(filename_decode($directory."index.php"));
if (@is_dir(filename_decode($directory))) $resdir = @rmdir(filename_decode(substr($directory,0,-1)));
if (file_exists(filename_decode($thumbdir."index.php"))) @unlink(filename_decode($thumbdir."index.php"));
if (@is_dir(filename_decode($thumbdir))) $resthumb = @rmdir(filename_decode(substr($thumbdir,0,-1)));
if (file_exists(filename_decode($directory_fw."index.php"))) @unlink(filename_decode($directory_fw."index.php"));
if (@is_dir(filename_decode($directory_fw))) $resdir_fw = @rmdir(filename_decode(substr($directory_fw,0,-1)));
if (file_exists(filename_decode($thumbdir_fw."index.php"))) @unlink(filename_decode($thumbdir_fw."index.php"));
if (@is_dir(filename_decode($thumbdir_fw))) $resthumb_fw = @rmdir(filename_decode(substr($thumbdir_fw,0,-1)));
if ($resdir && $resthumb && $resdir_fw && $resthumb_fw) {
print $pgv_lang["delete_dir_success"];
AddToLog($directory." -- ".$pgv_lang["delete_dir_success"]);
} else {
if (!$resdir) {
print "<div class=\"error\">".$pgv_lang["media_not_deleted"]."</div>";
AddToLog($directory." -- ".$pgv_lang["media_not_deleted"]);
} else if (!$resdir_fw) {
print "<div class=\"error\">".$pgv_lang["media_not_deleted"]."</div>";
AddToLog($directory_fw." -- ".$pgv_lang["media_not_deleted"]);
} else {
print $pgv_lang["media_deleted"];
AddToLog($directory." -- ".$pgv_lang["media_deleted"]);
}
if (!$resthumb) {
print "<div class=\"error\">".$pgv_lang["thumbs_not_deleted"]."</div>";
AddToLog($thumbdir." -- ".$pgv_lang["thumbs_not_deleted"]);
} else if (!$resthumb_fw) {
print "<div class=\"error\">".$pgv_lang["thumbs_not_deleted"]."</div>";
AddToLog($thumbdir_fw." -- ".$pgv_lang["thumbs_not_deleted"]);
} else {
print $pgv_lang["thumbs_deleted"];
AddToLog($thumbdir." -- ".$pgv_lang["thumbs_deleted"]);
}
}
}
// Back up to this directory's parent
$i = strrpos(substr($directory,0,-1), '/');
$directory = trim(substr($directory,0,$i), '/').'/';
$action="filter";
print "</td></tr></table>";
}
/**
* This action generates a thumbnail for the file
*
* @name $action->thumbnail
*/
if ($action == "thumbnail") {
print "<table class=\"list_table $TEXT_DIRECTION width100\">";
print "<tr><td class=\"messagebox wrap\">";
// TODO: add option to generate thumbnails for all images on page
// Cycle through $medialist and skip all exisiting thumbs
// Check if $all is true, if so generate thumbnails for all files that do
// not yet have any thumbnails created. Otherwise only the file specified.
if ($all == 'yes') {
$medialist = get_medialist(true, $directory);
foreach ($medialist as $key => $media) {
if (!($MEDIA_EXTERNAL && isFileExternal($filename))) {
// why doesn't this use thumbnail_file??
$thumbnail = str_replace("$MEDIA_DIRECTORY",$MEDIA_DIRECTORY."thumbs/",check_media_depth($media["FILE"], "NOTRUNC"));
if (!$media["THUMBEXISTS"]) {
if (generate_thumbnail($media["FILE"],$thumbnail)) {
print_text("thumb_genned");
AddToChangeLog(print_text("thumb_genned",0,1));
}
else {
print "<span class=\"error\">";
print_text("thumbgen_error");
print "</span>";
AddToChangeLog(print_text("thumbgen_error",0,1));
}
print "<br />";
}
}
}
}
else if ($all != 'yes') {
if (!($MEDIA_EXTERNAL && isFileExternal($filename))) {
$thumbnail = str_replace("$MEDIA_DIRECTORY",$MEDIA_DIRECTORY."thumbs/",check_media_depth($filename, "NOTRUNC"));
if (generate_thumbnail($filename,$thumbnail)) {
print_text("thumb_genned");
AddToChangeLog(print_text("thumb_genned",0,1));
}
else {
print "<span class=\"error\">";
print_text("thumbgen_error");
print "</span>";
AddToChangeLog(print_text("thumbgen_error",0,1));
}
}
}
$action = "filter";
print "</td></tr></table>";
}
// Move single file and optionally its corresponding thumbnail to protected dir
if ($action == "moveprotected") {
print "<table class=\"list_table $TEXT_DIRECTION width100\">";
print "<tr><td class=\"messagebox wrap\">";
if (strpos($filename,"../") !== false) {
// don't allow user to access directories outside of media dir
print "<div class=\"error\">".$pgv_lang["illegal_chars"]."</div>";
} else {
if (file_exists($filename)) {
move_file($filename, get_media_firewall_path($filename));
}
if ($MEDIA_FIREWALL_THUMBS) {
$thumbnail = thumbnail_file($filename,false);
if (file_exists($thumbnail)) {
move_file($thumbnail, get_media_firewall_path($thumbnail));
}
}
}
print "</td></tr></table>";
$action="filter";
}
// Move single file and its corresponding thumbnail to standard dir
if ($action == "movestandard") {
print "<table class=\"list_table $TEXT_DIRECTION width100\">";
print "<tr><td class=\"messagebox wrap\">";
if (strpos($filename,"../") !== false) {
// don't allow user to access directories outside of media dir
print "<div class=\"error\">".$pgv_lang["illegal_chars"]."</div>";
} else {
if (file_exists(get_media_firewall_path($filename))) {
move_file(get_media_firewall_path($filename), $filename);
}
$thumbnail = thumbnail_file($filename,false);
if (file_exists(get_media_firewall_path($thumbnail))) {
move_file(get_media_firewall_path($thumbnail), $thumbnail);
}
}
print "</td></tr></table>";
$action="filter";
}
// Move entire dir and all subdirs to protected dir
if ($action == "movedirprotected") {
print "<table class=\"list_table $TEXT_DIRECTION width100\">";
print "<tr><td class=\"messagebox wrap\">";
print "<strong>".$pgv_lang["move_protected"]."<br />";
move_files(substr($directory,0,-1), true);
print "</td></tr></table>";
$action="filter";
}
// Move entire dir and all subdirs to standard dir
if ($action == "movedirstandard") {
print "<table class=\"list_table $TEXT_DIRECTION width100\">";
print "<tr><td class=\"messagebox wrap\">";
print "<strong>".$pgv_lang["move_standard"]."<br />";
move_files(substr(get_media_firewall_path($directory),0,-1), false);
print "</td></tr></table>";
$action="filter";
}
if ($action == "setpermsfix") {
print "<table class=\"list_table $TEXT_DIRECTION width100\">";
print "<tr><td class=\"messagebox wrap\">";
print "<strong>".$pgv_lang["setperms_fix"]."<br />";
set_perms(substr($directory,0,-1));
set_perms(substr(get_media_firewall_path($directory),0,-1));
print "</td></tr></table>";
$action="filter";
}
// Upload media items
if ($action == "upload") {
process_uploadMedia_form();
$medialist = get_medialist();
$action = "filter";
}
$allowDelete = true;
$removeObject = true;
// Remove object: same as Delete file, except file isn't deleted
if ($action == "removeobject") {
$action = "deletefile";
$allowDelete = false;
$removeObject = true;
}
// Remove link: same as Delete file, except file isn't deleted
if ($action == "removelinks") {
$action = "deletefile";
$allowDelete = false;
$removeObject = false;
}
// Delete file
if ($action == "deletefile") {
print "<table class=\"list_table $TEXT_DIRECTION width100\">";
print "<tr><td class=\"messagebox wrap\">";
$xrefs = array($xref);
$onegedcom = true;
//-- get all of the XREFS associated with this record
//-- and check if the file is used in multiple gedcoms
$myFile = str_replace($MEDIA_DIRECTORY, "", $filename);
//-- figure out how many levels are in this file
$mlevels = preg_split("~[/\\\]~", $filename);
global $gBitDb;
$rows = $gBitDb->query(
"SELECT * FROM {$TBLPREFIX}media WHERE m_file LIKE ?"
, array("%{$myFile}"));
while ( $row = $rows->fetchRow() ) {
$rlevels = preg_split("~[/\\\]~", $row["m_file"]);
//-- make sure we only delete a file at the same level of directories
//-- see 1825257
$match = true;
$k=0;
$i=count($rlevels)-1;
$j=count($mlevels)-1;
while($i>=0 && $j>=0) {
if ($rlevels[$i] != $mlevels[$j]) {
$match = false;
break;
}
$j--;
$i--;
$k++;
if ($k>$MEDIA_DIRECTORY_LEVELS) break;
}
if ($match) {
if ($row["m_gedfile"]!=PGV_GED_ID) $onegedcom = false;
else $xrefs[] = $row["m_media"];
}
}
$statement->closeCursor();
$xrefs = array_unique($xrefs);
$finalResult = true;
if ($allowDelete) {
if (!$onegedcom) {
print "<span class=\"error\">".$pgv_lang["multiple_gedcoms"]."<br /><br /><b>".$pgv_lang["media_file_not_deleted"]."</b></span><br />";
$finalResult = false;
}
if (isFileExternal($filename)) {
print "<span class=\"error\">".$pgv_lang["external_file"]."<br /><br /><b>".$pgv_lang["media_file_not_deleted"]."</b></span><br />";
$finalResult = false;
}
if ($finalResult) {
// Check if file exists. If so, delete it
$server_filename = get_server_filename($filename);
if (file_exists($server_filename) && $allowDelete) {
if (@unlink($server_filename)) {
print $pgv_lang["media_file_deleted"]."<br />";
AddToChangeLog($server_filename." -- ".$pgv_lang["media_file_deleted"]);
} else {
$finalResult = false;
print "<span class=\"error\">".$pgv_lang["media_file_not_deleted"]."</span><br />";
AddToChangeLog($server_filename." -- ".$pgv_lang["media_file_not_deleted"]);
}
}
// Check if thumbnail exists. If so, delete it.
$thumbnail = str_replace("$MEDIA_DIRECTORY",$MEDIA_DIRECTORY."thumbs/",$filename);
$server_thumbnail = get_server_filename($thumbnail);
if (file_exists($server_thumbnail) && $allowDelete) {
if (@unlink($server_thumbnail)) {
print $pgv_lang["thumbnail_deleted"]."<br />";
AddToChangeLog($server_thumbnail." -- ".$pgv_lang["thumbnail_deleted"]);
} else {
$finalResult = false;
print "<span class=\"error\">".$pgv_lang["thumbnail_not_deleted"]."</span><br />";
AddToChangeLog($server_thumbnail." -- ".$pgv_lang["thumbnail_not_deleted"]);
}
}
}
}
//-- loop through all of the found xrefs and delete any references to them
foreach($xrefs as $ind=>$xref) {
// Remove references to media file from gedcom and database
// Check for XREF
if ($xref != "") {
$links = get_media_relations($xref);
foreach($links as $pid=>$type) {
if (isset($pgv_changes[$pid."_".$GEDCOM])) $gedrec = find_updated_record($pid);
else $gedrec = find_gedcom_record($pid);
$gedrec = remove_subrecord($gedrec, "OBJE", $xref, -1);
if (replace_gedrec($pid, $gedrec, true, $xref)) {
print_text("record_updated");
AddToChangeLog(print_text("record_updated",0,1));
} else {
$finalResult = false;
print "<span class=\"error\">";
print_text("record_not_updated");
print "</span>";
AddToChangeLog(print_text("record_not_updated",0,1));
}
print "<br />";
}
// Record changes to the Media object
//-- why do we accept changes just to delete the item?
include_once('includes/functions_import.php');
accept_changes($xref."_".$GEDCOM);
$objerec = find_gedcom_record($xref);
// Remove media object from gedcom
if (delete_gedrec($xref)) {
print_text("record_removed");
AddToChangeLog(print_text("record_removed",0,1));
} else {
$finalResult = false;
print "<span class=\"error\">";
print_text("record_not_removed");
print "</span>";
AddToChangeLog(print_text("record_not_removed",0,1));
}
print "<br />";
// Add the same file as a new object
if ($finalResult && !$removeObject && $objerec!="") {
$xref = get_new_xref("OBJE");
$objerec = preg_replace("/0 @.*@ OBJE/", "0 @".$xref."@ OBJE", $objerec);
if(append_gedrec($objerec)) {
print_text("record_added");
AddToChangeLog(print_text("record_added",0,1));
} else {
$finalResult = false;
print "<span class=\"error\">";
print_text("record_not_added");
print "</span>";
AddToChangeLog(print_text("record_not_added",0,1));
}
print "<br />";
}
}
}
if ($finalResult) print $pgv_lang["update_successful"];
$action = "filter";
print "</td></tr></table>";
}
/**
* Generate link flyout menu
*
* @param string $mediaid
*/
function print_link_menu($mediaid) {
global $pgv_lang, $TEXT_DIRECTION;
$classSuffix = "";
if ($TEXT_DIRECTION=="rtl") $classSuffix = "_rtl";
// main link displayed on page
$menu = new Menu();
// GEDFact assistant Add Media Links =======================
if (file_exists('modules/GEDFact_assistant/_MEDIA/media_1_ctrl.php')) {
$menu->addLabel($pgv_lang["add_or_remove_links"]);
$menu->addOnclick("return ilinkitem('$mediaid','manage')");
$menu->addClass("", "", "submenu");
$menu->addFlyout("left");
// Do not print submunu
} else {
$menu->addLabel($pgv_lang["set_link"]);
$menu->addOnclick("return ilinkitem('$mediaid','person')");
$submenu = new Menu($pgv_lang["to_person"]);
$submenu->addClass("submenuitem".$classSuffix, "submenuitem_hover".$classSuffix);
$submenu->addOnclick("return ilinkitem('$mediaid','person')");
$menu->addSubMenu($submenu);
$submenu = new Menu($pgv_lang["to_family"]);
$submenu->addClass("submenuitem".$classSuffix, "submenuitem_hover".$classSuffix);
$submenu->addOnclick("return ilinkitem('$mediaid','family')");
$menu->addSubMenu($submenu);
$submenu = new Menu($pgv_lang["to_source"]);
$submenu->addClass("submenuitem".$classSuffix, "submenuitem_hover".$classSuffix);
$submenu->addOnclick("return ilinkitem('$mediaid','source')");
$menu->addSubMenu($submenu);
}
$menu->printMenu();
}
$savedOutput = ob_get_clean();
?>
<form name="managemedia" method="post" onsubmit="return checknames(this);" action="media.php">
<input type="hidden" name="thumbdir" value="<?php print $thumbdir; ?>" />
<input type="hidden" name="level" value="<?php print $level; ?>" />
<input type="hidden" name="all" value="true" />
<input type="hidden" name="subclick" />
<table class="fact_table center width75 <?php print $TEXT_DIRECTION; ?>">
<tr><td class="topbottombar" colspan="4"><?php print_help_link("manage_media_help","qm","manage_media");print $pgv_lang["manage_media"]; ?></td></tr>
<?php
if ($TEXT_DIRECTION=='ltr') $legendAlign = 'align="right"';
else $legendAlign = 'align="left"';
?>
<!-- // NOTE: Row 1 left: Sort sequence -->
<tr><td class="descriptionbox wrap width25" <?php print $legendAlign;?>><?php print_help_link("sortby_help","qm", "sortby"); ?><?php print $pgv_lang["sortby"]; ?></td>
<td class="optionbox wrap"><select name="sortby">
<option value="title" <?php if ($sortby=='title') print "selected=\"selected\"";?>><?php print $factarray["TITL"];?></option>
<option value="file" <?php if ($sortby=='file') print "selected=\"selected\"";?>><?php print $factarray["FILE"];?></option>
</select></td>
<!-- // NOTE: Row 1 right, Upload media files -->
<td class="descriptionbox wrap width25" <?php print $legendAlign;?>><?php print_help_link("upload_media_help","qm","upload_media"); print $pgv_lang["upload_media"]; ?></td>
<td class="optionbox wrap"><?php print "<a href=\"#\" onclick=\"expand_layer('uploadmedia');\">".$pgv_lang["upload_media"]."</a>"; ?></td></tr>
<!-- // NOTE: Row 2 left: Filter options -->
<tr><td class="descriptionbox wrap width25" <?php print $legendAlign;?>><?php print_help_link("simple_filter_help","qm","filter"); print $pgv_lang["filter"];?></td>
<td class="optionbox wrap">
<?php
// Directory pick list
if (empty($directory)) {
if (!empty($_SESSION['upload_folder'])) $directory = $_SESSION['upload_folder'];
else $directory = $MEDIA_DIRECTORY;
}
if ($MEDIA_DIRECTORY_LEVELS > 0) {
$folders = get_media_folders();
print "<span dir=\"ltr\"><select name=\"directory\">\n";
foreach($folders as $f) {
print "<option value=\"".$f."\"";
if ($directory==$f) print " selected=\"selected\"";
print ">{$f}</option>\n";
}
print "</select></span><br />";
} else print "<input name=\"directory\" type=\"hidden\" value=\"ALL\" />";
// Text field for filter
?>
<input type="text" name="filter" value="<?php if($filter) print $filter;?>" /><br /><input type="submit" name="search" value="<?php print $pgv_lang["filter"];?>" onclick="this.form.subclick.value=this.name" /> <input type="submit" name="all" value="<?php print $pgv_lang["display_all"]; ?>" onclick="this.form.subclick.value=this.name" /></td>
<!-- // NOTE: Row 2 right: Add media -->
<td class="descriptionbox wrap width25" <?php print $legendAlign;?>><?php print_help_link("add_media_help", "qm"); ?><?php print $pgv_lang["add_media_lbl"]; ?></td>
<td class="optionbox wrap"><a href="javascript: <?php echo $pgv_lang["add_media_lbl"]; ?>" onclick="window.open('addmedia.php?action=showmediaform&linktoid=new', '_blank', 'top=50,left=50,width=600,height=500,resizable=1,scrollbars=1'); return false;"> <?php echo $pgv_lang["add_media"]; ?></a></td></tr>
<!-- // NOTE: Row 3 left: Show thumbnails -->
<tr><td class="descriptionbox wrap width25" <?php print $legendAlign;?>><?php print_help_link("show_thumb_help","qm", "show_thumbnail"); ?><?php print $pgv_lang["show_thumbnail"]; ?></td>
<td class="optionbox wrap"><input type="checkbox" name="showthumb" value="true" <?php if ($showthumb) print "checked=\"checked\""; ?> onclick="submit();" /></td>
<!-- // NOTE: Row 3 right: Generate missing thumbnails -->
<?php
$tempURL = "media.php?";
if (!empty($filter)) $tempURL .= "filter={$filter}&";
if (!empty($subclick)) $tempURL .= "subclick={$subclick}&";
$tempURL .= "action=thumbnail&sortby={$sortby}&all=yes&level={$level}&directory={$directory}".$thumbget;
?>
<td class="descriptionbox wrap width25" <?php print $legendAlign;?>><?php print_help_link("gen_missing_thumbs_help", "qm"); ?><?php print $pgv_lang["gen_missing_thumbs_lbl"]; ?></td>
<td class="optionbox wrap"><a href="<?php print encode_url($tempURL);?>"><?php print $pgv_lang["gen_missing_thumbs"];?></a></td></tr>
</table>
</form>
<?php
if (!empty($savedOutput)) print $savedOutput; // Print everything we have saved up
if ($action == "filter") {
if (empty($directory)) $directory = $MEDIA_DIRECTORY;
$medialist = get_medialist(true, $directory);
// Get the list of media items
/**
* This is the default action for the page
*
* Displays a list of dirs and files. Displaying only
* thumbnails as the images may be large and we do not want large delays
* while administering the file structure
*
* @name $action->filter
*/
// Show link to previous folder
$levels = explode('/', $directory);
$pdir = '';
for($i=0; $i<count($levels)-2; $i++) $pdir.=$levels[$i].'/';
if ($pdir != '') {
$uplink = "<a href=\"".encode_url("media.php?directory={$pdir}&sortby={$sortby}&level=".($level-1).$thumbget)."\">";
if ($TEXT_DIRECTION=="rtl") $uplink .= getLRM();
$uplink .= $pdir;
if ($TEXT_DIRECTION=="rtl") $uplink .= getLRM();
$uplink .= "</a>\n";
$uplink2 = "<a href=\"".encode_url("media.php?directory={$pdir}&sortby={$sortby}&level=".($level-1).$thumbget)."\"><img class=\"icon\" src=\"".$PGV_IMAGE_DIR."/";
$uplink2 .= $PGV_IMAGES["larrow"]["other"];
$uplink2 .= "\" alt=\"\" /></a>\n";
}
// Start of media directory table
print "<table class=\"list_table width50 $TEXT_DIRECTION\">";
// Tell the user where he is
print "<tr>";
print "<td class=\"topbottombar\" colspan=\"2\">";
print $pgv_lang["current_dir"];
print "<br />";
print PrintReady(substr($directory,0,-1));
print "<br /><br />";
print "<form name=\"blah2\" action=\"media.php\" method=\"post\">";
print "<input type=\"hidden\" name=\"directory\" value=\"".$directory."\" />";
print "<input type=\"hidden\" name=\"level\" value=\"".($level)."\" />";
print "<input type=\"hidden\" name=\"dir\" value=\"".$directory."\" />";
print "<input type=\"hidden\" name=\"action\" value=\"\" />";
print "<input type=\"hidden\" name=\"showthumb\" value=\"{$showthumb}\" />";
print "<input type=\"hidden\" name=\"sortby\" value=\"{$sortby}\" />";
if ($USE_MEDIA_FIREWALL) {
print "<input type=\"submit\" value=\"".$pgv_lang["move_standard"]."\" onclick=\"this.form.action.value='movedirstandard';\" />";
print_help_link("move_mediadirs_help","qm","move_mediadirs");
print "<input type=\"submit\" value=\"".$pgv_lang["move_protected"]."\" onclick=\"this.form.action.value='movedirprotected';\" />";
print "<br />";
}
print_help_link("setperms_help","qm","setperms");
print "<input type=\"submit\" value=\"".$pgv_lang["setperms_fix"]."\" onclick=\"this.form.action.value='setpermsfix';\" />";
print "</form>";
print "</td>";
print "</tr>";
// display the directory list
if (count($dirs) || $pdir != '') {
sort($dirs);
if ($pdir != '') {
print "<tr>";
print "<td class=\"optionbox center width10\">";
print $uplink2;
print "</td>";
print "<td class=\"descriptionbox $TEXT_DIRECTION\">";
print $uplink;
print "</td>";
print "</tr>";
}
foreach ($dirs as $indexval => $dir) {
if ($dir{0}!=".") {
print "<tr>";
print "<td class=\"optionbox center width10\">";
// directory options
print "<form name=\"blah\" action=\"media.php\" method=\"post\">";
print "<input type=\"hidden\" name=\"directory\" value=\"".$directory.$dir."/\" />";
print "<input type=\"hidden\" name=\"parentdir\" value=\"".$directory."\" />";
print "<input type=\"hidden\" name=\"level\" value=\"".($level)."\" />";
print "<input type=\"hidden\" name=\"dir\" value=\"".$dir."\" />";
print "<input type=\"hidden\" name=\"action\" value=\"\" />";
print "<input type=\"hidden\" name=\"showthumb\" value=\"{$showthumb}\" />";
print "<input type=\"hidden\" name=\"sortby\" value=\"{$sortby}\" />";
print "<input type=\"image\" src=\"".$PGV_IMAGE_DIR."/".$PGV_IMAGES["remove"]["other"]."\" alt=\"".$pgv_lang['delete']."\" onclick=\"this.form.action.value='deletedir';return confirm('".$pgv_lang["confirm_folder_delete"]."');\" />";
if ($USE_MEDIA_FIREWALL) {
print "<br /><input type=\"submit\" value=\"".$pgv_lang["move_standard"]."\" onclick=\"this.form.level.value=(this.form.level.value*1)+1;this.form.action.value='movedirstandard';\" />";
print "<br /><input type=\"submit\" value=\"".$pgv_lang["move_protected"]."\" onclick=\"this.form.level.value=(this.form.level.value*1)+1;this.form.action.value='movedirprotected';\" />";
}
print "</form>";
print "</td>";
print "<td class=\"descriptionbox $TEXT_DIRECTION\">";
print "<a href=\"".encode_url("media.php?directory={$directory}{$dir}/&sortby={$sortby}&level=".($level+1).$thumbget)."\">";
if ($TEXT_DIRECTION=="rtl") print getRLM();
print $dir;
if ($TEXT_DIRECTION=="rtl") print getRLM();
print "</a>";
print "</td>";
print "</tr>";
}
}
}
print "</table>";
print "<br />";
// display the images
if (count($medialist) && ($subclick=='search' || $subclick=='all')) {
if (file_exists("modules/lightbox/album.php")) {
// Get Lightbox config variables
if (file_exists("modules/lightbox/lb_config.php")) include('modules/lightbox/lb_config.php');
else include('modules/lightbox/lb_defaultconfig.php');
include('modules/lightbox/functions/lb_call_js.php');
}
// Sort the media list according to the user's wishes
$sortedMediaList = $medialist; // Default sort (by title) has already been done
if ($sortby=='file') uasort($sortedMediaList, 'filesort');
// Set up for two passes, the first showing URLs, the second normal files
print "\n\t<table class=\"list_table width100\">";
if ($directory==$MEDIA_DIRECTORY) {
$httpFilter = "http";
$passStart = 1;
} else {
$httpFilter = "";
$passStart = 2;
}
for ($passCount=$passStart; $passCount<3; $passCount++) {
$printDone = false;