forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addmedia.php
752 lines (695 loc) · 27.2 KB
/
addmedia.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
<?php
// Add media to gedcom file
// Edit an existing media item
//
// webtrees: Web based Family History software
// Copyright (C) 2013 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2009 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
define('WT_SCRIPT_NAME', 'addmedia.php');
require './includes/session.php';
require_once WT_ROOT.'includes/functions/functions_print_lists.php';
require WT_ROOT.'includes/functions/functions_edit.php';
$pid = WT_Filter::get('pid', WT_REGEX_XREF, WT_Filter::post('pid', WT_REGEX_XREF)); // edit this media object
$linktoid = WT_Filter::get('linktoid', WT_REGEX_XREF, WT_Filter::post('linktoid', WT_REGEX_XREF)); // create a new media object, linked to this record
$action = WT_Filter::get('action', null, WT_Filter::post('action'));
$filename = WT_Filter::get('filename', null, WT_Filter::post('filename'));
$text = WT_Filter::postArray('text');
$tag = WT_Filter::postArray('tag', WT_REGEX_TAG);
$islink = WT_Filter::postArray('islink');
$glevels = WT_Filter::postArray('glevels', '[0-9]');
$folder = WT_Filter::post('folder');
$update_CHAN = !WT_Filter::postBool('preserve_last_changed');
$controller = new WT_Controller_Simple();
$controller
->addExternalJavascript(WT_STATIC_URL.'js/autocomplete.js')
->requireMemberLogin()
->addInlineJavascript('
// Shared Notes =========================
function findnote(field) {
pastefield = field;
findwin = window.open("find.php?type=note", "_blank", find_window_specs);
return false;
}
var pastefield;
function openerpasteid(id) {
window.opener.paste_id(id);
window.close();
}
function paste_id(value) {
pastefield.value = value;
}
function paste_char(value) {
pastefield.value += value;
}
');
$disp = true;
$media = WT_Media::getInstance($pid);
if ($media) {
$disp = $media->canShow();
}
if ($action=='update' || $action=='create') {
if (!isset($linktoid) || $linktoid=='new') $linktoid='';
if (!empty($linktoid)) {
$disp = WT_GedcomRecord::getInstance($linktoid)->canShow();
}
}
if (!WT_USER_CAN_EDIT || !$disp) {
$controller
->pageHeader()
->addInlineJavascript('closePopupAndReloadParent();');
exit;
}
// TODO - there is a lot of common code in the create and update cases....
// .... and also in the admin_media_upload.php script
switch ($action) {
case 'create': // Save the information from the “showcreateform” action
$controller->setPageTitle(WT_I18N::translate('Create a new media object'));
// Validate the media folder
$folderName = str_replace('\\', '/', $folder);
$folderName = trim($folderName, '/');
if ($folderName == '.') {
$folderName = '';
}
if ($folderName) {
$folderName .= '/';
// Not allowed to use “../”
if (strpos('/' . $folderName, '/../')!==false) {
WT_FlashMessages::addMessage('Folder names are not allowed to include “../”');
break;
}
}
// Make sure the media folder exists
if (!is_dir(WT_DATA_DIR . $MEDIA_DIRECTORY)) {
if (@mkdir(WT_DATA_DIR . $MEDIA_DIRECTORY, WT_PERM_EXE, true)) {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s was created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . '</span>'));
} else {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s does not exist, and it could not be created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . '</span>'));
break;
}
}
// Managers can create new media paths (subfolders). Users must use existing folders.
if ($folderName && !is_dir(WT_DATA_DIR . $MEDIA_DIRECTORY . $folderName)) {
if (WT_USER_GEDCOM_ADMIN) {
if (@mkdir(WT_DATA_DIR . $MEDIA_DIRECTORY . $folderName, WT_PERM_EXE, true)) {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s was created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . $folderName . '</span>'));
} else {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s does not exist, and it could not be created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . $folderName . '</span>'));
break;
}
} else {
// Regular users should not have seen this option - so no need for an error message.
break;
}
}
// The media folder exists. Now create a thumbnail folder to match it.
if (!is_dir(WT_DATA_DIR . $MEDIA_DIRECTORY . 'thumbs/' . $folderName)) {
if (!@mkdir(WT_DATA_DIR . $MEDIA_DIRECTORY . 'thumbs/' . $folderName, WT_PERM_EXE, true)) {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s does not exist, and it could not be created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . 'thumbs/' . $folderName . '</span>'));
break;
}
}
// A thumbnail file with no main image?
if (!empty($_FILES['thumbnail']['name']) && empty($_FILES['mediafile']['name'])) {
// Assume the user used the wrong field, and treat this as a main image
$_FILES['mediafile'] = $_FILES['thumbnail'];
unset($_FILES['thumbnail']);
}
// Thumbnails must be images.
if (!empty($_FILES['thumbnail']['name']) && !preg_match('/^image/', $_FILES['thumbnail']['type'])) {
WT_FlashMessages::addMessage(WT_I18N::translate('Thumbnails must be images.'));
break;
}
// User-specified filename?
if ($tag[0]=='FILE' && $text[0]) {
$filename = $text[0];
}
// Use the name of the uploaded file?
// If no filename specified, use the name of the uploaded file?
if (!$filename && !empty($_FILES['mediafile']['name'])) {
$filename = $_FILES['mediafile']['name'];
}
// Validate the media path and filename
if (preg_match('/^https?:\/\//i', $text[0], $match)) {
// External media needs no further validation
$fileName = $filename;
$folderName = '';
unset($_FILES['mediafile'], $_FILES['thumbnail']);
} elseif (preg_match('/([\/\\\\<>])/', $filename, $match)) {
// Local media files cannot contain certain special characters
WT_FlashMessages::addMessage(WT_I18N::translate('Filenames are not allowed to contain the character “%s”.', $match[1]));
$filename = '';
break;
} elseif (preg_match('/(\.(php|pl|cgi|bash|sh|bat|exe|com|htm|html|shtml))$/i', $filename, $match)) {
// Do not allow obvious script files.
WT_FlashMessages::addMessage(WT_I18N::translate('Filenames are not allowed to have the extension “%s”.', $match[1]));
$filename = '';
break;
} elseif (!$filename) {
WT_FlashMessages::addMessage(WT_I18N::translate('No media file was provided.'));
break;
} else {
$fileName = $filename;
}
// Now copy the file to the correct location.
if (!empty($_FILES['mediafile']['name'])) {
$serverFileName = WT_DATA_DIR . $MEDIA_DIRECTORY . $folderName . $fileName;
if (file_exists($serverFileName)) {
WT_FlashMessages::addMessage(WT_I18N::translate('The file %s already exists. Use another filename.', $folderName . $fileName));
$filename = '';
break;
}
if (move_uploaded_file($_FILES['mediafile']['tmp_name'], $serverFileName)) {
chmod($serverFileName, WT_PERM_FILE);
AddToLog('Media file ' . $serverFileName . ' uploaded', 'media');
} else {
WT_FlashMessages::addMessage(
WT_I18N::translate('There was an error uploading your file.') .
'<br>' .
file_upload_error_text($_FILES['mediafile']['error'])
);
$filename = '';
break;
}
// Now copy the (optional) thumbnail
if (!empty($_FILES['thumbnail']['name']) && preg_match('/^image\/(png|gif|jpeg)/', $_FILES['thumbnail']['type'], $match)) {
// Thumbnails have either
// (a) the same filename as the main image
// (b) the same filename as the main image - but with a .png extension
if ($match[1]=='png' && !preg_match('/\.(png)$/i', $fileName)) {
$thumbFile = preg_replace('/\.[a-z0-9]{3,5}$/', '.png', $fileName);
} else {
$thumbFile = $fileName;
}
$serverFileName = WT_DATA_DIR . $MEDIA_DIRECTORY . 'thumbs/' . $folderName . $thumbFile;
if (move_uploaded_file($_FILES['thumbnail']['tmp_name'], $serverFileName)) {
chmod($serverFileName, WT_PERM_FILE);
AddToLog('Thumbnail file ' . $serverFileName . ' uploaded', 'media');
}
}
}
$controller->pageHeader();
// Build the gedcom record
$newged = "0 @new@ OBJE";
if ($tag[0]=='FILE') {
// The admin has an edit field to change the file name
$text[0] = $folderName . $fileName;
} else {
// Users keep the original filename
$newged .= "\n1 FILE " . $folderName . $fileName;
}
$newged = handle_updates($newged);
$media = WT_GedcomRecord::createRecord($newged, WT_GED_ID);
if ($linktoid) {
$record = WT_GedcomRecord::getInstance($linktoid);
$record->createFact('1 OBJE @' . $media->getXref() . '@', true);
AddToLog('Media ID '.$media->getXref()." successfully added to $linktoid.", 'edit');
$controller->addInlineJavascript('closePopupAndReloadParent();');
} else {
AddToLog('Media ID '.$media->getXref().' successfully added.', 'edit');
$controller->addInlineJavascript('openerpasteid("' . $media->getXref() . '");');
}
echo '<button onclick="closePopupAndReloadParent();">', WT_I18N::translate('close'), '</button>';
exit;
case 'update': // Save the information from the “editmedia” action
$controller->setPageTitle(WT_I18N::translate('Edit media object'));
// Validate the media folder
$folderName = str_replace('\\', '/', $folder);
$folderName = trim($folderName, '/');
if ($folderName == '.') {
$folderName = '';
}
if ($folderName) {
$folderName .= '/';
// Not allowed to use “../”
if (strpos('/' . $folderName, '/../')!==false) {
WT_FlashMessages::addMessage('Folder names are not allowed to include “../”');
break;
}
}
// Make sure the media folder exists
if (!is_dir(WT_DATA_DIR . $MEDIA_DIRECTORY)) {
if (@mkdir(WT_DATA_DIR . $MEDIA_DIRECTORY, WT_PERM_EXE, true)) {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s was created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . '</span>'));
} else {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s does not exist, and it could not be created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . '</span>'));
break;
}
}
// Managers can create new media paths (subfolders). Users must use existing folders.
if ($folderName && !is_dir(WT_DATA_DIR . $MEDIA_DIRECTORY . $folderName)) {
if (WT_USER_GEDCOM_ADMIN) {
if (@mkdir(WT_DATA_DIR . $MEDIA_DIRECTORY . $folderName, WT_PERM_EXE, true)) {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s was created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . $folderName . '</span>'));
} else {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s does not exist, and it could not be created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . $folderName . '</span>'));
break;
}
} else {
// Regular users should not have seen this option - so no need for an error message.
break;
}
}
// The media folder exists. Now create a thumbnail folder to match it.
if (!is_dir(WT_DATA_DIR . $MEDIA_DIRECTORY . 'thumbs/' . $folderName)) {
if (!@mkdir(WT_DATA_DIR . $MEDIA_DIRECTORY . 'thumbs/' . $folderName, WT_PERM_EXE, true)) {
WT_FlashMessages::addMessage(WT_I18N::translate('The folder %s does not exist, and it could not be created.', '<span class="filename">' . WT_DATA_DIR . $MEDIA_DIRECTORY . 'thumbs/' . $folderName . '</span>'));
break;
}
}
// Validate the media path and filename
if (preg_match('/^https?:\/\//i', $filename, $match)) {
// External media needs no further validation
$fileName = $filename;
$folderName = '';
unset($_FILES['mediafile'], $_FILES['thumbnail']);
} elseif (preg_match('/([\/\\\\<>])/', $filename, $match)) {
// Local media files cannot contain certain special characters
WT_FlashMessages::addMessage(WT_I18N::translate('Filenames are not allowed to contain the character “%s”.', $match[1]));
$filename = '';
break;
} elseif (preg_match('/(\.(php|pl|cgi|bash|sh|bat|exe|com|htm|html|shtml))$/i', $filename, $match)) {
// Do not allow obvious script files.
WT_FlashMessages::addMessage(WT_I18N::translate('Filenames are not allowed to have the extension “%s”.', $match[1]));
$filename = '';
break;
} elseif (!$filename) {
WT_FlashMessages::addMessage(WT_I18N::translate('No media file was provided.'));
break;
} else {
$fileName = $filename;
}
$oldFilename = $media->getFilename();
$newFilename = $folderName . $fileName;
//-- check if the file is used in more than one gedcom
//-- do not allow it to be moved or renamed if it is
$multi_gedcom=!$media->isExternal() && is_media_used_in_other_gedcom($media->getFilename(), WT_GED_ID);
if ($multi_gedcom) {
WT_FlashMessages::addMessage(WT_I18N::translate('This file is linked to another genealogical database on this server. It cannot be deleted, moved, or renamed until these links have been removed.'));
break;
}
// Cannot rename local to external or vice-versa
if (isFileExternal($oldFilename) != isFileExternal($filename)) {
WT_FlashMessages::addMessage(WT_I18N::translate('Media file %1$s could not be renamed to %2$s.', '<span class="filename">'.$oldFilename.'</span>', '<span class="filename">'.$newFilename.'</span>'));
break;
}
$messages = false;
// Move files on disk (if we can) to reflect the change to the GEDCOM data
if (!$media->isExternal()) {
$oldServerFile = $media->getServerFilename('main');
$oldServerThumb = $media->getServerFilename('thumb');
$newmedia = new WT_Media("xxx", "0 @xxx@ OBJE\n1 FILE " . $newFilename, null, WT_GED_ID);
$newServerFile = $newmedia->getServerFilename('main');
$newServerThumb = $newmedia->getServerFilename('thumb');
// We could be either renaming an existing file, or updating a record (with no valid file) to point to a new file
if ($oldServerFile != $newServerFile) {
if (!file_exists($newServerFile) || @md5_file($oldServerFile)==md5_file($newServerFile)) {
if (@rename($oldServerFile, $newServerFile)) {
WT_FlashMessages::addMessage(WT_I18N::translate('Media file %1$s successfully renamed to %2$s.', '<span class="filename">'.$oldFilename.'</span>', '<span class="filename">'.$newFilename.'</span>'));
} else {
WT_FlashMessages::addMessage(WT_I18N::translate('Media file %1$s could not be renamed to %2$s.', '<span class="filename">'.$oldFilename.'</span>', '<span class="filename">'.$newFilename.'</span>'));
}
$messages = true;
}
if (!file_exists($newServerFile)) {
WT_FlashMessages::addMessage(WT_I18N::translate('Media file %s does not exist.', '<span class="filename">'.$newFilename.'</span>'));
$messages = true;
}
}
if ($oldServerThumb != $newServerThumb) {
if (!file_exists($newServerThumb) || @md5_file($oldServerFile)==md5_file($newServerThumb)) {
if (@rename($oldServerThumb, $newServerThumb)) {
WT_FlashMessages::addMessage(WT_I18N::translate('Thumbnail file %1$s successfully renamed to %2$s.', '<span class="filename">'.$oldFilename.'</span>', '<span class="filename">'.$newFilename.'</span>'));
} else {
WT_FlashMessages::addMessage(WT_I18N::translate('Thumbnail file %1$s could not be renamed to %2$s.', '<span class="filename">'.$oldFilename.'</span>', '<span class="filename">'.$newFilename.'</span>'));
}
$messages = true;
}
if (!file_exists($newServerThumb)) {
WT_FlashMessages::addMessage(WT_I18N::translate('Thumbnail file %s does not exist.', '<span class="filename">'.$newFilename.'</span>'));
$messages = true;
}
}
}
// Insert the 1 FILE xxx record into the arrays used by function handle_updates()
$glevels = array_merge(array('1'), $glevels);
$tag = array_merge(array('FILE'), $tag);
$islink = array_merge(array(0), $islink);
$text = array_merge(array($newFilename), $text);
$record = WT_GedcomRecord::getInstance($pid);
$newrec = "0 @$pid@ OBJE\n";
$newrec = handle_updates($newrec);
$record->updateRecord($newrec, $update_CHAN);
if ($pid && $linktoid) {
$record = WT_GedcomRecord::getInstance($linktoid);
$record->createFact('1 OBJE @' . $pid . '@', true);
AddToLog('Media ID '.$pid." successfully added to $linktoid.", 'edit');
}
$controller->pageHeader();
if ($messages) {
echo '<button onclick="closePopupAndReloadParent();">', WT_I18N::translate('close'), '</button>';
} else {
$controller->addInlineJavascript('closePopupAndReloadParent();');
}
exit;
case 'showmediaform':
$controller->setPageTitle(WT_I18N::translate('Create a new media object'));
$action='create';
break;
case 'editmedia':
$controller->setPageTitle(WT_I18N::translate('Edit media object'));
$action='update';
break;
default:
throw new Exception('Bad $action (' . $action . ') in addmedia.php');
}
$controller->pageHeader();
echo '<div id="addmedia-page">'; //container for media edit pop-up
echo '<form method="post" name="newmedia" action="addmedia.php" enctype="multipart/form-data">';
echo '<input type="hidden" name="action" value="', $action, '">';
echo '<input type="hidden" name="ged" value="', WT_GEDCOM, '">';
echo '<input type="hidden" name="pid" value="', $pid, '">';
if (!empty($linktoid)) {
echo '<input type="hidden" name="linktoid" value="', $linktoid, '">';
}
echo '<table class="facts_table">';
echo '<tr><td class="topbottombar" colspan="2">';
echo $controller->getPageTitle(), help_link('OBJE');
echo '</td></tr>';
if ($linktoid == 'new' || ($linktoid == '' && $action != 'update')) {
echo '<tr><td class="descriptionbox wrap width25">';
echo WT_I18N::translate('Enter an individual, family, or source ID');
echo '</td><td class="optionbox wrap"><input type="text" name="gid" id="gid" size="6" value="">';
echo ' ', print_findindi_link('gid');
echo ' ', print_findfamily_link('gid');
echo ' ', print_findsource_link('gid');
echo '<p class="sub">', WT_I18N::translate('Enter or search for the ID of the individual, family, or source to which this media item should be linked.'), '</p></td></tr>';
}
$tmp = WT_Media::getInstance($pid);
if ($tmp) {
$gedrec = $tmp->getGedcom();
} else {
$gedrec = '';
}
// 0 OBJE
// 1 FILE
if ($gedrec == '') {
$gedfile = 'FILE';
if ($filename != '')
$gedfile = 'FILE ' . $filename;
} else {
$gedfile = get_first_tag(1, 'FILE', $gedrec);
if (empty($gedfile))
$gedfile = 'FILE';
}
if ($gedfile != 'FILE') {
$gedfile = 'FILE ' . substr($gedfile, 5);
}
if ($gedfile == 'FILE') {
// Box for user to choose to upload file from local computer
echo '<tr><td class="descriptionbox wrap width25">';
echo WT_I18N::translate('Media file to upload') . '</td><td class="optionbox wrap"><input type="file" name="mediafile" onchange="updateFormat(this.value);" size="40"></td></tr>';
// Check for thumbnail generation support
if (WT_USER_GEDCOM_ADMIN) {
echo '<tr><td class="descriptionbox wrap width25">';
echo WT_I18N::translate('Thumbnail to upload') . help_link('upload_thumbnail_file').'</td><td class="optionbox wrap"><input type="file" name="thumbnail" size="40"></td></tr>';
}
}
// Filename on server
$isExternal = isFileExternal($gedfile);
if ($gedfile == 'FILE') {
if (WT_USER_GEDCOM_ADMIN) {
add_simple_tag(
"1 $gedfile",
'',
WT_I18N::translate('File name on server'),
WT_I18N::translate('Do not change to keep original file name.') . '<br>' .WT_I18N::translate('You may enter a URL, beginning with «http://».')
);
}
$fileName = '';
$folder = '';
} else {
if ($isExternal) {
$fileName = substr($gedfile, 5);
$folder = '';
} else {
$tmp=substr($gedfile, 5);
$fileName = basename($tmp);
$folder = dirname($tmp);
if ($folder=='.') {
$folder='';
}
}
echo '<tr>';
echo '<td class="descriptionbox wrap width25">';
echo WT_I18N::translate('File name on server'), help_link('upload_server_file');
echo '</td>';
echo '<td class="optionbox wrap wrap">';
if (WT_USER_GEDCOM_ADMIN) {
echo '<input name="filename" type="text" value="' . WT_Filter::escapeHtml($fileName) . '" size="40"';
if ($isExternal)
echo '>';
else
echo '><p class="sub">' . WT_I18N::translate('Do not change to keep original file name.') . '</p>';
} else {
echo $fileName;
echo '<input name="filename" type="hidden" value="' . WT_Filter::escapeHtml($fileName) . '" size="40">';
}
echo '</td>';
echo '</tr>';
}
// Box for user to choose the folder to store the image
if (!$isExternal) {
echo '<tr><td class="descriptionbox wrap width25">';
echo WT_I18N::translate('Folder name on server'), help_link('upload_server_folder'), '</td><td class="optionbox wrap">';
//-- don’t let regular users change the location of media items
if ($action!='update' || WT_USER_GEDCOM_ADMIN) {
$mediaFolders = WT_Query_Media::folderList();
echo '<span dir="ltr"><select name="folder_list" onchange="document.newmedia.folder.value=this.options[this.selectedIndex].value;">';
echo '<option';
if ($folder == '') echo ' selected="selected"';
echo ' value=""> ', WT_I18N::translate('Choose: '), ' </option>';
if (WT_USER_IS_ADMIN) {
echo '<option value="other" disabled>', WT_I18N::translate('Other folder… please type in'), "</option>";
}
foreach ($mediaFolders as $f) {
echo '<option value="', $f, '"';
if ($folder == $f)
echo ' selected="selected"';
echo '>', $f, "</option>";
}
echo '</select></span>';
} else {
echo $folder;
}
if (WT_USER_IS_ADMIN) {
echo '<br><span dir="ltr"><input type="text" name="folder" size="40" value="', $folder, '"></span>';
if ($gedfile == 'FILE') {
echo '<p class="sub">', WT_I18N::translate('This entry is ignored if you have entered a URL into the file name field.'), '</p>';
}
} else {
echo '<input name="folder" type="hidden" value="', WT_Filter::escapeHtml($folder), '">';
}
echo '</td></tr>';
} else {
echo '<input name="folder" type="hidden" value="">';
}
// 2 FORM
if ($gedrec == '')
$gedform = 'FORM';
else {
$gedform = get_first_tag(2, 'FORM', $gedrec);
if (empty($gedform))
$gedform = 'FORM';
}
$formid = add_simple_tag("2 $gedform");
// automatically set the format field from the filename
$controller->addInlineJavascript('
function updateFormat(filename) {
var extsearch=/\.([a-zA-Z]{3,4})$/;
if (extsearch.exec(filename)) {
ext = RegExp.$1.toLowerCase();
if (ext=="jpg") ext="jpeg";
if (ext=="tif") ext="tiff";
} else {
ext = "";
}
formfield = document.getElementById("' . $formid . '");
formfield.value = ext;
}
');
// 3 TYPE
if ($gedrec == '')
$gedtype = 'TYPE photo'; // default to ‘Photo’ unless told otherwise
else {
$temp = str_replace("\r\n", "\n", $gedrec) . "\n";
$types = preg_match("/3 TYPE(.*)\n/", $temp, $matches);
if (empty($matches[0]))
$gedtype = 'TYPE photo'; // default to ‘Photo’ unless told otherwise
else
$gedtype = 'TYPE ' . trim($matches[1]);
}
add_simple_tag("3 $gedtype");
// 2 TITL
if ($gedrec == '') {
$gedtitl = 'TITL';
} else {
$gedtitl = get_first_tag(2, 'TITL', $gedrec);
if (empty($gedtitl)) {
$gedtitl = get_first_tag(1, 'TITL', $gedrec);
}
if (empty($gedtitl)) {
$gedtitl = 'TITL';
}
}
add_simple_tag("2 $gedtitl");
if (strstr($ADVANCED_NAME_FACTS, '_HEB')!==false) {
// 3 _HEB
if ($gedrec == '') {
$gedtitl = '_HEB';
} else {
$gedtitl = get_first_tag(3, '_HEB', $gedrec);
if (empty($gedtitl)) {
$gedtitl = '_HEB';
}
}
add_simple_tag("3 $gedtitl");
}
if (strstr($ADVANCED_NAME_FACTS, 'ROMN')!==false) {
// 3 ROMN
if ($gedrec == '') {
$gedtitl = 'ROMN';
} else {
$gedtitl = get_first_tag(3, 'ROMN', $gedrec);
if (empty($gedtitl)) {
$gedtitl = 'ROMN';
}
}
add_simple_tag("3 $gedtitl");
}
// 2 _PRIM
if ($gedrec == '') {
$gedprim = '_PRIM';
} else {
$gedprim = get_first_tag(1, '_PRIM', $gedrec);
if (empty($gedprim)) {
$gedprim = '_PRIM';
}
}
add_simple_tag("1 $gedprim");
//-- print out editing fields for any other data in the media record
$sourceSOUR = '';
if (!empty($gedrec)) {
preg_match_all('/\n(1 (?!FILE|FORM|TYPE|TITL|_PRIM|_THUM|CHAN|DATA).*(\n[2-9] .*)*)/', $gedrec, $matches);
foreach ($matches[1] as $subrec) {
$pieces = explode("\n", $subrec);
foreach ($pieces as $piece) {
$ft = preg_match("/(\d) (\w+)(.*)/", $piece, $match);
if ($ft == 0) continue;
$subLevel = $match[1];
$fact = trim($match[2]);
$event = trim($match[3]);
if ($fact=='NOTE' || $fact=='TEXT') {
$event .= get_cont(($subLevel +1), $subrec);
}
if ($sourceSOUR!='' && $subLevel<=$sourceLevel) {
// Get rid of all saved Source data
add_simple_tag($sourceLevel .' SOUR '. $sourceSOUR);
add_simple_tag(($sourceLevel+1) .' PAGE '. $sourcePAGE);
add_simple_tag(($sourceLevel+2) .' TEXT '. $sourceTEXT);
add_simple_tag(($sourceLevel+2) .' DATE '. $sourceDATE, '', WT_Gedcom_Tag::getLabel('DATA:DATE'));
add_simple_tag(($sourceLevel+1) .' QUAY '. $sourceQUAY);
$sourceSOUR = '';
}
if ($fact=='SOUR') {
$sourceLevel = $subLevel;
$sourceSOUR = $event;
$sourcePAGE = '';
$sourceTEXT = '';
$sourceDATE = '';
$sourceQUAY = '';
continue;
}
// Save all incoming data about this source reference
if ($sourceSOUR!='') {
if ($fact=='PAGE') {
$sourcePAGE = $event;
continue;
}
if ($fact=='TEXT') {
$sourceTEXT = $event;
continue;
}
if ($fact=='DATE') {
$sourceDATE = $event;
continue;
}
if ($fact=='QUAY') {
$sourceQUAY = $event;
continue;
}
continue;
}
// Output anything that isn’t part of a source reference
if (!empty($fact) && $fact != 'CONC' && $fact != 'CONT' && $fact != 'DATA') {
add_simple_tag($subLevel .' '. $fact .' '. $event);
}
}
}
if ($sourceSOUR!='') {
// Get rid of all saved Source data
add_simple_tag($sourceLevel .' SOUR '. $sourceSOUR);
add_simple_tag(($sourceLevel+1) .' PAGE '. $sourcePAGE);
add_simple_tag(($sourceLevel+2) .' TEXT '. $sourceTEXT);
add_simple_tag(($sourceLevel+2) .' DATE '. $sourceDATE, '', WT_Gedcom_Tag::getLabel('DATA:DATE'));
add_simple_tag(($sourceLevel+1) .' QUAY '. $sourceQUAY);
}
}
if (WT_USER_IS_ADMIN) {
echo "<tr><td class=\"descriptionbox wrap width25\">";
echo WT_Gedcom_Tag::getLabel('CHAN'), "</td><td class=\"optionbox wrap\">";
if ($NO_UPDATE_CHAN) {
echo "<input type=\"checkbox\" checked=\"checked\" name=\"preserve_last_changed\">";
} else {
echo "<input type=\"checkbox\" name=\"preserve_last_changed\">";
}
echo WT_I18N::translate('Do not update the “last change” record'), help_link('no_update_CHAN'), '<br>';
echo '</td></tr>';
}
echo '</table>';
print_add_layer('SOUR', 1);
print_add_layer('NOTE', 1);
print_add_layer('SHARED_NOTE', 1);
print_add_layer('RESN', 1);
?>
<p id="save-cancel">
<input type="submit" class="save" value="<?php echo WT_I18N::translate('save'); ?>">
<input type="button" class="cancel" value="<?php echo WT_I18N::translate('close'); ?>" onclick="window.close();">
</p>
</form>
</div>
<?php
// Legacy/deprecated functions. TODO: refactor these away....
function get_first_tag($level, $tag, $gedrec, $num=1) {
$temp = get_sub_record($level, $level." ".$tag, $gedrec, $num)."\n";
$length = strpos($temp, "\n");
if ($length===false) {
$length = strlen($temp);
}
return substr($temp, 2, $length-2);
}