Passed
Pull Request — main (#4945)
by
unknown
15:51
created

ReportParserGenerate::getPersonNameStartHandler()   F

Complexity

Conditions 25
Paths 756

Size

Total Lines 78
Code Lines 59

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 25
eloc 59
c 2
b 0
f 0
nc 756
nop 1
dl 0
loc 78
rs 0.3388

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2023 webtrees development team
6
 * This program is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
 * GNU General Public License for more details.
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16
 */
17
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Report;
21
22
use DomainException;
23
use Fisharebest\Webtrees\Auth;
24
use Fisharebest\Webtrees\Date;
25
use Fisharebest\Webtrees\DB;
26
use Fisharebest\Webtrees\Elements\UnknownElement;
27
use Fisharebest\Webtrees\Factories\MarkdownFactory;
28
use Fisharebest\Webtrees\Family;
29
use Fisharebest\Webtrees\Gedcom;
30
use Fisharebest\Webtrees\GedcomRecord;
31
use Fisharebest\Webtrees\I18N;
32
use Fisharebest\Webtrees\Individual;
33
use Fisharebest\Webtrees\Log;
34
use Fisharebest\Webtrees\MediaFile;
35
use Fisharebest\Webtrees\Note;
36
use Fisharebest\Webtrees\Place;
37
use Fisharebest\Webtrees\Registry;
38
use Fisharebest\Webtrees\Tree;
39
use Illuminate\Database\Query\Builder;
40
use Illuminate\Database\Query\Expression;
41
use Illuminate\Database\Query\JoinClause;
42
use Illuminate\Support\Str;
43
use LogicException;
44
use Symfony\Component\Cache\Adapter\NullAdapter;
45
use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
46
use XMLParser;
47
48
use function addcslashes;
49
use function addslashes;
50
use function array_pop;
51
use function array_shift;
52
use function assert;
53
use function count;
54
use function end;
55
use function explode;
56
use function file;
57
use function file_exists;
58
use function getimagesize;
59
use function imagecreatefromstring;
60
use function imagesx;
61
use function imagesy;
62
use function in_array;
63
use function ltrim;
64
use function method_exists;
65
use function preg_match;
66
use function preg_match_all;
67
use function preg_replace;
68
use function preg_replace_callback;
69
use function preg_split;
70
use function reset;
71
use function round;
72
use function sprintf;
73
use function str_contains;
74
use function str_ends_with;
75
use function str_replace;
76
use function str_starts_with;
77
use function strip_tags;
78
use function strlen;
79
use function strpos;
80
use function strtoupper;
81
use function substr;
82
use function substr_replace;
83
use function trim;
84
use function uasort;
85
use function xml_error_string;
86
use function xml_get_current_line_number;
87
use function xml_get_error_code;
88
use function xml_parse;
89
use function xml_parser_create;
90
use function xml_parser_free;
91
use function xml_parser_set_option;
92
use function xml_set_character_data_handler;
93
use function xml_set_element_handler;
94
95
use const PREG_OFFSET_CAPTURE;
96
use const PREG_SET_ORDER;
97
use const XML_OPTION_CASE_FOLDING;
98
99
/**
100
 * Class ReportParserGenerate - parse a report.xml file and generate the report.
101
 */
102
class ReportParserGenerate extends ReportParserBase
103
{
104
    /** Are we collecting data from <Footnote> elements */
105
    private bool $process_footnote = true;
106
107
    /** Are we currently outputting data? */
108
    private bool $print_data = false;
109
110
    /** @var array<int,bool> Push-down stack of $print_data */
111
    private array $print_data_stack = [];
112
113
    /** Are we processing GEDCOM data */
114
    private int $process_gedcoms = 0;
115
116
    /** Are we processing conditionals */
117
    private int $process_ifs = 0;
118
119
    /** Are we processing repeats */
120
    private int $process_repeats = 0;
121
122
    /** Quantity of data to repeat during loops */
123
    private int $repeat_bytes = 0;
124
125
    /** @var array<string> Repeated data when iterating over loops */
126
    private array $repeats = [];
127
128
    /** @var array<int,array<int,array<string>|int>> Nested repeating data */
129
    private array $repeats_stack = [];
130
131
    /** @var array<AbstractRenderer> Nested repeating data */
132
    private array $wt_report_stack = [];
133
134
    // Nested repeating data
135
    private XMLParser $parser;
136
137
    /** @var XMLParser[] (resource[] before PHP 8.0) Nested repeating data */
138
    private array $parser_stack = [];
139
140
    /** The current GEDCOM record */
141
    private string $gedrec = '';
142
143
    /** @var array<int,array<int,string>> Nested GEDCOM records */
144
    private array $gedrec_stack = [];
145
146
    /** @var ReportBaseElement The currently processed element */
147
    private $current_element;
148
149
    /** @var ReportBaseElement The currently processed element */
150
    private $footnote_element;
151
152
    /** The GEDCOM fact currently being processed */
153
    private string $fact = '';
154
155
    /** The GEDCOM value currently being processed */
156
    private string $desc = '';
157
158
    /** The GEDCOM type currently being processed */
159
    private string $type = '';
160
161
    /** The current generational level */
162
    private int $generation = 1;
163
164
    /** @var array<static|GedcomRecord> Source data for processing lists */
165
    private array $list = [];
166
167
    /** Number of items in lists */
168
    private int $list_total = 0;
169
170
    /** Number of items filtered from lists */
171
    private int $list_private = 0;
172
173
    /** @var string The filename of the XML report */
174
    protected $report;
175
176
    /** @var AbstractRenderer A factory for creating report elements */
177
    private $report_root;
178
179
    /** @var AbstractRenderer Nested report elements */
180
    private $wt_report;
181
182
    /** @var array<array<string>> Variables defined in the report at run-time */
183
    private array $vars;
184
185
    /** @var array<string> Family relationship */
186
    private array $mfrelation = [];
187
188
    private Tree $tree;
189
190
    /**
191
     * Create a parser for a report
192
     *
193
     * @param string               $report The XML filename
194
     * @param AbstractRenderer     $report_root
195
     * @param array<array<string>> $vars
196
     * @param Tree                 $tree
197
     */
198
    public function __construct(string $report, AbstractRenderer $report_root, array $vars, Tree $tree)
199
    {
200
        $this->report          = $report;
201
        $this->report_root     = $report_root;
202
        $this->wt_report       = $report_root;
203
        $this->current_element = new ReportBaseElement();
204
        $this->vars            = $vars;
205
        $this->tree            = $tree;
206
207
        parent::__construct($report);
208
    }
209
210
    /**
211
     * get a gedcom subrecord
212
     *
213
     * searches a gedcom record and returns a subrecord of it. A subrecord is defined starting at a
214
     * line with level N and all subsequent lines greater than N until the next N level is reached.
215
     * For example, the following is a BIRT subrecord:
216
     * <code>1 BIRT
217
     * 2 DATE 1 JAN 1900
218
     * 2 PLAC Phoenix, Maricopa, Arizona</code>
219
     * The following example is the DATE subrecord of the above BIRT subrecord:
220
     * <code>2 DATE 1 JAN 1900</code>
221
     *
222
     * @param int    $level   the N level of the subrecord to get
223
     * @param string $tag     a gedcom tag or string to search for in the record (ie 1 BIRT or 2 DATE)
224
     * @param string $gedrec  the parent gedcom record to search in
225
     * @param int    $num     this allows you to specify which matching <var>$tag</var> to get. Oftentimes a
226
     *                        gedcom record will have more that 1 of the same type of subrecord. An individual may have
227
     *                        multiple events for example. Passing $num=1 would get the first 1. Passing $num=2 would get the
228
     *                        second one, etc.
229
     *
230
     * @return string the subrecord that was found or an empty string "" if not found.
231
     */
232
    public static function getSubRecord(int $level, string $tag, string $gedrec, int $num = 1): string
233
    {
234
        if ($gedrec === '') {
235
            return '';
236
        }
237
        // -- adding \n before and after gedrec
238
        $gedrec       = "\n" . $gedrec . "\n";
239
        $tag          = trim($tag);
240
        $searchTarget = "~[\n]" . $tag . "[\s]~";
241
        $ct           = preg_match_all($searchTarget, $gedrec, $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE);
242
        if ($ct === 0) {
243
            return '';
244
        }
245
        if ($ct < $num) {
246
            return '';
247
        }
248
        $pos1 = $match[$num - 1][0][1];
249
        $pos2 = strpos($gedrec, "\n$level", $pos1 + 1);
250
        if (!$pos2) {
251
            $pos2 = strpos($gedrec, "\n1", $pos1 + 1);
252
        }
253
        if (!$pos2) {
254
            $pos2 = strpos($gedrec, "\nWT_", $pos1 + 1); // WT_SPOUSE, WT_FAMILY_ID ...
255
        }
256
        if (!$pos2) {
257
            return ltrim(substr($gedrec, $pos1));
258
        }
259
        $subrec = substr($gedrec, $pos1, $pos2 - $pos1);
260
261
        return ltrim($subrec);
262
    }
263
264
    /**
265
     * get CONT lines
266
     *
267
     * get the N+1 CONT or CONC lines of a gedcom subrecord
268
     *
269
     * @param int    $nlevel the level of the CONT lines to get
270
     * @param string $nrec   the gedcom subrecord to search in
271
     *
272
     * @return string a string with all CONT lines merged
273
     */
274
    public static function getCont(int $nlevel, string $nrec): string
275
    {
276
        $text = '';
277
278
        $subrecords = explode("\n", $nrec);
279
        foreach ($subrecords as $thisSubrecord) {
280
            if (substr($thisSubrecord, 0, 2) !== $nlevel . ' ') {
281
                continue;
282
            }
283
            $subrecordType = substr($thisSubrecord, 2, 4);
284
            if ($subrecordType === 'CONT') {
285
                $text .= "\n" . substr($thisSubrecord, 7);
286
            }
287
        }
288
289
        return $text;
290
    }
291
292
    /**
293
     * XML start element handler
294
     * This function is called whenever a starting element is reached
295
     * The element handler will be called if found, otherwise it must be HTML
296
     *
297
     * @param resource      $parser the resource handler for the XML parser
298
     * @param string        $name   the name of the XML element parsed
299
     * @param array<string> $attrs  an array of key value pairs for the attributes
300
     *
301
     * @return void
302
     */
303
    protected function startElement($parser, string $name, array $attrs): void
304
    {
305
        $newattrs = [];
306
307
        foreach ($attrs as $key => $value) {
308
            if (preg_match("/^\\$(\w+)$/", $value, $match)) {
309
                if (isset($this->vars[$match[1]]['id']) && !isset($this->vars[$match[1]]['gedcom'])) {
310
                    $value = $this->vars[$match[1]]['id'];
311
                }
312
            }
313
            $newattrs[$key] = $value;
314
        }
315
        $attrs = $newattrs;
316
        if ($this->process_footnote && ($this->process_ifs === 0 || $name === 'if') && ($this->process_gedcoms === 0 || $name === 'Gedcom') && ($this->process_repeats === 0 || $name === 'Facts' || $name === 'RepeatTag')) {
317
            $method = $name . 'StartHandler';
318
319
            if (method_exists($this, $method)) {
320
                $this->{$method}($attrs);
321
            }
322
        }
323
    }
324
325
    /**
326
     * XML end element handler
327
     * This function is called whenever an ending element is reached
328
     * The element handler will be called if found, otherwise it must be HTML
329
     *
330
     * @param resource $parser the resource handler for the XML parser
331
     * @param string   $name   the name of the XML element parsed
332
     *
333
     * @return void
334
     */
335
    protected function endElement($parser, string $name): void
336
    {
337
        if (($this->process_footnote || $name === 'Footnote') && ($this->process_ifs === 0 || $name === 'if') && ($this->process_gedcoms === 0 || $name === 'Gedcom') && ($this->process_repeats === 0 || $name === 'Facts' || $name === 'RepeatTag' || $name === 'List' || $name === 'Relatives')) {
338
            $method = $name . 'EndHandler';
339
340
            if (method_exists($this, $method)) {
341
                $this->{$method}();
342
            }
343
        }
344
    }
345
346
    /**
347
     * XML character data handler
348
     *
349
     * @param resource $parser the resource handler for the XML parser
350
     * @param string   $data   the name of the XML element parsed
351
     *
352
     * @return void
353
     */
354
    protected function characterData($parser, string $data): void
355
    {
356
        if ($this->print_data && $this->process_gedcoms === 0 && $this->process_ifs === 0 && $this->process_repeats === 0) {
357
            $this->current_element->addText($data);
358
        }
359
    }
360
361
    /**
362
     * Handle <style>
363
     *
364
     * @param array<string> $attrs
365
     *
366
     * @return void
367
     */
368
    protected function styleStartHandler(array $attrs): void
369
    {
370
        if (empty($attrs['name'])) {
371
            throw new DomainException('REPORT ERROR Style: The "name" of the style is missing or not set in the XML file.');
372
        }
373
374
        $style = [
375
            'name'  => $attrs['name'],
376
            'font'  => $attrs['font'] ?? $this->wt_report->default_font,
377
            'size'  => (float) ($attrs['size'] ?? $this->wt_report->default_font_size),
378
            'style' => $attrs['style'] ?? '',
379
        ];
380
381
        $this->wt_report->addStyle($style);
382
    }
383
384
    /**
385
     * Handle <doc>
386
     * Sets up the basics of the document proparties
387
     *
388
     * @param array<string> $attrs
389
     *
390
     * @return void
391
     */
392
    protected function docStartHandler(array $attrs): void
393
    {
394
        $this->parser = $this->xml_parser;
395
396
        // Custom page width
397
        if (!empty($attrs['customwidth'])) {
398
            $this->wt_report->page_width = (float) $attrs['customwidth'];
399
        }
400
        // Custom Page height
401
        if (!empty($attrs['customheight'])) {
402
            $this->wt_report->page_height = (float) $attrs['customheight'];
403
        }
404
405
        // Left Margin
406
        if (isset($attrs['leftmargin'])) {
407
            if ($attrs['leftmargin'] === '0') {
408
                $this->wt_report->left_margin = 0;
409
            } elseif (!empty($attrs['leftmargin'])) {
410
                $this->wt_report->left_margin = (float) $attrs['leftmargin'];
411
            }
412
        }
413
        // Right Margin
414
        if (isset($attrs['rightmargin'])) {
415
            if ($attrs['rightmargin'] === '0') {
416
                $this->wt_report->right_margin = 0;
417
            } elseif (!empty($attrs['rightmargin'])) {
418
                $this->wt_report->right_margin = (float) $attrs['rightmargin'];
419
            }
420
        }
421
        // Top Margin
422
        if (isset($attrs['topmargin'])) {
423
            if ($attrs['topmargin'] === '0') {
424
                $this->wt_report->top_margin = 0;
425
            } elseif (!empty($attrs['topmargin'])) {
426
                $this->wt_report->top_margin = (float) $attrs['topmargin'];
427
            }
428
        }
429
        // Bottom Margin
430
        if (isset($attrs['bottommargin'])) {
431
            if ($attrs['bottommargin'] === '0') {
432
                $this->wt_report->bottom_margin = 0;
433
            } elseif (!empty($attrs['bottommargin'])) {
434
                $this->wt_report->bottom_margin = (float) $attrs['bottommargin'];
435
            }
436
        }
437
        // Header Margin
438
        if (isset($attrs['headermargin'])) {
439
            if ($attrs['headermargin'] === '0') {
440
                $this->wt_report->header_margin = 0;
441
            } elseif (!empty($attrs['headermargin'])) {
442
                $this->wt_report->header_margin = (float) $attrs['headermargin'];
443
            }
444
        }
445
        // Footer Margin
446
        if (isset($attrs['footermargin'])) {
447
            if ($attrs['footermargin'] === '0') {
448
                $this->wt_report->footer_margin = 0;
449
            } elseif (!empty($attrs['footermargin'])) {
450
                $this->wt_report->footer_margin = (float) $attrs['footermargin'];
451
            }
452
        }
453
454
        // Page Orientation
455
        if (!empty($attrs['orientation'])) {
456
            if ($attrs['orientation'] === 'landscape') {
457
                $this->wt_report->orientation = 'landscape';
458
            } elseif ($attrs['orientation'] === 'portrait') {
459
                $this->wt_report->orientation = 'portrait';
460
            }
461
        }
462
        // Page Size
463
        if (!empty($attrs['pageSize'])) {
464
            $this->wt_report->page_format = $attrs['pageSize'];
465
        }
466
467
        // Show Generated By...
468
        if (isset($attrs['showGeneratedBy'])) {
469
            if ($attrs['showGeneratedBy'] === '0') {
470
                $this->wt_report->show_generated_by = false;
471
            } elseif ($attrs['showGeneratedBy'] === '1') {
472
                $this->wt_report->show_generated_by = true;
473
            }
474
        }
475
476
        $this->wt_report->setup();
477
    }
478
479
    /**
480
     * Handle </doc>
481
     *
482
     * @return void
483
     */
484
    protected function docEndHandler(): void
485
    {
486
        $this->wt_report->run();
487
    }
488
489
    /**
490
     * Handle <header>
491
     *
492
     * @return void
493
     */
494
    protected function headerStartHandler(): void
495
    {
496
        // Clear the Header before any new elements are added
497
        $this->wt_report->clearHeader();
498
        $this->wt_report->setProcessing('H');
499
    }
500
501
    /**
502
     * Handle <body>
503
     *
504
     * @return void
505
     */
506
    protected function bodyStartHandler(): void
507
    {
508
        $this->wt_report->setProcessing('B');
509
    }
510
511
    /**
512
     * Handle <footer>
513
     *
514
     * @return void
515
     */
516
    protected function footerStartHandler(): void
517
    {
518
        $this->wt_report->setProcessing('F');
519
    }
520
521
    /**
522
     * Handle <cell>
523
     *
524
     * @param array<string,string> $attrs
525
     *
526
     * @return void
527
     */
528
    protected function cellStartHandler(array $attrs): void
529
    {
530
        // string The text alignment of the text in this box.
531
        $align = $attrs['align'] ?? '';
532
        // RTL supported left/right alignment
533
        if ($align === 'rightrtl') {
534
            if ($this->wt_report->rtl) {
535
                $align = 'left';
536
            } else {
537
                $align = 'right';
538
            }
539
        } elseif ($align === 'leftrtl') {
540
            if ($this->wt_report->rtl) {
541
                $align = 'right';
542
            } else {
543
                $align = 'left';
544
            }
545
        }
546
547
        // The color to fill the background of this cell
548
        $bgcolor = $attrs['bgcolor'] ?? '';
549
550
        // Whether the background should be painted
551
        $fill = (bool) ($attrs['fill'] ?? '0');
552
553
        // If true reset the last cell height
554
        $reseth = (bool) ($attrs['reseth'] ?? '1');
555
556
        // Whether a border should be printed around this box
557
        $border = $attrs['border'] ?? '';
558
559
        // string Border color in HTML code
560
        $bocolor = $attrs['bocolor'] ?? '';
561
562
        // Cell height (expressed in points) The starting height of this cell. If the text wraps the height will automatically be adjusted.
563
        $height = (int) ($attrs['height'] ?? '0');
564
565
        // int Cell width (expressed in points) Setting the width to 0 will make it the width from the current location to the right margin.
566
        $width = (int) ($attrs['width'] ?? '0');
567
568
        // Stretch character mode
569
        $stretch = (int) ($attrs['stretch'] ?? '0');
570
571
        // mixed Position the left corner of this box on the page. The default is the current position.
572
        $left = ReportBaseElement::CURRENT_POSITION;
573
        if (isset($attrs['left'])) {
574
            if ($attrs['left'] === '.') {
575
                $left = ReportBaseElement::CURRENT_POSITION;
576
            } elseif (!empty($attrs['left'])) {
577
                $left = (float) $attrs['left'];
578
            } elseif ($attrs['left'] === '0') {
579
                $left = 0.0;
580
            }
581
        }
582
        // mixed Position the top corner of this box on the page. the default is the current position
583
        $top = ReportBaseElement::CURRENT_POSITION;
584
        if (isset($attrs['top'])) {
585
            if ($attrs['top'] === '.') {
586
                $top = ReportBaseElement::CURRENT_POSITION;
587
            } elseif (!empty($attrs['top'])) {
588
                $top = (float) $attrs['top'];
589
            } elseif ($attrs['top'] === '0') {
590
                $top = 0.0;
591
            }
592
        }
593
594
        // The name of the Style that should be used to render the text.
595
        $style = $attrs['style'] ?? '';
596
597
        // string Text color in html code
598
        $tcolor = $attrs['tcolor'] ?? '';
599
600
        // int Indicates where the current position should go after the call.
601
        $ln = 0;
602
        if (isset($attrs['newline'])) {
603
            if (!empty($attrs['newline'])) {
604
                $ln = (int) $attrs['newline'];
605
            } elseif ($attrs['newline'] === '0') {
606
                $ln = 0;
607
            }
608
        }
609
610
        if ($align === 'left') {
611
            $align = 'L';
612
        } elseif ($align === 'right') {
613
            $align = 'R';
614
        } elseif ($align === 'center') {
615
            $align = 'C';
616
        } elseif ($align === 'justify') {
617
            $align = 'J';
618
        }
619
620
        $this->print_data_stack[] = $this->print_data;
621
        $this->print_data         = true;
622
623
        $this->current_element = $this->report_root->createCell(
624
            (int) $width,
625
            (int) $height,
626
            $border,
627
            $align,
628
            $bgcolor,
629
            $style,
630
            $ln,
631
            $top,
632
            $left,
633
            $fill,
634
            $stretch,
635
            $bocolor,
636
            $tcolor,
637
            $reseth
638
        );
639
640
        // set string URL to be a link
641
        if (isset($attrs['url'])) {
642
            $url = $attrs['url'];
643
            $this->current_element->setUrl($url);
644
        } else {
645
            $url = "";
0 ignored issues
show
Unused Code introduced by
The assignment to $url is dead and can be removed.
Loading history...
646
        }
647
    }
648
649
    /**
650
     * Handle </cell>
651
     *
652
     * @return void
653
     */
654
    protected function cellEndHandler(): void
655
    {
656
        $this->print_data = array_pop($this->print_data_stack);
657
        $this->wt_report->addElement($this->current_element);
658
    }
659
660
    /**
661
     * Handle <now />
662
     *
663
     * @return void
664
     */
665
    protected function nowStartHandler(): void
666
    {
667
        $this->current_element->addText(Registry::timestampFactory()->now()->isoFormat('LLLL'));
668
    }
669
670
    /**
671
     * Handle <pageNum />
672
     *
673
     * @return void
674
     */
675
    protected function pageNumStartHandler(): void
676
    {
677
        $this->current_element->addText('#PAGENUM#');
678
    }
679
680
    /**
681
     * Handle <totalPages />
682
     *
683
     * @return void
684
     */
685
    protected function totalPagesStartHandler(): void
686
    {
687
        $this->current_element->addText('{{:ptp:}}');
688
    }
689
690
    /**
691
     * Called at the start of an element.
692
     *
693
     * @param array<string> $attrs an array of key value pairs for the attributes
694
     *
695
     * @return void
696
     */
697
    protected function gedcomStartHandler(array $attrs): void
698
    {
699
        if ($this->process_gedcoms > 0) {
700
            $this->process_gedcoms++;
701
702
            return;
703
        }
704
705
        $tag       = $attrs['id'];
706
        $tag       = str_replace('@fact', $this->fact, $tag);
707
        $tags      = explode(':', $tag);
708
        $newgedrec = '';
709
        if (count($tags) < 2) {
710
            $tmp       = Registry::gedcomRecordFactory()->make($attrs['id'], $this->tree);
711
            $newgedrec = $tmp ? $tmp->privatizeGedcom(Auth::accessLevel($this->tree)) : '';
712
        }
713
        if (empty($newgedrec)) {
714
            $tgedrec   = $this->gedrec;
715
            $newgedrec = '';
716
            foreach ($tags as $tag) {
717
                if (preg_match('/\$(.+)/', $tag, $match)) {
718
                    if (isset($this->vars[$match[1]]['gedcom'])) {
719
                        $newgedrec = $this->vars[$match[1]]['gedcom'];
720
                    } else {
721
                        $tmp       = Registry::gedcomRecordFactory()->make($match[1], $this->tree);
722
                        $newgedrec = $tmp ? $tmp->privatizeGedcom(Auth::accessLevel($this->tree)) : '';
723
                    }
724
                } else {
725
                    if (preg_match('/@(.+)/', $tag, $match)) {
726
                        $gmatch = [];
727
                        if (preg_match("/\d $match[1] @([^@]+)@/", $tgedrec, $gmatch)) {
728
                            $tmp       = Registry::gedcomRecordFactory()->make($gmatch[1], $this->tree);
729
                            $newgedrec = $tmp ? $tmp->privatizeGedcom(Auth::accessLevel($this->tree)) : '';
730
                            $tgedrec   = $newgedrec;
731
                        } else {
732
                            $newgedrec = '';
733
                            break;
734
                        }
735
                    } else {
736
                        $level     = 1 + (int) explode(' ', trim($tgedrec))[0];
737
                        $newgedrec = self::getSubRecord($level, "$level $tag", $tgedrec);
738
                        $tgedrec   = $newgedrec;
739
                    }
740
                }
741
            }
742
        }
743
        if (!empty($newgedrec)) {
744
            $this->gedrec_stack[] = [$this->gedrec, $this->fact, $this->desc];
745
            $this->gedrec         = $newgedrec;
746
            if (preg_match("/(\d+) (_?[A-Z0-9]+) (.*)/", $this->gedrec, $match)) {
747
                $this->fact = $match[2];
748
                $this->desc = trim($match[3]);
749
            }
750
        } else {
751
            $this->process_gedcoms++;
752
        }
753
    }
754
755
    /**
756
     * Called at the end of an element.
757
     *
758
     * @return void
759
     */
760
    protected function gedcomEndHandler(): void
761
    {
762
        if ($this->process_gedcoms > 0) {
763
            $this->process_gedcoms--;
764
        } else {
765
            [$this->gedrec, $this->fact, $this->desc] = array_pop($this->gedrec_stack);
766
        }
767
    }
768
769
    /**
770
     * Handle <textBox>
771
     *
772
     * @param array<string> $attrs
773
     *
774
     * @return void
775
     */
776
    protected function textBoxStartHandler(array $attrs): void
777
    {
778
        // string Background color code
779
        $bgcolor = '';
780
        if (!empty($attrs['bgcolor'])) {
781
            $bgcolor = $attrs['bgcolor'];
782
        }
783
784
        // boolean Wether or not fill the background color
785
        $fill = true;
786
        if (isset($attrs['fill'])) {
787
            if ($attrs['fill'] === '0') {
788
                $fill = false;
789
            } elseif ($attrs['fill'] === '1') {
790
                $fill = true;
791
            }
792
        }
793
794
        // var boolean Whether or not a border should be printed around this box. 0 = no border, 1 = border. Default is 0
795
        $border = false;
796
        if (isset($attrs['border'])) {
797
            if ($attrs['border'] === '1') {
798
                $border = true;
799
            } elseif ($attrs['border'] === '0') {
800
                $border = false;
801
            }
802
        }
803
804
        // int The starting height of this cell. If the text wraps the height will automatically be adjusted
805
        $height = 0;
806
        if (!empty($attrs['height'])) {
807
            $height = (int) $attrs['height'];
808
        }
809
        // int Setting the width to 0 will make it the width from the current location to the margin
810
        $width = 0;
811
        if (!empty($attrs['width'])) {
812
            $width = (int) $attrs['width'];
813
        }
814
815
        // mixed Position the left corner of this box on the page. The default is the current position.
816
        $left = ReportBaseElement::CURRENT_POSITION;
817
        if (isset($attrs['left'])) {
818
            if ($attrs['left'] === '.') {
819
                $left = ReportBaseElement::CURRENT_POSITION;
820
            } elseif (!empty($attrs['left'])) {
821
                $left = (int) $attrs['left'];
822
            } elseif ($attrs['left'] === '0') {
823
                $left = 0;
824
            }
825
        }
826
        // mixed Position the top corner of this box on the page. the default is the current position
827
        $top = ReportBaseElement::CURRENT_POSITION;
828
        if (isset($attrs['top'])) {
829
            if ($attrs['top'] === '.') {
830
                $top = ReportBaseElement::CURRENT_POSITION;
831
            } elseif (!empty($attrs['top'])) {
832
                $top = (int) $attrs['top'];
833
            } elseif ($attrs['top'] === '0') {
834
                $top = 0;
835
            }
836
        }
837
        // position of box absolute or relative, and possibly top and height
838
        if (isset($attrs['pos'])) {
839
            $pos = $attrs['pos'];
840
            if (substr($pos, 0, 3) == 'abs') {
841
                //-- check absolute or relative position
842
                $top += -222000;
843
            }
844
            if (substr($pos, 0, 3) == 'rel') {
845
                //-- check absolute or relative position
846
                $top = -100000;
847
            }
848
            if (substr($pos, 3, 3) == '_fh') {
849
                $top = -100012;
850
            }
851
            if (substr($pos, 3, 3) == '_f2') {
852
                $top = -100018;
853
            }
854
            if (substr($pos, 6, 5) == '_html') {
855
                $top = -90012;
856
            }
857
        }
858
        // boolean After this box is finished rendering, should the next section of text start immediately after the this box or should it start on a new line under this box. 0 = no new line, 1 = force new line. Default is 0
859
        $newline = false;
860
        if (isset($attrs['newline'])) {
861
            if ($attrs['newline'] === '1') {
862
                $newline = true;
863
            } elseif ($attrs['newline'] === '0') {
864
                $newline = false;
865
            }
866
        }
867
        // boolean
868
        $pagecheck = true;
869
        if (isset($attrs['pagecheck'])) {
870
            if ($attrs['pagecheck'] === '0') {
871
                $pagecheck = false;
872
            } elseif ($attrs['pagecheck'] === '1') {
873
                $pagecheck = true;
874
            }
875
        }
876
        // boolean Cell padding
877
        $padding = true;
878
        if (isset($attrs['padding'])) {
879
            if ($attrs['padding'] === '0') {
880
                $padding = false;
881
            } elseif ($attrs['padding'] === '1') {
882
                $padding = true;
883
            }
884
        }
885
        // boolean Reset this box Height
886
        $reseth = false;
887
        if (isset($attrs['reseth'])) {
888
            if ($attrs['reseth'] === '1') {
889
                $reseth = true;
890
            } elseif ($attrs['reseth'] === '0') {
891
                $reseth = false;
892
            }
893
        }
894
895
        // string Style of rendering
896
        $style = '';
897
898
        $this->print_data_stack[] = $this->print_data;
899
        $this->print_data         = false;
900
901
        $this->wt_report_stack[] = $this->wt_report;
902
        $this->wt_report         = $this->report_root->createTextBox(
0 ignored issues
show
Documentation Bug introduced by
It seems like $this->report_root->crea...ill, $padding, $reseth) of type Fisharebest\Webtrees\Report\ReportBaseTextbox is incompatible with the declared type Fisharebest\Webtrees\Report\AbstractRenderer of property $wt_report.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
903
            $width,
904
            $height,
905
            $border,
906
            $bgcolor,
907
            $newline,
908
            $left,
909
            $top,
910
            $pagecheck,
911
            $style,
912
            $fill,
913
            $padding,
914
            $reseth
915
        );
916
    }
917
918
    /**
919
     * Handle <textBox>
920
     *
921
     * @return void
922
     */
923
    protected function textBoxEndHandler(): void
924
    {
925
        $this->print_data      = array_pop($this->print_data_stack);
926
        $this->current_element = $this->wt_report;
0 ignored issues
show
Documentation Bug introduced by
It seems like $this->wt_report of type Fisharebest\Webtrees\Report\AbstractRenderer is incompatible with the declared type Fisharebest\Webtrees\Report\ReportBaseElement of property $current_element.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
927
928
        // The TextBox handler is mis-using the wt_report attribute to store an element.
929
        // Until this can be re-designed, we need this assertion to help static analysis tools.
930
        assert($this->current_element instanceof ReportBaseElement, new LogicException());
931
932
        $this->wt_report = array_pop($this->wt_report_stack);
933
        $this->wt_report->addElement($this->current_element);
934
    }
935
936
    /**
937
     * XLM <Text>.
938
     *
939
     * @param array<string> $attrs an array of key value pairs for the attributes
940
     *
941
     * @return void
942
     */
943
    protected function textStartHandler(array $attrs): void
944
    {
945
        $this->print_data_stack[] = $this->print_data;
946
        $this->print_data         = true;
947
948
        // string The name of the Style that should be used to render the text.
949
        $style = '';
950
        if (isset($attrs['style'])) {
951
            $style = $attrs['style'];
952
        }
953
954
        // string  The color of the text - Keep the black color as default
955
        $color = '';
956
        if (isset($attrs['color'])) {
957
            $color = $attrs['color'];
958
        }
959
960
        $this->current_element = $this->report_root->createText($style, $color);
961
    }
962
963
    /**
964
     * Handle </text>
965
     *
966
     * @return void
967
     */
968
    protected function textEndHandler(): void
969
    {
970
        $this->print_data = array_pop($this->print_data_stack);
971
        $this->wt_report->addElement($this->current_element);
972
    }
973
974
    /**
975
     * Handle <getPersonName />
976
     * Get the name
977
     * 1. id is empty - current GEDCOM record
978
     * 2. id is set with a record id
979
     *
980
     * @param array<string> $attrs an array of key value pairs for the attributes
981
     *
982
     * @return void
983
     */
984
    protected function getPersonNameStartHandler(array $attrs): void
985
    {
986
        $id    = '';
987
        $match = [];
988
        if (empty($attrs['id'])) {
989
            if (preg_match('/0 @(.+)@/', $this->gedrec, $match)) {
990
                $id = $match[1];
991
            }
992
        } else {
993
            if (preg_match('/\$(.+)/', $attrs['id'], $match)) {
994
                if (isset($this->vars[$match[1]]['id'])) {
995
                    $id = $this->vars[$match[1]]['id'];
996
                }
997
            } else {
998
                if (preg_match('/@(.+)/', $attrs['id'], $match)) {
999
                    $gmatch = [];
1000
                    if (preg_match("/\d $match[1] @([^@]+)@/", $this->gedrec, $gmatch)) {
1001
                        $id = $gmatch[1];
1002
                    }
1003
                } else {
1004
                    $id = $attrs['id'];
1005
                }
1006
            }
1007
        }
1008
        $nameselect = "";
1009
        if (isset($attrs['select'])) {
1010
            $nameselect = $attrs['select'];
1011
        }
1012
        $famrel = false;
1013
        if (isset($attrs['fam_relation'])) {
1014
            $famrel = true;
1015
        }
1016
        if (!empty($id)) {
1017
            $record = Registry::gedcomRecordFactory()->make($id, $this->tree);
1018
            if ($record === null) {
1019
                return;
1020
            }
1021
            if (!$record->canShowName()) {
1022
                $this->current_element->addText(I18N::translate('Private'));
1023
            } elseif ($nameselect == 'latest') {
1024
                $tmp = $record->getAllNames();
1025
                $name  = strip_tags($tmp[count($tmp) - 1]['full']);
1026
                $this->current_element->addText(trim($name));
1027
            } elseif ($nameselect == 'combined') {
1028
                $tmp = $record->getAllNames();
1029
                $name = $tmp[count($tmp) - 1]['full'];
1030
                $ix1 = strpos($name, '<span class="starredname">');
1031
                if ($ix1 !== false) {   // '«' and '»' mark text for underlining
1032
                    $name = substr_replace($name, '«', $ix1, 26);
1033
                    $ix1 = strpos($name, '</span>', $ix1);
0 ignored issues
show
Bug introduced by
It seems like $name can also be of type array; however, parameter $haystack of strpos() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

1033
                    $ix1 = strpos(/** @scrutinizer ignore-type */ $name, '</span>', $ix1);
Loading history...
1034
                    if ($ix1 !== false) {   // '«' and '»' mark text for underlining
1035
                        $name = substr_replace($name, '»', $ix1, 7);
1036
                    }
1037
                }
1038
                $addname = strip_tags((string) $tmp[0]['surn']);
1039
                if (!empty($addname) && !($addname === '@N.N.') && !str_contains($name, $addname)) {
1040
                    $name .= " " . I18N::translate('b.') . " " . $addname;
1041
                }
1042
                $this->current_element->addText(trim($name));
1043
            } else {
1044
                $name = $record->fullName();
1045
                $name = strip_tags($name);
1046
                if (!empty($attrs['truncate'])) {
1047
                    if ((int) $attrs['truncate'] > 0) {
1048
                        $name = Str::limit($name, (int) $attrs['truncate'], I18N::translate('…'));
1049
                    }
1050
                } else {
1051
                    $addname = (string) $record->alternateName();
1052
                    $addname = strip_tags($addname);
1053
                    if (!empty($addname)) {
1054
                        $name .= ' ' . $addname;
1055
                    }
1056
                }
1057
                $this->current_element->addText(trim($name));
1058
            }
1059
        }
1060
        if (isset($record) && $famrel && ($this->mfrelation[$record->xref()] != "")) {
1061
            $this->current_element->addText(" (" . (string) $this->mfrelation[$record->xref()] . ")");
1062
        }
1063
    }
1064
1065
    /**
1066
     * Handle <gedcomValue />
1067
     *
1068
     * @param array<string> $attrs
1069
     *
1070
     * @return void
1071
     */
1072
    protected function gedcomValueStartHandler(array $attrs): void
1073
    {
1074
        $id    = '';
1075
        $match = [];
1076
        if (preg_match('/0 @(.+)@/', $this->gedrec, $match)) {
1077
            $id = $match[1];
1078
        }
1079
1080
        if (isset($attrs['newline']) && $attrs['newline'] === '1') {
1081
            $useBreak = '1';
1082
        } else {
1083
            $useBreak = '0';
1084
        }
1085
1086
        $tag = $attrs['tag'];
1087
        if (!empty($tag)) {
1088
            if ($tag === '@desc') {
1089
                $value = $this->desc;
1090
                $value = trim($value);
1091
                $this->current_element->addText($value);
1092
            }
1093
            if ($tag === '@id') {
1094
                $this->current_element->addText($id);
1095
            } else {
1096
                $tag = str_replace('@fact', $this->fact, $tag);
1097
                if (empty($attrs['level'])) {
1098
                    $level = (int) explode(' ', trim($this->gedrec))[0];
1099
                    if ($level === 0) {
1100
                        $level++;
1101
                    }
1102
                } else {
1103
                    $level = (int) $attrs['level'];
1104
                }
1105
                $tags  = preg_split('/[: ]/', $tag);
1106
                $value = $this->getGedcomValue($tag, $level, $this->gedrec);
1107
                switch (end($tags)) {
1108
                    case 'DATE':
1109
                        $tmp   = new Date($value);
1110
                        $dfmt = "%j %F %Y";
1111
                        if (!empty($attrs['truncate'])) {
1112
                            if ($attrs['truncate'] === "d") {
1113
                                $dfmt = "%j %M %Y";
1114
                            }
1115
                            if ($attrs['truncate'] === "Y") {
1116
                                $dfmt = "%Y";
1117
                            }
1118
                        }
1119
                        $value = strip_tags($tmp->display(null, $dfmt));
1120
                        break;
1121
                    case 'PLAC':
1122
                        $tmp   = new Place($value, $this->tree);
1123
                        $value = $tmp->shortName();
1124
                        break;
1125
                }
1126
                if ($useBreak === '1') {
1127
                    // Insert <br> when multiple dates exist.
1128
                    // This works around a TCPDF bug that incorrectly wraps RTL dates on LTR pages
1129
                    $value = str_replace('(', '<br>(', $value);
1130
                    $value = str_replace('<span dir="ltr"><br>', '<br><span dir="ltr">', $value);
1131
                    $value = str_replace('<span dir="rtl"><br>', '<br><span dir="rtl">', $value);
1132
                    if (substr($value, 0, 4) === '<br>') {
1133
                        $value = substr($value, 4);
1134
                    }
1135
                }
1136
                $tmp = explode(':', $tag);
1137
                if (in_array(end($tmp), ['NOTE', 'TEXT'], true)) {
1138
                    if ($this->tree->getPreference('FORMAT_TEXT') === 'xxmarkdown') {
1139
                        $value = strip_tags(Registry::markdownFactory()->markdown($value, $this->tree), ['br']);
1140
                    } else {
1141
                        $value = str_replace("\n", "<br>", $value);
1142
                        //$value = strip_tags(Registry::markdownFactory()->autolink($value, $this->tree), ['br']);
1143
                    }
1144
                    $value = strtr($value, [MarkdownFactory::BREAK => ' ']);
1145
                }
1146
1147
                if (isset($attrs['lcfirst'])) {
1148
                    $value = lcfirst($value);
1149
                    $value = str_replace(["Å","Ä","Ö"], ["å","ä","ö"], $value);
1150
                }
1151
1152
                if (!empty($attrs['truncate'])) {
1153
                    $value = strip_tags($value);
1154
                    if ((int) $attrs['truncate'] > 0) {
1155
                        $value = Str::limit($value, (int) $attrs['truncate'], I18N::translate('…'));
1156
                    }
1157
                }
1158
                $this->current_element->addText($value);
1159
            }
1160
        }
1161
    }
1162
1163
    /**
1164
     * Handle <repeatTag>
1165
     *
1166
     * @param array<string> $attrs
1167
     *
1168
     * @return void
1169
     */
1170
    protected function repeatTagStartHandler(array $attrs): void
1171
    {
1172
        $this->process_repeats++;
1173
        if ($this->process_repeats > 1) {
1174
            return;
1175
        }
1176
1177
        $this->repeats_stack[] = [$this->repeats, $this->repeat_bytes];
1178
        $this->repeats         = [];
1179
        $this->repeat_bytes    = xml_get_current_line_number($this->parser);
1180
1181
        $tag = $attrs['tag'] ?? '';
1182
        if (!empty($tag)) {
1183
            if ($tag === '@desc') {
1184
                $value = $this->desc;
1185
                $value = trim($value);
1186
                $this->current_element->addText($value);
1187
            } else {
1188
                $tag   = str_replace('@fact', $this->fact, $tag);
1189
                $tags  = explode(':', $tag);
1190
                $level = (int) explode(' ', trim($this->gedrec))[0];
1191
                if ($level === 0) {
1192
                    $level++;
1193
                }
1194
                $subrec = $this->gedrec;
1195
                $t      = $tag;
1196
                $count  = count($tags);
1197
                $i      = 0;
1198
                while ($i < $count) {
1199
                    $t = $tags[$i];
1200
                    if (!empty($t)) {
1201
                        if ($i < ($count - 1)) {
1202
                            $subrec = self::getSubRecord($level, "$level $t", $subrec);
1203
                            if (empty($subrec)) {
1204
                                $level--;
1205
                                $subrec = self::getSubRecord($level, "@ $t", $this->gedrec);
1206
                                if (empty($subrec)) {
1207
                                    return;
1208
                                }
1209
                            }
1210
                        }
1211
                        $level++;
1212
                    }
1213
                    $i++;
1214
                }
1215
                $level--;
1216
                $count = preg_match_all("/$level $t(.*)/", $subrec, $match, PREG_SET_ORDER);
1217
                $i     = 0;
1218
                while ($i < $count) {
1219
                    $i++;
1220
                    // Privacy check - is this a link, and are we allowed to view the linked object?
1221
                    $subrecord = self::getSubRecord($level, "$level $t", $subrec, $i);
1222
                    if (preg_match('/^\d ' . Gedcom::REGEX_TAG . ' @(' . Gedcom::REGEX_XREF . ')@/', $subrecord, $xref_match)) {
1223
                        $linked_object = Registry::gedcomRecordFactory()->make($xref_match[1], $this->tree);
1224
                        if ($linked_object && !$linked_object->canShow()) {
1225
                            //continue;
1226
                        }
1227
                    }
1228
                    $this->repeats[] = $subrecord;
1229
                }
1230
            }
1231
        }
1232
    }
1233
1234
    /**
1235
     * Handle </repeatTag>
1236
     *
1237
     * @return void
1238
     */
1239
    protected function repeatTagEndHandler(): void
1240
    {
1241
        $this->process_repeats--;
1242
        if ($this->process_repeats > 0) {
1243
            return;
1244
        }
1245
1246
        $nnnn = count($this->repeats);
0 ignored issues
show
Unused Code introduced by
The assignment to $nnnn is dead and can be removed.
Loading history...
1247
        $rpt1 = isset($this->repeats[0]) ? $this->repeats[0] : "";
0 ignored issues
show
Unused Code introduced by
The assignment to $rpt1 is dead and can be removed.
Loading history...
1248
        // Check if there is anything to repeat
1249
        if (count($this->repeats) > 0) {
1250
            // No need to load them if not used...
1251
1252
            //-- read the xml from the file
1253
            $lines = file($this->report);
1254
            if (empty($lines)) {
1255
                error_log(__FILE__ . ":" . __LINE__ . " impossible error!? \n");
1256
                // this can not happen! phpstan forces me to add stupid code
1257
                die("can not happen!!!");
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
1258
            }
1259
            $lineoffset = 0;
1260
            foreach ($this->repeats_stack as $rep) {
1261
                if (!empty($rep[1])) {
1262
                    $lineoffset = $lineoffset + (int) ($rep[1]) - 1;
1263
                }
1264
            }
1265
            while (!str_contains($lines[$lineoffset + $this->repeat_bytes], '<RepeatTag')) {
1266
                $lineoffset--;
1267
            }
1268
            $lineoffset++;
1269
            $reportxml = "<tempdoc>\n";
1270
            $line_nr   = $lineoffset + $this->repeat_bytes;
1271
            $lnnn = $line_nr;
0 ignored issues
show
Unused Code introduced by
The assignment to $lnnn is dead and can be removed.
Loading history...
1272
            // RepeatTag Level counter
1273
            $count = 1;
1274
            while (0 < $count) {
1275
                if (str_contains($lines[$line_nr], '<RepeatTag')) {
1276
                    $count++;
1277
                } elseif (str_contains($lines[$line_nr], '</RepeatTag')) {
1278
                    $count--;
1279
                }
1280
                if (0 < $count) {
1281
                    $reportxml .= $lines[$line_nr];
1282
                }
1283
                $line_nr++;
1284
            }
1285
            // No need to drag this
1286
            unset($lines);
1287
            $reportxml .= "</tempdoc>\n";
1288
            // Save original values
1289
            $this->parser_stack[] = $this->parser;
1290
            $oldgedrec            = $this->gedrec;
1291
            foreach ($this->repeats as $gedrec) {
1292
                $this->gedrec  = $gedrec;
1293
                $repeat_parser = xml_parser_create();
1294
                $this->parser  = $repeat_parser;
1295
                xml_parser_set_option($repeat_parser, XML_OPTION_CASE_FOLDING, 0);
1296
1297
                xml_set_element_handler(
1298
                    $repeat_parser,
1299
                    function ($parser, string $name, array $attrs): void {
1300
                        $this->startElement($parser, $name, $attrs);
1301
                    },
1302
                    function ($parser, string $name): void {
1303
                        $this->endElement($parser, $name);
1304
                    }
1305
                );
1306
1307
                xml_set_character_data_handler(
1308
                    $repeat_parser,
1309
                    function ($parser, string $data): void {
1310
                        $this->characterData($parser, $data);
1311
                    }
1312
                );
1313
1314
                if (!xml_parse($repeat_parser, $reportxml, true)) {
1315
                    throw new DomainException(sprintf(
1316
                        'RepeatTagEHandler XML error: %s at line %d',
1317
                        xml_error_string(xml_get_error_code($repeat_parser)),
1318
                        xml_get_current_line_number($repeat_parser)
1319
                    ));
1320
                }
1321
                xml_parser_free($repeat_parser);
1322
            }
1323
            // Restore original values
1324
            $this->gedrec = $oldgedrec;
1325
            $this->parser = array_pop($this->parser_stack);
1326
        }
1327
        [$this->repeats, $this->repeat_bytes] = array_pop($this->repeats_stack);
1328
    }
1329
1330
    /**
1331
     * Variable lookup
1332
     * Retrieve predefined variables :
1333
     * @ desc GEDCOM fact description, example:
1334
     *        1 EVEN This is a description
1335
     * @ fact GEDCOM fact tag, such as BIRT, DEAT etc.
1336
     * $ I18N::translate('....')
1337
     * $ language_settings[]
1338
     *
1339
     * @param array<string> $attrs an array of key value pairs for the attributes
1340
     *
1341
     * @return void
1342
     */
1343
    protected function varStartHandler(array $attrs): void
1344
    {
1345
        if (!isset($attrs['var'])) {
1346
            throw new DomainException('REPORT ERROR var: The attribute "var=" is missing or not set in the XML file on line: ' . xml_get_current_line_number($this->parser));
1347
        }
1348
1349
        $var = $attrs['var'];
1350
        // SetVar element preset variables
1351
        if (!empty($this->vars[$var]['id'])) {
1352
            $var = $this->vars[$var]['id'];
1353
        } else {
1354
            $tfact = $this->fact;
1355
            if (($this->fact === 'EVEN' || $this->fact === 'FACT') && $this->type !== '') {
1356
                // Use :
1357
                // n TYPE This text if string
1358
                $tfact = $this->type;
1359
            } else {
1360
                foreach ([Individual::RECORD_TYPE, Family::RECORD_TYPE] as $record_type) {
1361
                    $element = Registry::elementFactory()->make($record_type . ':' . $this->fact);
1362
1363
                    if (!$element instanceof UnknownElement) {
1364
                        $tfact = $element->label();
1365
                        break;
1366
                    }
1367
                }
1368
            }
1369
1370
            $var = strtr($var, ['@desc' => $this->desc, '@fact' => $tfact]);
1371
1372
            if (preg_match('/^I18N::number\((.+)\)$/', $var, $match)) {
1373
                $var = I18N::number((int) $match[1]);
1374
            } elseif (preg_match('/^I18N::translate\(\'(.+)\'\)$/', $var, $match)) {
1375
                $var = I18N::translate($match[1]);
1376
            } elseif (preg_match('/^I18N::translate\(\$(.+)\)$/', $var, $match)) {
1377
                $var = I18N::translate($this->vars[$match[1]]['id']);
1378
            } elseif (preg_match('/^I18N::translateContext\(\'(.+)\', *\'(.+)\'\)$/', $var, $match)) {
1379
                $var = I18N::translateContext($match[1], $match[2]);
1380
            }
1381
        }
1382
        // Check if variable is set as a date and reformat the date
1383
        if (isset($attrs['date'])) {
1384
            if ($attrs['date'] === '1') {
1385
                $g   = new Date($var);
1386
                $var = $g->display();
1387
            }
1388
        }
1389
        if (isset($attrs['amp'])) {
1390
            $var = str_replace("%26", '&', $var);
1391
        }
1392
        if (isset($attrs['cut'])) {
1393
            $cut = (int) $attrs['cut'];
1394
            $var = $cut > 0 ? substr($var, 0, $cut) : substr($var, $cut);
1395
            if ($cut == 0) {
1396
                $var = "";
1397
            }
1398
        }
1399
        if (isset($attrs['lcfirst'])) {
1400
            $var = lcfirst($var);
1401
        }
1402
        $this->current_element->addText($var);
1403
        $this->text = $var; // Used for title/description
1404
    }
1405
1406
    /**
1407
     * Handle <facts>
1408
     *
1409
     * @param array<string> $attrs
1410
     *
1411
     * @return void
1412
     */
1413
    protected function factsStartHandler(array $attrs): void
1414
    {
1415
        $this->process_repeats++;
1416
        if ($this->process_repeats > 1) {
1417
            return;
1418
        }
1419
1420
        $this->repeats_stack[] = [$this->repeats, $this->repeat_bytes];
1421
        $this->repeats         = [];
1422
        $this->repeat_bytes    = xml_get_current_line_number($this->parser);
1423
1424
        $id    = '';
1425
        $match = [];
1426
        if (preg_match('/0 @(.+)@/', $this->gedrec, $match)) {
1427
            $id = $match[1];
1428
        }
1429
        $tag = '';
1430
        if (isset($attrs['ignore'])) {
1431
            $tag .= $attrs['ignore'];
1432
        }
1433
        if (preg_match('/\$(.+)/', $tag, $match)) {
1434
            $tag = $this->vars[$match[1]]['id'];
1435
        }
1436
1437
        $record = Registry::gedcomRecordFactory()->make($id, $this->tree);
1438
        if (empty($attrs['diff']) && !empty($id)) {
1439
            $facts = $record->facts([], true);
1440
            $this->repeats = [];
1441
            $nonfacts      = explode(',', $tag);
1442
            foreach ($facts as $fact) {
1443
                $tag = explode(':', $fact->tag())[1];
1444
1445
                if (!in_array($tag, $nonfacts, true)) {
1446
                    $this->repeats[] = $fact->gedcom();
1447
                }
1448
            }
1449
        } else {
1450
            foreach ($record->facts() as $fact) {
1451
                if (($fact->isPendingAddition() || $fact->isPendingDeletion()) && !str_ends_with($fact->tag(), ':CHAN')) {
1452
                    $this->repeats[] = $fact->gedcom();
1453
                }
1454
            }
1455
        }
1456
1457
        $jdarr = [];
1458
        // Add fact/event for FAM:DIV and for death of spouse
1459
        foreach ($this->repeats as $key => $fact) {
1460
            $jdarr[$key] = 0;
1461
            if (preg_match('/1 FAMS @(.+)@/', $fact, $match)) {
1462
                $famid = $match[1];
1463
                $fam = Registry::familyFactory()->make($match[1], $this->tree);
1464
                if ($fam === null) {
1465
                    continue;
1466
                }
1467
                $dt = $this->getGedcomValue("MARR:DATE", 0, $fam->gedcom());
1468
                if ($dt == "") {
1469
                    $dt = $this->getGedcomValue("ENGA:DATE", 0, $fam->gedcom());
1470
                }
1471
                if ($dt == "" && $this->getGedcomValue("EVEN:TYPE", 0, $fam->gedcom()) == "Sambo") {
1472
                    $dt = $this->getGedcomValue("EVEN:DATE", 0, $fam->gedcom());
1473
                }
1474
                $date = new Date($dt);
1475
                $jd = $date->julianDay();
1476
                $jdarr[$key] = $jd;
1477
                // Divorce
1478
                $dt = $this->getGedcomValue("DIV:DATE", 0, $fam->gedcom());
1479
                if ($dt != "") {
1480
                    $this->repeats[] = "1 DIV\n2 DATE " . $dt . "\n";
1481
                }
1482
                // Separation // Doesn't work!! getGedComValue only reports the first event!! I.e. no match here
1483
                if ($this->getGedcomValue("EVEN:TYPE", 0, $fam->gedcom()) == "Separation") {
1484
                    $dt = $this->getGedcomValue("EVEN:DATE", 0, $fam->gedcom());
1485
                    if ($dt != "") {
1486
                        $this->repeats[] = "1 EVEN\n2 TYPE Separation\n2 DATE " . $dt . "\n";
1487
                    }
1488
                }
1489
                // death of husband / wife
1490
                $husb = $fam->husband();
1491
                $wife = $fam->wife();
1492
                if ($this->getGedcomValue("SEX", 0, $this->gedrec) == "M") {
1493
                    $spouse = $wife;
1494
                } else {
1495
                    $spouse = $husb;
1496
                }
1497
                if ($spouse) {
1498
                    $dt = $this->getGedcomValue("DEAT:DATE", 0, $spouse->gedcom());
1499
                } else {
1500
                    $dt = "";
1501
                }
1502
                if ($dt != "") {
1503
                    $this->repeats[] = "1 _SP_DEAT\n2 DATE " . $dt . "\n2 _O_FAM " . $famid . "\n";
1504
                }
1505
            }
1506
        }
1507
        // Find the dates for the facts that are found
1508
        foreach ($this->repeats as $key => $fact) {
1509
            if (preg_match('/[234] DATE ([^\n]+)/', $fact, $match)) {
1510
                $date = new Date($match[1]);
1511
                $jd = $date->julianDay();
1512
                $jdarr[$key] = $jd;
1513
            }
1514
        }
1515
1516
        // Sort facts in chronological order, if possible
1517
        $m = count($this->repeats) - 1;
1518
        $prevd = 0;
1519
        for ($i = 0; $i <= $m; $i++) { // keep undated events after previous dated event
1520
            if ($jdarr[$i] === 0) {
1521
                $jdarr[$i] = $prevd;
1522
            } else {
1523
                $prevd = $jdarr[$i];
1524
            }
1525
        }
1526
1527
        while ($m > 1) {
1528
            $n = count($this->repeats);
1529
            while ($n > 1) {
1530
                if ($jdarr[$n - 2] > $jdarr[$n - 1] && $jdarr[$n - 1] !== 0) {
1531
                    $s = $this->repeats[$n - 1];
1532
                    $this->repeats[$n - 1] = $this->repeats[$n - 2];
1533
                    $this->repeats[$n - 2] = $s;
1534
                    $s = $jdarr[$n - 1];
1535
                    $jdarr[$n - 1] = $jdarr[$n - 2];
1536
                    $jdarr[$n - 2] = $s;
1537
                }
1538
                $n -= 1;
1539
            }
1540
            $m -= 1;
1541
        }
1542
1543
        // Remove spouse deaths that are too late: after new marriage or own death
1544
        $currfam = "";
1545
        for ($i = 0; $i <= count($this->repeats) - 1; $i++) {
1546
            if (preg_match('/[1234] FAMS @(.+)@/', $this->repeats[$i], $match)) {
1547
                $currfam = $match[1];
1548
            }
1549
            if (preg_match('/_SP_DEAT.*\n2 DATE (.*)\n.*_O_FAM (.+)\n/', $this->repeats[$i], $match)) {
1550
                if ($currfam != $match[2] || $i == count($this->repeats) - 1) {
1551
                    $this->repeats[$i] = "1 _XXX\n";
1552
                } // ignore fact
1553
            }
1554
        }
1555
    }
1556
1557
    /**
1558
     * Handle </facts>
1559
     *
1560
     * @return void
1561
     */
1562
    protected function factsEndHandler(): void
1563
    {
1564
        $this->process_repeats--;
1565
        if ($this->process_repeats > 0) {
1566
            return;
1567
        }
1568
1569
        // Check if there is anything to repeat
1570
        if (count($this->repeats) > 0) {
1571
            $line       = xml_get_current_line_number($this->parser) - 1;
1572
            $lineoffset = 0;
1573
            foreach ($this->repeats_stack as $rep) {
1574
                $lineoffset = $lineoffset + (int) ($rep[1]) - 1;
1575
            }
1576
1577
            //-- read the xml from the file
1578
            $lines = file($this->report);
1579
            if (empty($lines)) {
1580
                error_log(__FILE__ . ":" . __LINE__ . " impossible error!? \n");
1581
                // this can not happen! phpstan forces me to add stupid code
1582
                die("can not happen!!!");
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
1583
            }
1584
            while ($lineoffset + $this->repeat_bytes > 0 && !str_contains($lines[$lineoffset + $this->repeat_bytes], '<Facts ')) {
1585
                $lineoffset--;
1586
            }
1587
            $lineoffset++;
1588
            $reportxml = "<tempdoc>\n";
1589
            $i         = $line + $lineoffset;
1590
            $line_nr   = $this->repeat_bytes + $lineoffset;
1591
            while ($line_nr < $i) {
1592
                $reportxml .= $lines[$line_nr];
1593
                $line_nr++;
1594
            }
1595
            // No need to drag this
1596
            unset($lines);
1597
            $reportxml .= "</tempdoc>\n";
1598
            // Save original values
1599
            $this->parser_stack[] = $this->parser;
1600
            $oldgedrec = $this->gedrec;
1601
            $count = count($this->repeats);
1602
            $i = 0;
1603
            while ($i < $count) {
1604
                if (!isset($this->repeats[$i])) {
1605
                    $i++;
1606
                    continue; // this fact has been removed above, occured too late
1607
                }
1608
                $this->gedrec = $this->repeats[$i];
1609
                $this->fact = '';
1610
                $this->desc = '';
1611
                if (preg_match('/1 (\w+)(.*)/', $this->gedrec, $match)) {
1612
                    $this->fact = $match[1];
1613
                    if ($this->fact === 'EVEN' || $this->fact === 'FACT') {
1614
                        $tmatch = [];
1615
                        if (preg_match('/2 TYPE (.+)/', $this->gedrec, $tmatch)) {
1616
                            $this->type = trim($tmatch[1]);
1617
                        } else {
1618
                            $this->type = ' ';
1619
                        }
1620
                    }
1621
                    $this->desc = trim($match[2]);
1622
                    $this->desc .= self::getCont(2, $this->gedrec);
1623
                }
1624
                $repeat_parser = xml_parser_create();
1625
                $this->parser  = $repeat_parser;
1626
                xml_parser_set_option($repeat_parser, XML_OPTION_CASE_FOLDING, 0);
1627
1628
                xml_set_element_handler(
1629
                    $repeat_parser,
1630
                    function ($parser, string $name, array $attrs): void {
1631
                        $this->startElement($parser, $name, $attrs);
1632
                    },
1633
                    function ($parser, string $name): void {
1634
                        $this->endElement($parser, $name);
1635
                    }
1636
                );
1637
1638
                xml_set_character_data_handler(
1639
                    $repeat_parser,
1640
                    function ($parser, string $data): void {
1641
                        $this->characterData($parser, $data);
1642
                    }
1643
                );
1644
1645
                if (!xml_parse($repeat_parser, $reportxml, true)) {
1646
                    throw new DomainException(sprintf(
1647
                        'FactsEHandler XML error: %s at line %d',
1648
                        xml_error_string(xml_get_error_code($repeat_parser)),
1649
                        xml_get_current_line_number($repeat_parser)
1650
                    ));
1651
                }
1652
                xml_parser_free($repeat_parser);
1653
                $i++;
1654
            }
1655
            // Restore original values
1656
            $this->parser = array_pop($this->parser_stack);
1657
            $this->gedrec = $oldgedrec;
1658
        }
1659
        [$this->repeats, $this->repeat_bytes] = array_pop($this->repeats_stack);
1660
    }
1661
1662
    /**
1663
     * Setting upp or changing variables in the XML
1664
     * The XML variable name and value is stored in $this->vars
1665
     *
1666
     * @param array<string> $attrs an array of key value pairs for the attributes
1667
     *
1668
     * @return void
1669
     */
1670
    protected function setVarStartHandler(array $attrs): void
1671
    {
1672
        if (empty($attrs['name'])) {
1673
            throw new DomainException('REPORT ERROR var: The attribute "name" is missing or not set in the XML file');
1674
        }
1675
1676
        $name  = $attrs['name'];
1677
        $value = $attrs['value'];
1678
        if (isset($attrs['dumpvar'])) {
1679
            $dumpvar = $attrs['dumpvar'];
1680
        } else {
1681
            $dumpvar = "";
1682
        }
1683
        $curr_id = "";
1684
        $match = [];
1685
        if (preg_match('/0 @(.+)@/', $this->gedrec, $match)) {
1686
            $curr_id = $match[1];
1687
        }
1688
        $match = [];
1689
        // Current GEDCOM record strings
1690
        if ($value === '@ID') {
1691
            if (preg_match('/0 @(.+)@/', $this->gedrec, $match)) {
1692
                $value = $match[1];
1693
            }
1694
        } elseif ($value === '@fact') {
1695
            $value = $this->fact;
1696
        } elseif ($value === '@desc') {
1697
            $value = $this->desc;
1698
        } elseif ($value === '@format') {
1699
            if (isset($_GET["format"])) {
1700
                $value = $_GET["format"];
1701
            } else {
1702
                $value = "";
1703
            }
1704
        } elseif ($value === '@generation') {
1705
            $value = (string) $this->generation;
1706
        } elseif ($value === '@base_url') {
1707
            $value = "";
1708
            if (array_key_exists("route", $_GET)) {
1709
                $value = $_GET["route"];
1710
            }
1711
            $i = strpos($value, "%2Freport");
1712
            if ($i === false) {
1713
                $i = strpos($value, "/report");
1714
            }
1715
            if ($i !== false) {
1716
                $value = substr($value, 0, $i);
1717
            }
1718
            $value = "index.php?route=" . $value;
1719
        } elseif ($value === '@relation') {
1720
            if (isset($this->mfrelation[$curr_id]) && $curr_id != "") {
1721
                $value = (string) $this->mfrelation[$curr_id];
1722
            } else {
1723
                $value = "";
1724
            }
1725
        } elseif (preg_match("/@(\w+)/", $value, $match)) {
1726
            $gmatch = [];
1727
            if (preg_match("/\d $match[1] (.+)/", $this->gedrec, $gmatch)) {
1728
                $value = str_replace('@', '', trim($gmatch[1]));
1729
            }
1730
        } elseif (preg_match("/@\\$(\w+)/", $value, $match)) {
1731
            if ($match[1] == "dump" && $this->vars['dval']['id'] > 0) {
1732
                // if ($this->vars[ 'dval' ]['id'] == 1001)
1733
                if ($dumpvar == "gedrec") {
1734
                    error_log("\n---- setvar start  " . date("Y-m-d H:i:s") . " RPG " . __LINE__ . "  " . $name . "  gedcom=\n" . $this->gedrec . "\n", 3, "my-errors.log");
1735
                } elseif ($dumpvar != "") {
1736
                    error_log("var: " . $dumpvar . " = " . $this->vars[$dumpvar]['id'] . "\n", 3, "my-errors.log");
1737
                } else {
1738
                    if (array_key_exists('dval', $this->vars)) {
1739
                        $nnn = $this->vars['dval']['id'];
1740
                    } else {
1741
                        $nnn = 0;
1742
                    }
1743
                    error_log("\n---- setvar start  " . date("Y-m-d H:i:s") . " RPG " . __LINE__ . "  " . $name . "  -----\n", 3, "my-errors.log");
1744
                    foreach ($this->vars as $key => $val) {
1745
                        if ($nnn-- < 0) {
1746
                            error_log($key . "='" . $val['id'] . "'\n", 3, "my-errors.log");
1747
                        }
1748
                    }
1749
                }
1750
            }
1751
            $value = $this->vars[$match[1]]['id'];
1752
            if (isset($this->vars[$value]['id'])) {
1753
                $value = '$' . $this->vars[$match[1]]['id'];
1754
            } else {
1755
                $value = "0";
1756
            }
1757
        }
1758
        if (isset($attrs['trim'])) {
1759
            $value = str_replace($attrs['trim'], '', $value);
1760
        }
1761
        if (preg_match("/\\$(\w+)/", $name, $match)) {
1762
            $name = $this->vars["'" . $match[1] . "'"]['id'];
1763
        }
1764
        $count = preg_match_all("/\\$(\w+)/", $value, $match, PREG_SET_ORDER);
1765
        $i     = 0;
1766
        while ($i < $count) {
1767
            $t     = $this->vars[$match[$i][1]]['id'];
1768
            $value = preg_replace('/\$' . $match[$i][1] . '/', $t, $value, 1);
1769
            $i++;
1770
        }
1771
        if (preg_match('/^I18N::number\((.+)\)$/', $value, $match)) {
1772
            $value = I18N::number((int) $match[1]);
1773
        } elseif (preg_match('/^I18N::translate\(\'(.+)\'\)$/', $value, $match)) {
1774
            $value = I18N::translate($match[1]);
1775
        } elseif (preg_match('/^I18N::translateContext\(\'(.+)\', *\'(.+)\'\)$/', $value, $match)) {
1776
            $value = I18N::translateContext($match[1], $match[2]);
1777
        }
1778
        if (isset($attrs['lcfirst'])) { // set 1st char to lower case
1779
            $value = lcfirst($value);
1780
        }
1781
1782
        // Arithmetic functions
1783
        if (preg_match("/(\d+)\s*([-+*\/])\s*(\d+)/", $value, $match)) {
1784
            // Create an expression language with the functions used by our reports.
1785
            $expression_provider  = new ReportExpressionLanguageProvider();
1786
            $expression_cache     = new NullAdapter();
1787
            $expression_language  = new ExpressionLanguage($expression_cache, [$expression_provider]);
1788
1789
            $value = (string) $expression_language->evaluate($value);
1790
        }
1791
1792
        if (str_contains($value, '@')) {
1793
            $value = '';
1794
        }
1795
        $this->vars[$name]['id'] = $value;
1796
        if ($name == 'title') {
1797
            $this->wt_report->title = $value;
1798
        }
1799
    }
1800
1801
    /**
1802
     * Handle <if>
1803
     *
1804
     * @param array<string> $attrs
1805
     *
1806
     * @return void
1807
     */
1808
    protected function ifStartHandler(array $attrs): void
1809
    {
1810
        if ($this->process_ifs > 0) {
1811
            $this->process_ifs++;
1812
1813
            return;
1814
        }
1815
1816
        $condition = $attrs['condition'];
1817
        $condition = $this->substituteVars($condition, true);
1818
        $condition = str_replace([
1819
            ' LT ',
1820
            ' GT ',
1821
        ], [
1822
            '<',
1823
            '>',
1824
        ], $condition);
1825
        // Replace the first occurrence only once of @fact:DATE or in any other combinations to the current fact, such as BIRT
1826
        $condition = str_replace('@fact:', $this->fact . ':', $condition);
1827
        $match     = [];
1828
        $count     = preg_match_all("/@([\w:.]+)/", $condition, $match, PREG_SET_ORDER);
1829
        $i         = 0;
1830
        while ($i < $count) {
1831
            $id    = $match[$i][1];
1832
            $value = '""';
1833
            if ($id === 'ID') {
1834
                if (preg_match('/0 @(.+)@/', $this->gedrec, $match)) {
1835
                    $value = "'" . $match[1] . "'";
1836
                }
1837
            } elseif ($id === 'fact') {
1838
                $value = '"' . $this->fact . '"';
1839
            } elseif ($id === 'desc') {
1840
                $value = '"' . addslashes($this->desc) . '"';
1841
            } elseif ($id === 'generation') {
1842
                $value = '"' . $this->generation . '"';
1843
            } else {
1844
                $level = (int) explode(' ', trim($this->gedrec))[0];
1845
                if ($level === 0) {
1846
                    $level++;
1847
                }
1848
                $value = $this->getGedcomValue($id, $level, $this->gedrec);
1849
                if (empty($value)) {
1850
                    $level++;
1851
                    $value = $this->getGedcomValue($id, $level, $this->gedrec);
1852
                }
1853
                $value = preg_replace('/^@(' . Gedcom::REGEX_XREF . ')@$/', '$1', $value);
1854
                $value = '"' . addslashes($value) . '"';
1855
            }
1856
            $condition = str_replace("@$id", $value, $condition);
1857
            $i++;
1858
        }
1859
1860
        // Create an expression language with the functions used by our reports.
1861
        $expression_provider  = new ReportExpressionLanguageProvider();
1862
        $expression_cache     = new NullAdapter();
1863
        $expression_language  = new ExpressionLanguage($expression_cache, [$expression_provider]);
1864
1865
        $ret = $expression_language->evaluate($condition);
1866
1867
        if (!$ret) {
1868
            $this->process_ifs++;
1869
        }
1870
    }
1871
1872
    /**
1873
     * Handle </if>
1874
     *
1875
     * @return void
1876
     */
1877
    protected function ifEndHandler(): void
1878
    {
1879
        if ($this->process_ifs > 0) {
1880
            $this->process_ifs--;
1881
        }
1882
    }
1883
1884
    /**
1885
     * Handle <footnote>
1886
     * Collect the Footnote links
1887
     * GEDCOM Records that are protected by Privacy setting will be ignored
1888
     *
1889
     * @param array<string> $attrs
1890
     *
1891
     * @return void
1892
     */
1893
    protected function footnoteStartHandler(array $attrs): void
1894
    {
1895
        $id = '';
1896
        if (preg_match('/[0-9] (.+) @(.+)@/', $this->gedrec, $match)) {
1897
            $id = $match[2];
1898
        }
1899
        $record = Registry::gedcomRecordFactory()->make($id, $this->tree);
1900
        if ($record && $record->canShow()) {
1901
            $this->print_data_stack[] = $this->print_data;
1902
            $this->print_data         = true;
1903
            $style                    = '';
1904
            if (!empty($attrs['style'])) {
1905
                $style = $attrs['style'];
1906
            }
1907
            $this->footnote_element = $this->current_element;
1908
            $this->current_element  = $this->report_root->createFootnote($style);
1909
        } else {
1910
            $this->print_data       = false;
1911
            $this->process_footnote = false;
1912
        }
1913
    }
1914
1915
    /**
1916
     * Handle </footnote>
1917
     * Print the collected Footnote data
1918
     *
1919
     * @return void
1920
     */
1921
    protected function footnoteEndHandler(): void
1922
    {
1923
        if ($this->process_footnote) {
1924
            $this->print_data = array_pop($this->print_data_stack);
1925
            $temp             = trim($this->current_element->getValue());
1926
            if (strlen($temp) > 3) {
1927
                $this->wt_report->addElement($this->current_element);
1928
            }
1929
            $this->current_element = $this->footnote_element;
1930
        } else {
1931
            $this->process_footnote = true;
1932
        }
1933
    }
1934
1935
    /**
1936
     * Handle <footnoteTexts />
1937
     *
1938
     * @return void
1939
     */
1940
    protected function footnoteTextsStartHandler(): void
1941
    {
1942
        $temp = 'footnotetexts';
1943
        $this->wt_report->addElement($temp);
1944
    }
1945
1946
    /**
1947
     * XML element Forced line break handler - HTML code
1948
     *
1949
     * @return void
1950
     */
1951
    protected function brStartHandler(): void
1952
    {
1953
        if ($this->print_data && $this->process_gedcoms === 0) {
1954
            $this->current_element->addText('<br>');
1955
        }
1956
    }
1957
1958
    /**
1959
     * Handle <sp />
1960
     * Forced space
1961
     *
1962
     * @return void
1963
     */
1964
    protected function spStartHandler(): void
1965
    {
1966
        if ($this->print_data && $this->process_gedcoms === 0) {
1967
            $this->current_element->addText(' ');
1968
        }
1969
    }
1970
1971
    /**
1972
     * Handle <highlightedImage />
1973
     *
1974
     * @param array<string> $attrs
1975
     *
1976
     * @return void
1977
     */
1978
    protected function highlightedImageStartHandler(array $attrs): void
1979
    {
1980
        $id = '';
1981
        if (preg_match('/0 @(.+)@/', $this->gedrec, $match)) {
1982
            $id = $match[1];
1983
        }
1984
1985
        // Position the top corner of this box on the page
1986
        $top = (float) ($attrs['top'] ?? ReportBaseElement::CURRENT_POSITION);
1987
1988
        // Position the left corner of this box on the page
1989
        $left = (float) ($attrs['left'] ?? ReportBaseElement::CURRENT_POSITION);
1990
1991
        // string Align the image in left, center, right (or empty to use x/y position).
1992
        $align = $attrs['align'] ?? '';
1993
1994
        // string Next Line should be T:next to the image, N:next line
1995
        $ln = $attrs['ln'] ?? 'T';
1996
1997
        // Width, height (or both).
1998
        $width  = (float) ($attrs['width'] ?? 0.0);
1999
        $height = (float) ($attrs['height'] ?? 0.0);
2000
2001
        $person     = Registry::individualFactory()->make($id, $this->tree);
2002
        $media_file = $person->findHighlightedMediaFile();
2003
2004
        if ($media_file instanceof MediaFile && $media_file->fileExists()) {
2005
            $image      = imagecreatefromstring($media_file->fileContents());
2006
            $attributes = [imagesx($image), imagesy($image)];
2007
2008
            if ($width > 0 && $height == 0) {
2009
                $perc   = $width / $attributes[0];
2010
                $height = round($attributes[1] * $perc);
2011
            } elseif ($height > 0 && $width == 0) {
2012
                $perc  = $height / $attributes[1];
2013
                $width = round($attributes[0] * $perc);
2014
            } else {
2015
                $width  = (float) $attributes[0];
2016
                $height = (float) $attributes[1];
2017
            }
2018
            $image = $this->report_root->createImageFromObject($media_file, $left, $top, $width, $height, $align, $ln);
2019
            $this->wt_report->addElement($image);
2020
        }
2021
    }
2022
2023
    /**
2024
     * Handle <image/>
2025
     *
2026
     * @param array<string> $attrs
2027
     *
2028
     * @return void
2029
     */
2030
    protected function imageStartHandler(array $attrs): void
2031
    {
2032
        // Position the top corner of this box on the page. the default is the current position
2033
        $top = (float) ($attrs['top'] ?? ReportBaseElement::CURRENT_POSITION);
2034
2035
        // mixed Position the left corner of this box on the page. the default is the current position
2036
        $left = (float) ($attrs['left'] ?? ReportBaseElement::CURRENT_POSITION);
2037
2038
        // string Align the image in left, center, right (or empty to use x/y position).
2039
        $align = $attrs['align'] ?? '';
2040
2041
        // string Next Line should be T:next to the image, N:next line
2042
        $ln = $attrs['ln'] ?? 'T';
2043
2044
        // Width, height (or both).
2045
        $width  = (float) ($attrs['width'] ?? 0.0);
2046
        $height = (float) ($attrs['height'] ?? 0.0);
2047
2048
        $file = $attrs['file'] ?? '';
2049
2050
        if ($file === '@FILE') {
2051
            $match = [];
2052
            if (preg_match("/\d OBJE @(.+)@/", $this->gedrec, $match)) {
2053
                $mediaobject = Registry::mediaFactory()->make($match[1], $this->tree);
2054
                $media_file  = $mediaobject->firstImageFile();
2055
2056
                if ($media_file instanceof MediaFile && $media_file->fileExists()) {
2057
                    $image      = imagecreatefromstring($media_file->fileContents());
2058
                    $attributes = [imagesx($image), imagesy($image)];
2059
2060
                    if ($width > 0 && $height == 0) {
2061
                        $perc   = $width / $attributes[0];
2062
                        $height = round($attributes[1] * $perc);
2063
                    } elseif ($height > 0 && $width == 0) {
2064
                        $perc  = $height / $attributes[1];
2065
                        $width = round($attributes[0] * $perc);
2066
                    } else {
2067
                        $width  = (float) $attributes[0];
2068
                        $height = (float) $attributes[1];
2069
                    }
2070
                    $image = $this->report_root->createImageFromObject($media_file, $left, $top, $width, $height, $align, $ln);
2071
                    $this->wt_report->addElement($image);
2072
                }
2073
            }
2074
        } else {
2075
            if (file_exists($file) && preg_match('/(jpg|jpeg|png|gif)$/i', $file)) {
2076
                $size = getimagesize($file);
2077
                if ($width > 0 && $height == 0) {
2078
                    $perc   = $width / $size[0];
2079
                    $height = round($size[1] * $perc);
2080
                } elseif ($height > 0 && $width == 0) {
2081
                    $perc  = $height / $size[1];
2082
                    $width = round($size[0] * $perc);
2083
                } else {
2084
                    $width  = $size[0];
2085
                    $height = $size[1];
2086
                }
2087
                $image = $this->report_root->createImage($file, $left, $top, $width, $height, $align, $ln);
2088
                $this->wt_report->addElement($image);
2089
            }
2090
        }
2091
    }
2092
2093
    /**
2094
     * Handle <line>
2095
     *
2096
     * @param array<string> $attrs
2097
     *
2098
     * @return void
2099
     */
2100
    protected function lineStartHandler(array $attrs): void
2101
    {
2102
        // Start horizontal position, current position (default)
2103
        $x1 = ReportBaseElement::CURRENT_POSITION;
2104
        if (isset($attrs['x1'])) {
2105
            if ($attrs['x1'] === '0') {
2106
                $x1 = 0;
2107
            } elseif ($attrs['x1'] === '.') {
2108
                $x1 = ReportBaseElement::CURRENT_POSITION;
2109
            } elseif (!empty($attrs['x1'])) {
2110
                $x1 = (float) $attrs['x1'];
2111
            }
2112
        }
2113
        // Start vertical position, current position (default)
2114
        $y1 = ReportBaseElement::CURRENT_POSITION;
2115
        if (isset($attrs['y1'])) {
2116
            if ($attrs['y1'] === '0') {
2117
                $y1 = 0;
2118
            } elseif ($attrs['y1'] === '.') {
2119
                $y1 = ReportBaseElement::CURRENT_POSITION;
2120
            } elseif (!empty($attrs['y1'])) {
2121
                $y1 = (float) $attrs['y1'];
2122
            }
2123
        }
2124
        // End horizontal position, maximum width (default)
2125
        $x2 = ReportBaseElement::CURRENT_POSITION;
2126
        if (isset($attrs['x2'])) {
2127
            if ($attrs['x2'] === '0') {
2128
                $x2 = 0;
2129
            } elseif ($attrs['x2'] === '.') {
2130
                $x2 = ReportBaseElement::CURRENT_POSITION;
2131
            } elseif (!empty($attrs['x2'])) {
2132
                $x2 = (float) $attrs['x2'];
2133
            }
2134
        }
2135
        // End vertical position
2136
        $y2 = ReportBaseElement::CURRENT_POSITION;
2137
        if (isset($attrs['y2'])) {
2138
            if ($attrs['y2'] === '0') {
2139
                $y2 = 0;
2140
            } elseif ($attrs['y2'] === '.') {
2141
                $y2 = ReportBaseElement::CURRENT_POSITION;
2142
            } elseif (!empty($attrs['y2'])) {
2143
                $y2 = (float) $attrs['y2'];
2144
            }
2145
        }
2146
2147
        $line = $this->report_root->createLine($x1, $y1, $x2, $y2);
2148
        $this->wt_report->addElement($line);
2149
    }
2150
2151
    /**
2152
     * Handle <list>
2153
     *
2154
     * @param array<string> $attrs
2155
     *
2156
     * @return void
2157
     */
2158
    protected function listStartHandler(array $attrs): void
2159
    {
2160
        $this->process_repeats++;
2161
        if ($this->process_repeats > 1) {
2162
            return;
2163
        }
2164
2165
        $match = [];
2166
        if (isset($attrs['sortby'])) {
2167
            $sortby = $attrs['sortby'];
2168
            if (preg_match("/\\$(\w+)/", $sortby, $match)) {
2169
                $sortby = $this->vars[$match[1]]['id'];
2170
                $sortby = trim($sortby);
2171
            }
2172
        } else {
2173
            $sortby = 'NAME';
2174
        }
2175
2176
        $listname = $attrs['list'] ?? 'individual';
2177
2178
        // Some filters/sorts can be applied using SQL, while others require PHP
2179
        switch ($listname) {
2180
            case 'pending':
2181
                $this->list = DB::table('change')
2182
                    ->whereIn('change_id', function (Builder $query): void {
2183
                        $query->select([new Expression('MAX(change_id)')])
2184
                            ->from('change')
2185
                            ->where('gedcom_id', '=', $this->tree->id())
2186
                            ->where('status', '=', 'pending')
2187
                            ->groupBy(['xref']);
2188
                    })
2189
                    ->get()
2190
                    ->map(fn (object $row): ?GedcomRecord => Registry::gedcomRecordFactory()->make($row->xref, $this->tree, $row->new_gedcom ?: $row->old_gedcom))
2191
                    ->filter()
2192
                    ->all();
2193
                break;
2194
2195
            case 'individual':
2196
                $query = DB::table('individuals')
2197
                    ->where('i_file', '=', $this->tree->id())
2198
                    ->select(['i_id AS xref', 'i_gedcom AS gedcom'])
2199
                    ->distinct();
2200
2201
                foreach ($attrs as $attr => $value) {
2202
                    if (str_starts_with($attr, 'filter') && $value !== '') {
2203
                        $value = $this->substituteVars($value, false);
2204
                        // Convert the various filters into SQL
2205
                        if (preg_match('/^(\w+):DATE (LTE|GTE) (.+)$/', $value, $match)) {
2206
                            $query->join('dates AS ' . $attr, static function (JoinClause $join) use ($attr): void {
2207
                                $join
2208
                                    ->on($attr . '.d_gid', '=', 'i_id')
2209
                                    ->on($attr . '.d_file', '=', 'i_file');
2210
                            });
2211
2212
                            $query->where($attr . '.d_fact', '=', $match[1]);
2213
2214
                            $date = new Date($match[3]);
2215
2216
                            if ($match[2] === 'LTE') {
2217
                                $query->where($attr . '.d_julianday2', '<=', $date->maximumJulianDay());
2218
                            } else {
2219
                                $query->where($attr . '.d_julianday1', '>=', $date->minimumJulianDay());
2220
                            }
2221
2222
                            // This filter has been fully processed
2223
                            unset($attrs[$attr]);
2224
                        } elseif (preg_match('/^NAME CONTAINS (.+)$/', $value, $match)) {
2225
                            $query->join('name AS ' . $attr, static function (JoinClause $join) use ($attr): void {
2226
                                $join
2227
                                    ->on($attr . '.n_id', '=', 'i_id')
2228
                                    ->on($attr . '.n_file', '=', 'i_file');
2229
                            });
2230
                            // Search the DB only if there is any name supplied
2231
                            $names = explode(' ', $match[1]);
2232
                            foreach ($names as $name) {
2233
                                $query->where($attr . '.n_full', 'LIKE', '%' . addcslashes($name, '\\%_') . '%');
2234
                            }
2235
2236
                            // This filter has been fully processed
2237
                            unset($attrs[$attr]);
2238
                        } elseif (preg_match('/^LIKE \/(.+)\/$/', $value, $match)) {
2239
                            // Convert newline escape sequences to actual new lines
2240
                            $match[1] = str_replace('\n', "\n", $match[1]);
2241
2242
                            $query->where('i_gedcom', 'LIKE', $match[1]);
2243
2244
                            // This filter has been fully processed
2245
                            unset($attrs[$attr]);
2246
                        } elseif (preg_match('/^(?:\w*):PLAC CONTAINS (.+)$/', $value, $match)) {
2247
                            // Don't unset this filter. This is just initial filtering for performance
2248
                            $query
2249
                                ->join('placelinks AS ' . $attr . 'a', static function (JoinClause $join) use ($attr): void {
2250
                                    $join
2251
                                        ->on($attr . 'a.pl_file', '=', 'i_file')
2252
                                        ->on($attr . 'a.pl_gid', '=', 'i_id');
2253
                                })
2254
                                ->join('places AS ' . $attr . 'b', static function (JoinClause $join) use ($attr): void {
2255
                                    $join
2256
                                        ->on($attr . 'b.p_file', '=', $attr . 'a.pl_file')
2257
                                        ->on($attr . 'b.p_id', '=', $attr . 'a.pl_p_id');
2258
                                })
2259
                                ->where($attr . 'b.p_place', 'LIKE', '%' . addcslashes($match[1], '\\%_') . '%');
2260
                        } elseif (preg_match('/^(\w*):(\w+) CONTAINS (.+)$/', $value, $match)) {
2261
                            // Don't unset this filter. This is just initial filtering for performance
2262
                            $match[3] = strtr($match[3], ['\\' => '\\\\', '%'  => '\\%', '_'  => '\\_', ' ' => '%']);
2263
                            $like = "%\n1 " . $match[1] . "%\n2 " . $match[2] . '%' . $match[3] . '%';
2264
                            $query->where('i_gedcom', 'LIKE', $like);
2265
                        } elseif (preg_match('/^(\w+) CONTAINS (.*)$/', $value, $match)) {
2266
                            // Don't unset this filter. This is just initial filtering for performance
2267
                            $match[2] = strtr($match[2], ['\\' => '\\\\', '%'  => '\\%', '_'  => '\\_', ' ' => '%']);
2268
                            $like = "%\n1 " . $match[1] . '%' . $match[2] . '%';
2269
                            $query->where('i_gedcom', 'LIKE', $like);
2270
                        }
2271
                    }
2272
                }
2273
2274
                $this->list = [];
2275
2276
                foreach ($query->get() as $row) {
2277
                    $this->list[$row->xref] = Registry::individualFactory()->make($row->xref, $this->tree, $row->gedcom);
2278
                }
2279
                break;
2280
2281
            case 'family':
2282
                $query = DB::table('families')
2283
                    ->where('f_file', '=', $this->tree->id())
2284
                    ->select(['f_id AS xref', 'f_gedcom AS gedcom'])
2285
                    ->distinct();
2286
2287
                foreach ($attrs as $attr => $value) {
2288
                    if (str_starts_with($attr, 'filter') && $value !== '') {
2289
                        $value = $this->substituteVars($value, false);
2290
                        // Convert the various filters into SQL
2291
                        if (preg_match('/^(\w+):DATE (LTE|GTE) (.+)$/', $value, $match)) {
2292
                            $query->join('dates AS ' . $attr, static function (JoinClause $join) use ($attr): void {
2293
                                $join
2294
                                    ->on($attr . '.d_gid', '=', 'f_id')
2295
                                    ->on($attr . '.d_file', '=', 'f_file');
2296
                            });
2297
2298
                            $query->where($attr . '.d_fact', '=', $match[1]);
2299
2300
                            $date = new Date($match[3]);
2301
2302
                            if ($match[2] === 'LTE') {
2303
                                $query->where($attr . '.d_julianday2', '<=', $date->maximumJulianDay());
2304
                            } else {
2305
                                $query->where($attr . '.d_julianday1', '>=', $date->minimumJulianDay());
2306
                            }
2307
2308
                            // This filter has been fully processed
2309
                            unset($attrs[$attr]);
2310
                        } elseif (preg_match('/^LIKE \/(.+)\/$/', $value, $match)) {
2311
                            // Convert newline escape sequences to actual new lines
2312
                            $match[1] = str_replace('\n', "\n", $match[1]);
2313
2314
                            $query->where('f_gedcom', 'LIKE', $match[1]);
2315
2316
                            // This filter has been fully processed
2317
                            unset($attrs[$attr]);
2318
                        } elseif (preg_match('/^NAME CONTAINS (.*)$/', $value, $match)) {
2319
                            if ($sortby === 'NAME' || $match[1] !== '') {
2320
                                $query->join('name AS ' . $attr, static function (JoinClause $join) use ($attr): void {
2321
                                    $join
2322
                                        ->on($attr . '.n_file', '=', 'f_file')
2323
                                        ->where(static function (Builder $query): void {
2324
                                            $query
2325
                                                ->whereColumn('n_id', '=', 'f_husb')
2326
                                                ->orWhereColumn('n_id', '=', 'f_wife');
2327
                                        });
2328
                                });
2329
                                // Search the DB only if there is any name supplied
2330
                                if ($match[1] != '') {
2331
                                    $names = explode(' ', $match[1]);
2332
                                    foreach ($names as $name) {
2333
                                        $query->where($attr . '.n_full', 'LIKE', '%' . addcslashes($name, '\\%_') . '%');
2334
                                    }
2335
                                }
2336
                            }
2337
2338
                            // This filter has been fully processed
2339
                            unset($attrs[$attr]);
2340
                        } elseif (preg_match('/^(?:\w*):PLAC CONTAINS (.+)$/', $value, $match)) {
2341
                            // Don't unset this filter. This is just initial filtering for performance
2342
                            $query
2343
                                ->join('placelinks AS ' . $attr . 'a', static function (JoinClause $join) use ($attr): void {
2344
                                    $join
2345
                                        ->on($attr . 'a.pl_file', '=', 'f_file')
2346
                                        ->on($attr . 'a.pl_gid', '=', 'f_id');
2347
                                })
2348
                                ->join('places AS ' . $attr . 'b', static function (JoinClause $join) use ($attr): void {
2349
                                    $join
2350
                                        ->on($attr . 'b.p_file', '=', $attr . 'a.pl_file')
2351
                                        ->on($attr . 'b.p_id', '=', $attr . 'a.pl_p_id');
2352
                                })
2353
                                ->where($attr . 'b.p_place', 'LIKE', '%' . addcslashes($match[1], '\\%_') . '%');
2354
                        } elseif (preg_match('/^(\w*):(\w+) CONTAINS (.+)$/', $value, $match)) {
2355
                            // Don't unset this filter. This is just initial filtering for performance
2356
                            $match[3] = strtr($match[3], ['\\' => '\\\\', '%'  => '\\%', '_'  => '\\_', ' ' => '%']);
2357
                            $like = "%\n1 " . $match[1] . "%\n2 " . $match[2] . '%' . $match[3] . '%';
2358
                            $query->where('f_gedcom', 'LIKE', $like);
2359
                        } elseif (preg_match('/^(\w+) CONTAINS (.+)$/', $value, $match)) {
2360
                            // Don't unset this filter. This is just initial filtering for performance
2361
                            $match[2] = strtr($match[2], ['\\' => '\\\\', '%'  => '\\%', '_'  => '\\_', ' ' => '%']);
2362
                            $like = "%\n1 " . $match[1] . '%' . $match[2] . '%';
2363
                            $query->where('f_gedcom', 'LIKE', $like);
2364
                        }
2365
                    }
2366
                }
2367
2368
                $this->list = [];
2369
2370
                foreach ($query->get() as $row) {
2371
                    $this->list[$row->xref] = Registry::familyFactory()->make($row->xref, $this->tree, $row->gedcom);
2372
                }
2373
                break;
2374
2375
            default:
2376
                throw new DomainException('Invalid list name: ' . $listname);
2377
        }
2378
2379
        $filters  = [];
2380
        $filters2 = [];
2381
        if (isset($attrs['filter1']) && count($this->list) > 0) {
2382
            foreach ($attrs as $key => $value) {
2383
                if (preg_match("/filter(\d)/", $key)) {
2384
                    $condition = $value;
2385
                    if (preg_match("/@(\w+)/", $condition, $match)) {
2386
                        $id    = $match[1];
2387
                        $value = "''";
2388
                        if ($id === 'ID') {
2389
                            if (preg_match('/0 @(.+)@/', $this->gedrec, $match)) {
2390
                                $value = "'" . $match[1] . "'";
2391
                            }
2392
                        } elseif ($id === 'fact') {
2393
                            $value = "'" . $this->fact . "'";
2394
                        } elseif ($id === 'desc') {
2395
                            $value = "'" . $this->desc . "'";
2396
                        } else {
2397
                            if (preg_match("/\d $id (.+)/", $this->gedrec, $match)) {
2398
                                $value = "'" . str_replace('@', '', trim($match[1])) . "'";
2399
                            }
2400
                        }
2401
                        $condition = preg_replace("/@$id/", $value, $condition);
2402
                    }
2403
                    //-- handle regular expressions
2404
                    if (preg_match("/([A-Z:]+)\s*([^\s]+)\s*(.+)/", $condition, $match)) {
2405
                        $tag  = trim($match[1]);
2406
                        $expr = trim($match[2]);
2407
                        $val  = trim($match[3]);
2408
                        if (preg_match("/\\$(\w+)/", $val, $match)) {
2409
                            $val = $this->vars[$match[1]]['id'];
2410
                            $val = trim($val);
2411
                        }
2412
                        if ($val !== '') {
2413
                            $searchstr = '';
2414
                            $tags      = explode(':', $tag);
2415
                            //-- only limit to a level number if we are specifically looking at a level
2416
                            if (count($tags) > 1) {
2417
                                $level = 1;
2418
                                $t = 'XXXX';
2419
                                foreach ($tags as $t) {
2420
                                    if (!empty($searchstr)) {
2421
                                        $searchstr .= "[^\n]*(\n[2-9][^\n]*)*\n";
2422
                                    }
2423
                                    //-- search for both EMAIL and _EMAIL... silly double gedcom standard
2424
                                    if ($t === 'EMAIL' || $t === '_EMAIL') {
2425
                                        $t = '_?EMAIL';
2426
                                    }
2427
                                    $searchstr .= $level . ' ' . $t;
2428
                                    $level++;
2429
                                }
2430
                            } else {
2431
                                if ($tag === 'EMAIL' || $tag === '_EMAIL') {
2432
                                    $tag = '_?EMAIL';
2433
                                }
2434
                                $t         = $tag;
2435
                                $searchstr = '1 ' . $tag;
2436
                            }
2437
                            switch ($expr) {
2438
                                case 'CONTAINS':
2439
                                    if ($t === 'PLAC') {
2440
                                        $searchstr .= "[^\n]*[, ]*" . $val;
2441
                                    } else {
2442
                                        $searchstr .= "[^\n]*" . $val;
2443
                                    }
2444
                                    $filters[] = $searchstr;
2445
                                    break;
2446
                                default:
2447
                                    $filters2[] = [
2448
                                        'tag'  => $tag,
2449
                                        'expr' => $expr,
2450
                                        'val'  => $val,
2451
                                    ];
2452
                                    break;
2453
                            }
2454
                        }
2455
                    }
2456
                }
2457
            }
2458
        }
2459
        //-- apply other filters to the list that could not be added to the search string
2460
        if ($filters !== []) {
2461
            foreach ($this->list as $key => $record) {
2462
                foreach ($filters as $filter) {
2463
                    if (!preg_match('/' . $filter . '/i', $record->privatizeGedcom(Auth::accessLevel($this->tree)))) {
2464
                        unset($this->list[$key]);
2465
                        break;
2466
                    }
2467
                }
2468
            }
2469
        }
2470
        if ($filters2 !== []) {
2471
            $mylist = [];
2472
            foreach ($this->list as $indi) {
2473
                $key  = $indi->xref();
2474
                $grec = $indi->privatizeGedcom(Auth::accessLevel($this->tree));
2475
                $keep = true;
2476
                foreach ($filters2 as $filter) {
2477
                    if ($keep) {
2478
                        $tag  = $filter['tag'];
2479
                        $expr = $filter['expr'];
2480
                        $val  = $filter['val'];
2481
                        if ($val === "''") {
2482
                            $val = '';
2483
                        }
2484
                        $tags = explode(':', $tag);
2485
                        $t    = end($tags);
2486
                        $v    = $this->getGedcomValue($tag, 1, $grec);
2487
                        //-- check for EMAIL and _EMAIL (silly double gedcom standard :P)
2488
                        if ($t === 'EMAIL' && empty($v)) {
2489
                            $tag  = str_replace('EMAIL', '_EMAIL', $tag);
2490
                            $tags = explode(':', $tag);
2491
                            $t    = end($tags);
2492
                            $v    = self::getSubRecord(1, $tag, $grec);
2493
                        }
2494
2495
                        switch ($expr) {
2496
                            case 'GTE':
2497
                                if ($t === 'DATE') {
2498
                                    $date1 = new Date($v);
2499
                                    $date2 = new Date($val);
2500
                                    $keep  = (Date::compare($date1, $date2) >= 0);
2501
                                } elseif ($val >= $v) {
2502
                                    $keep = true;
2503
                                }
2504
                                break;
2505
                            case 'LTE':
2506
                                if ($t === 'DATE') {
2507
                                    $date1 = new Date($v);
2508
                                    $date2 = new Date($val);
2509
                                    $keep  = (Date::compare($date1, $date2) <= 0);
2510
                                } elseif ($val >= $v) {
2511
                                    $keep = true;
2512
                                }
2513
                                break;
2514
                            default:
2515
                                if ($v == $val) {
2516
                                    $keep = true;
2517
                                } else {
2518
                                    $keep = false;
2519
                                }
2520
                                break;
2521
                        }
2522
                    }
2523
                }
2524
                if ($keep) {
2525
                    $mylist[$key] = $indi;
2526
                }
2527
            }
2528
            $this->list = $mylist;
2529
        }
2530
2531
        switch ($sortby) {
2532
            case 'NAME':
2533
                uasort($this->list, GedcomRecord::nameComparator());
2534
                break;
2535
            case 'CHAN':
2536
                uasort($this->list, GedcomRecord::lastChangeComparator());
2537
                break;
2538
            case 'BIRT:DATE':
2539
                uasort($this->list, Individual::birthDateComparator());
2540
                break;
2541
            case 'DEAT:DATE':
2542
                uasort($this->list, Individual::deathDateComparator());
2543
                break;
2544
            case 'MARR:DATE':
2545
                uasort($this->list, Family::marriageDateComparator());
2546
                break;
2547
            default:
2548
                // unsorted or already sorted by SQL
2549
                break;
2550
        }
2551
2552
        $this->repeats_stack[] = [$this->repeats, $this->repeat_bytes];
2553
        $this->repeat_bytes    = xml_get_current_line_number($this->parser) + 1;
2554
    }
2555
2556
    /**
2557
     * Handle </list>
2558
     *
2559
     * @return void
2560
     */
2561
    protected function listEndHandler(): void
2562
    {
2563
        $this->process_repeats--;
2564
        if ($this->process_repeats > 0) {
2565
            return;
2566
        }
2567
2568
        // Check if there is any list
2569
        if (count($this->list) > 0) {
2570
            $lineoffset = 0;
2571
            foreach ($this->repeats_stack as $rep) {
2572
                $lineoffset = $lineoffset + (int) ($rep[1]) - 1;
2573
            }
2574
            //-- read the xml from the file
2575
            $lines = file($this->report);
2576
            if (empty($lines)) {
2577
                error_log(__FILE__ . ":" . __LINE__ . " impossible error!? \n");
2578
                // this can not happen! phpstan forces me to add stupid code
2579
                die("can not happen!!!");
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
2580
            }
2581
            while ((!str_contains($lines[$lineoffset + $this->repeat_bytes], '<List')) && (($lineoffset + $this->repeat_bytes) > 0)) {
2582
                $lineoffset--;
2583
            }
2584
            $lineoffset++;
2585
            $reportxml = "<tempdoc>\n";
2586
            $line_nr   = $lineoffset + $this->repeat_bytes;
2587
            // List Level counter
2588
            $count = 1;
2589
            while (0 < $count) {
2590
                if (str_contains($lines[$line_nr], '<List')) {
2591
                    $count++;
2592
                } elseif (str_contains($lines[$line_nr], '</List')) {
2593
                    $count--;
2594
                }
2595
                if (0 < $count) {
2596
                    $reportxml .= $lines[$line_nr];
2597
                }
2598
                $line_nr++;
2599
            }
2600
            // No need to drag this
2601
            unset($lines);
2602
            $reportxml .= '</tempdoc>';
2603
            // Save original values
2604
            $this->parser_stack[] = $this->parser;
2605
            $oldgedrec            = $this->gedrec;
2606
2607
            $this->list_total   = count($this->list);
2608
            $this->list_private = 0;
2609
            foreach ($this->list as $record) {
2610
                if ($record->canShow()) {
2611
                    $this->gedrec = $record->privatizeGedcom(Auth::accessLevel($record->tree()));
2612
                    //-- start the sax parser
2613
                    $repeat_parser = xml_parser_create();
2614
                    $this->parser  = $repeat_parser;
2615
                    xml_parser_set_option($repeat_parser, XML_OPTION_CASE_FOLDING, 0);
2616
2617
                    xml_set_element_handler(
2618
                        $repeat_parser,
2619
                        function ($parser, string $name, array $attrs): void {
2620
                            $this->startElement($parser, $name, $attrs);
2621
                        },
2622
                        function ($parser, string $name): void {
2623
                            $this->endElement($parser, $name);
2624
                        }
2625
                    );
2626
2627
                    xml_set_character_data_handler(
2628
                        $repeat_parser,
2629
                        function ($parser, string $data): void {
2630
                            $this->characterData($parser, $data);
2631
                        }
2632
                    );
2633
2634
                    if (!xml_parse($repeat_parser, $reportxml, true)) {
2635
                        throw new DomainException(sprintf(
2636
                            'ListEHandler XML error: %s at line %d',
2637
                            xml_error_string(xml_get_error_code($repeat_parser)),
2638
                            xml_get_current_line_number($repeat_parser)
2639
                        ));
2640
                    }
2641
                    xml_parser_free($repeat_parser);
2642
                } else {
2643
                    $this->list_private++;
2644
                }
2645
            }
2646
            $this->list   = [];
2647
            $this->parser = array_pop($this->parser_stack);
2648
            $this->gedrec = $oldgedrec;
2649
        }
2650
        [$this->repeats, $this->repeat_bytes] = array_pop($this->repeats_stack);
2651
    }
2652
2653
    /**
2654
     * Handle <listTotal>
2655
     * Prints the total number of records in a list
2656
     * The total number is collected from <list> and <relatives>
2657
     *
2658
     * @return void
2659
     */
2660
    protected function listTotalStartHandler(): void
2661
    {
2662
        if ($this->list_private == 0) {
2663
            $this->current_element->addText((string) $this->list_total);
2664
        } else {
2665
            $this->current_element->addText(($this->list_total - $this->list_private) . ' / ' . $this->list_total);
2666
        }
2667
    }
2668
2669
    /**
2670
     * Handle <relatives>
2671
     *
2672
     * @param array<string> $attrs
2673
     *
2674
     * @return void
2675
     */
2676
    protected function relativesStartHandler(array $attrs): void
2677
    {
2678
        $this->process_repeats++;
2679
        if ($this->process_repeats > 1) {
2680
            return;
2681
        }
2682
2683
        $sortby = $attrs['sortby'] ?? 'NAME';
2684
2685
        $match = [];
2686
        if (preg_match("/\\$(\w+)/", $sortby, $match)) {
2687
            $sortby = $this->vars[$match[1]]['id'];
2688
            $sortby = trim($sortby);
2689
        }
2690
2691
        $maxgen = -1;
2692
        if (isset($attrs['maxgen'])) {
2693
            $maxgen = (int) $attrs['maxgen'];
2694
        }
2695
2696
        $group = $attrs['group'] ?? 'child-family';
2697
2698
        if (preg_match("/\\$(\w+)/", $group, $match)) {
2699
            $group = $this->vars[$match[1]]['id'];
2700
            $group = trim($group);
2701
        }
2702
2703
        $id = $attrs['id'] ?? '';
2704
2705
        if (preg_match("/\\$(\w+)/", $id, $match)) {
2706
            $id = $this->vars[$match[1]]['id'];
2707
            $id = trim($id);
2708
        }
2709
2710
        $this->list = [];
2711
        $person     = Registry::individualFactory()->make($id, $this->tree);
2712
        if ($person instanceof Individual) {
2713
            $this->list[$id] = $person;
2714
            $this->mfrelation[$id] = "";
2715
            $nam = $person->getAllNames()[0]['fullNN'];
0 ignored issues
show
Unused Code introduced by
The assignment to $nam is dead and can be removed.
Loading history...
2716
            switch ($group) {
2717
                case 'child-family':
2718
                    foreach ($person->childFamilies() as $family) {
2719
                        foreach ($family->spouses() as $spouse) {
2720
                            $this->list[$spouse->xref()] = $spouse;
2721
                        }
2722
2723
                        foreach ($family->children() as $child) {
2724
                            $this->list[$child->xref()] = $child;
2725
                        }
2726
                    }
2727
                    break;
2728
                case 'spouse-family':
2729
                    foreach ($person->spouseFamilies() as $family) {
2730
                        foreach ($family->spouses() as $spouse) {
2731
                            $this->list[$spouse->xref()] = $spouse;
2732
                        }
2733
2734
                        foreach ($family->children() as $child) {
2735
                            $this->list[$child->xref()] = $child;
2736
                        }
2737
                    }
2738
                    break;
2739
                case 'direct-ancestors':
2740
                    $this->addAncestors($this->list, $id, false, $maxgen);
2741
                    break;
2742
                case 'ancestors':
2743
                    $this->addAncestors($this->list, $id, true, $maxgen);
2744
                    break;
2745
                case 'descendants':
2746
                    $this->list[$id]->generation = 1;
2747
                    $this->addDescendancy($this->list, $id, false, $maxgen);
2748
                    break;
2749
                case 'all':
2750
                    $this->addAncestors($this->list, $id, true, $maxgen);
2751
                    $this->addDescendancy($this->list, $id, true, $maxgen);
2752
                    break;
2753
            }
2754
        }
2755
2756
        switch ($sortby) {
2757
            case 'NAME':
2758
                uasort($this->list, GedcomRecord::nameComparator());
2759
                break;
2760
            case 'BIRT:DATE':
2761
                uasort($this->list, Individual::birthDateComparator());
2762
                break;
2763
            case 'DEAT:DATE':
2764
                uasort($this->list, Individual::deathDateComparator());
2765
                break;
2766
            case 'generation':
2767
                $newarray = [];
2768
                reset($this->list);
2769
                $genCounter = 1;
2770
                while (count($newarray) < count($this->list)) {
2771
                    foreach ($this->list as $key => $value) {
2772
                        if ($value->generation < 0) {
2773
                            // indication of husband or wife
2774
                            $this->generation = -$value->generation;
2775
                        } else {
2776
                            $this->generation = $value->generation;
2777
                        }
2778
                        if ($this->generation == $genCounter) {
2779
                            $newarray[$key] = (object) ['generation' => $this->generation];
2780
                        }
2781
                    }
2782
                    $genCounter++;
2783
                }
2784
                $this->list = $newarray;
2785
                break;
2786
            default:
2787
                // unsorted
2788
                break;
2789
        }
2790
        $this->repeats_stack[] = [$this->repeats, $this->repeat_bytes];
2791
        $this->repeat_bytes    = xml_get_current_line_number($this->parser) + 1;
2792
    }
2793
2794
    /**
2795
     * Handle </relatives>
2796
     *
2797
     * @return void
2798
     */
2799
    protected function relativesEndHandler(): void
2800
    {
2801
        $this->process_repeats--;
2802
        if ($this->process_repeats > 0) {
2803
            return;
2804
        }
2805
2806
        // Check if there is any relatives
2807
        if (count($this->list) > 0) {
2808
            $lineoffset = 0;
2809
            foreach ($this->repeats_stack as $rep) {
2810
                $lineoffset = $lineoffset + (int) ($rep[1]) - 1;
2811
            }
2812
            //-- read the xml from the file
2813
            $lines = file($this->report);
2814
            if (empty($lines)) {
2815
                error_log(__FILE__ . ":" . __LINE__ . " impossible error!? \n");
2816
                // this can not happen! phpstan forces me to add stupid code
2817
                die("can not happen!!!");
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
2818
            }
2819
            while (!str_contains($lines[$lineoffset + $this->repeat_bytes], '<Relatives') && $lineoffset + $this->repeat_bytes > 0) {
2820
                $lineoffset--;
2821
            }
2822
            $lineoffset++;
2823
            $reportxml = "<tempdoc>\n";
2824
            $line_nr   = $lineoffset + $this->repeat_bytes;
2825
            // Relatives Level counter
2826
            $count = 1;
2827
            while (0 < $count) {
2828
                if (str_contains($lines[$line_nr], '<Relatives')) {
2829
                    $count++;
2830
                } elseif (str_contains($lines[$line_nr], '</Relatives')) {
2831
                    $count--;
2832
                }
2833
                if (0 < $count) {
2834
                    $reportxml .= $lines[$line_nr];
2835
                }
2836
                $line_nr++;
2837
            }
2838
            // No need to drag this
2839
            unset($lines);
2840
            $reportxml .= "</tempdoc>\n";
2841
            // Save original values
2842
            $this->parser_stack[] = $this->parser;
2843
            $oldgedrec            = $this->gedrec;
2844
2845
            $this->list_total   = count($this->list);
2846
            $this->list_private = 0;
2847
            foreach ($this->list as $key => $value) {
2848
                if (isset($value->generation)) {
2849
                    $this->generation = $value->generation;
2850
                }
2851
                $xref = $key;
2852
                $this->vars["dupl"]["id"] = "no";
2853
                if (substr($key, 0, 2) == "D_") {
2854
                    $xref = substr($key, strrpos($key, "_") + 1);
2855
                    $this->vars["dupl"]["id"] = "yes";
2856
                }
2857
                $tmp          = Registry::gedcomRecordFactory()->make((string) $xref, $this->tree);
2858
                $this->gedrec = $tmp->privatizeGedcom(Auth::accessLevel($this->tree));
2859
2860
                $repeat_parser = xml_parser_create();
2861
                $this->parser  = $repeat_parser;
2862
                xml_parser_set_option($repeat_parser, XML_OPTION_CASE_FOLDING, 0);
2863
2864
                xml_set_element_handler(
2865
                    $repeat_parser,
2866
                    function ($parser, string $name, array $attrs): void {
2867
                        $this->startElement($parser, $name, $attrs);
2868
                    },
2869
                    function ($parser, string $name): void {
2870
                        $this->endElement($parser, $name);
2871
                    }
2872
                );
2873
2874
                xml_set_character_data_handler(
2875
                    $repeat_parser,
2876
                    function ($parser, string $data): void {
2877
                        $this->characterData($parser, $data);
2878
                    }
2879
                );
2880
2881
                if (!xml_parse($repeat_parser, $reportxml, true)) {
2882
                    throw new DomainException(sprintf('RelativesEHandler XML error: %s at line %d', xml_error_string(xml_get_error_code($repeat_parser)), xml_get_current_line_number($repeat_parser)));
2883
                }
2884
                xml_parser_free($repeat_parser);
2885
            }
2886
            // Clean up the list array
2887
            $this->list   = [];
2888
            $this->parser = array_pop($this->parser_stack);
2889
            $this->gedrec = $oldgedrec;
2890
        }
2891
        [$this->repeats, $this->repeat_bytes] = array_pop($this->repeats_stack);
2892
    }
2893
2894
    /**
2895
     * Handle <generation />
2896
     * Prints the number of generations
2897
     *
2898
     * @return void
2899
     */
2900
    protected function generationStartHandler(): void
2901
    {
2902
        $this->current_element->addText((string) $this->generation);
2903
    }
2904
2905
    /**
2906
     * Handle <newPage />
2907
     * Has to be placed in an element (header, body or footer)
2908
     *
2909
     * @return void
2910
     */
2911
    protected function newPageStartHandler(): void
2912
    {
2913
        $temp = 'addpage';
2914
        $this->wt_report->addElement($temp);
2915
    }
2916
2917
    /**
2918
     * Handle </title>
2919
     *
2920
     * @return void
2921
     */
2922
    protected function titleEndHandler(): void
2923
    {
2924
        $this->report_root->addTitle($this->text);
2925
    }
2926
2927
    /**
2928
     * Handle </description>
2929
     *
2930
     * @return void
2931
     */
2932
    protected function descriptionEndHandler(): void
2933
    {
2934
        $this->report_root->addDescription($this->text);
2935
    }
2936
2937
    /**
2938
     * Create a list of all descendants.
2939
     *
2940
     * @param array<Individual> $list
2941
     * @param string            $pid
2942
     * @param bool              $parents
2943
     * @param int               $generations
2944
     *
2945
     * @return void
2946
     */
2947
    private function addDescendancy(&$list, $pid, $parents = false, $generations = -1): void
2948
    {
2949
        $person = Registry::individualFactory()->make($pid, $this->tree);
2950
        if ($person === null) {
2951
            return;
2952
        }
2953
2954
        static $focusperson = true;
2955
        static $dupl = 1;
2956
        $sx = $person->sex();
2957
        $rl = "x"; // unknown
2958
        if ($sx == "M") {
2959
            $rl = "s";
2960
        } // son
2961
        if ($sx == "F") {
2962
            $rl = "d";
0 ignored issues
show
Unused Code introduced by
The assignment to $rl is dead and can be removed.
Loading history...
2963
        } // daughter
2964
        if ($focusperson) {
2965
            $this->mfrelation[$pid] = "";
2966
        }
2967
        $nam = $person->getAllNames()[0]['fullNN'];
0 ignored issues
show
Unused Code introduced by
The assignment to $nam is dead and can be removed.
Loading history...
2968
2969
        $newpid = $pid;
2970
        if (!isset($list[$pid])) {
2971
            $list[$pid] = $person;
2972
        } elseif (!$focusperson) {
2973
            $newpid = "D_" . $dupl . "_" . $pid;
2974
            $list[$newpid] = $person;
2975
        }
2976
        if (!isset($list[$newpid]->generation)) {
2977
            $list[$newpid]->generation = 0;
2978
        }
2979
        $focusperson = false;
2980
        foreach ($person->spouseFamilies() as $family) {
2981
            if ($parents) {
2982
                $husband = $family->husband();
2983
                $wife    = $family->wife();
2984
                if ($husband) {
2985
                    $list[$husband->xref()] = $husband;
2986
                    if (isset($list[$pid]->generation)) {
2987
                        $list[$husband->xref()]->generation = $list[$pid]->generation - 1;
2988
                    } else {
2989
                        $list[$husband->xref()]->generation = 1;
2990
                    }
2991
                }
2992
                if ($wife) {
2993
                    $list[$wife->xref()] = $wife;
2994
                    if (isset($list[$pid]->generation)) {
2995
                        $list[$wife->xref()]->generation = $list[$pid]->generation - 1;
2996
                    } else {
2997
                        $list[$wife->xref()]->generation = 1;
2998
                    }
2999
                }
3000
            }
3001
            $husband = $family->husband();
3002
            $wife = $family->wife();
3003
3004
            if ($husband && $wife) {
3005
                if ($husband->xref() == $person->xref()) {
3006
                    $this->mfrelation[$wife->xref()] = $this->mfrelation[$person->xref()] . "x";
3007
                    if ($wife->canShow()) {
3008
                        $list[$wife->xref()] = $wife;
3009
                    }
3010
                    if (!isset($wife->generation)) {
3011
                        $wife->generation = $person->generation;
3012
                    }
3013
                    $nam = $wife->getAllNames()[0]['fullNN'];
3014
                } else {
3015
                    $this->mfrelation[$husband->xref()] = $this->mfrelation[$person->xref()] . "x";
3016
                    if ($husband->canShow()) {
3017
                        $list[$husband->xref()] = $husband;
3018
                    }
3019
                    if (!isset($husband->generation)) {
3020
                        $husband->generation = $person->generation;
3021
                    }
3022
                    $nam = $husband->getAllNames()[0]['fullNN'];
3023
                }
3024
            }
3025
3026
            $children = $family->children();
3027
            foreach ($children as $child) {
3028
                if ($child) {
3029
                    $sx = $child->sex();
3030
                    $rl = "x"; // unknown
3031
                    if ($sx == "M") {
3032
                        $rl = "s";
3033
                    } // son
3034
                    if ($sx == "F") {
3035
                        $rl = "d";
3036
                    } // daughter
3037
                    $rl = $this->mfrelation[$person->xref()] . $rl;
3038
                    $this->mfrelation[$child->xref()] = $rl;
3039
                    if (isset($list[$pid]->generation)) {
3040
                        $child->generation = $list[$pid]->generation + 1;
3041
                    } else {
3042
                        $child->generation = 2;
3043
                    }
3044
                }
3045
            }
3046
            if ($generations == -1 || $list[$pid]->generation < $generations) {
3047
                foreach ($children as $child) {
3048
                    if ($child->canShow()) {
3049
                        $this->addDescendancy($list, $child->xref(), $parents, $generations);
3050
                    } // recurse on the childs family
3051
                }
3052
            }
3053
        }
3054
        $focusperson = false;
0 ignored issues
show
Unused Code introduced by
The assignment to $focusperson is dead and can be removed.
Loading history...
3055
    }
3056
3057
    /**
3058
     * Create a list of all ancestors.
3059
     *
3060
     * @param array<Individual> $list
3061
     * @param string            $pid
3062
     * @param bool              $children
3063
     * @param int               $generations
3064
     *
3065
     * @return void
3066
     */
3067
    private function addAncestors(array &$list, string $pid, bool $children = false, int $generations = -1): void
3068
    {
3069
        $genlist                = [$pid];
3070
        $list[$pid]->generation = 1;
3071
        while (count($genlist) > 0) {
3072
            $id = array_shift($genlist);
3073
            if (str_starts_with($id, 'empty')) {
3074
                continue; // id can be something like “empty7”
3075
            }
3076
            if (!isset($this->mfrelation[$id])) {
3077
                $this->mfrelation[$id] = "";
3078
            }
3079
            $person = Registry::individualFactory()->make($id, $this->tree);
3080
            foreach ($person->childFamilies() as $family) {
3081
                $husband = $family->husband();
3082
                $wife    = $family->wife();
3083
                if ($husband) {
3084
                    $list[$husband->xref()]             = $husband;
3085
                    $list[$husband->xref()]->generation = $list[$id]->generation + 1;
3086
                    $this->mfrelation[$husband->xref()] = $this->mfrelation[$id] . "f";
3087
                }
3088
                if ($wife) {
3089
                    $list[$wife->xref()]             = $wife;
3090
                    $list[$wife->xref()]->generation = $list[$id]->generation + 1;
3091
                    $this->mfrelation[$wife->xref()] = $this->mfrelation[$id] . "m";
3092
                }
3093
                if ($generations == -1 || $list[$id]->generation + 1 < $generations) {
3094
                    if ($husband) {
3095
                        $genlist[] = $husband->xref();
3096
                    }
3097
                    if ($wife) {
3098
                        $genlist[] = $wife->xref();
3099
                    }
3100
                }
3101
                if ($children && isset($person)) {
3102
                    // unnecessary test of $person to satisfy phpstan!
3103
                    foreach ($family->children() as $child) {
3104
                        $list[$child->xref()] = $child;
3105
                        $child->generation = $list[$id]->generation ?? 1;
3106
                        if ($child->xref() != $person->xref()) {
3107
                            $this->mfrelation[$child->xref()] = $this->mfrelation[$id] . "x";
3108
                        }
3109
                    }
3110
                }
3111
            }
3112
        }
3113
    }
3114
3115
    /**
3116
     * get gedcom tag value
3117
     *
3118
     * @param string $tag    The tag to find, use : to delineate subtags
3119
     * @param int    $level  The gedcom line level of the first tag to find, setting level to 0 will cause it to use 1+ the level of the incoming record
3120
     * @param string $gedrec The gedcom record to get the value from
3121
     *
3122
     * @return string the value of a gedcom tag from the given gedcom record
3123
     */
3124
    private function getGedcomValue(string $tag, int $level, string $gedrec): string
3125
    {
3126
        if ($gedrec === '') {
3127
            return '';
3128
        }
3129
        $tags      = explode(':', $tag);
3130
        $origlevel = $level;
3131
        if ($level === 0) {
3132
            $level = $gedrec[0] + 1;
3133
        }
3134
3135
        $subrec = $gedrec;
3136
        $t = 'XXXX';
3137
        foreach ($tags as $t) {
3138
            $lastsubrec = $subrec;
3139
            $subrec     = self::getSubRecord($level, "$level $t", $subrec);
3140
            if (empty($subrec) && $origlevel == 0) {
3141
                $level--;
3142
                $subrec = self::getSubRecord($level, "$level $t", $lastsubrec);
3143
            }
3144
            if (empty($subrec)) {
3145
                if ($t === 'TITL') {
3146
                    $subrec = self::getSubRecord($level, "$level ABBR", $lastsubrec);
3147
                    if (!empty($subrec)) {
3148
                        $t = 'ABBR';
3149
                    }
3150
                }
3151
                if ($subrec === '') {
3152
                    if ($level > 0) {
3153
                        $level--;
3154
                    }
3155
                    $subrec = self::getSubRecord($level, "@ $t", $gedrec);
3156
                    if ($subrec === '') {
3157
                        return '';
3158
                    }
3159
                }
3160
            }
3161
            $level++;
3162
        }
3163
        $level--;
3164
        $ct = preg_match("/$level $t(.*)/", $subrec, $match);
3165
        if ($ct === 0) {
3166
            $ct = preg_match("/$level @.+@ (.+)/", $subrec, $match);
3167
        }
3168
        if ($ct === 0) {
3169
            $ct = preg_match("/@ $t (.+)/", $subrec, $match);
3170
        }
3171
        if ($ct > 0) {
3172
            $value = trim($match[1]);
3173
            if ($t === 'NOTE' && preg_match('/^@(.+)@$/', $value, $match)) {
3174
                $note = Registry::noteFactory()->make($match[1], $this->tree);
3175
                if ($note instanceof Note) {
3176
                    $value = $note->getNote();
3177
                } else {
3178
                    //-- set the value to the id without the @
3179
                    $value = $match[1];
3180
                }
3181
            }
3182
            if ($level !== 0 || $t !== 'NOTE') {
3183
                $value .= self::getCont($level + 1, $subrec);
3184
            }
3185
3186
            if ($tag === 'NAME' || $tag === '_MARNM' || $tag === '_AKA') {
3187
                return strtr($value, ['/' => '']);
3188
            }
3189
3190
            if ($tag === 'NAME' || $tag === '_MARNM' || $tag === '_AKA') {
3191
                return strtr($value, ['/' => '']);
3192
            }
3193
3194
            return $value;
3195
        }
3196
3197
        return '';
3198
    }
3199
3200
    /**
3201
     * Replace variable identifiers with their values.
3202
     *
3203
     * @param string $expression An expression such as "$foo == 123"
3204
     * @param bool   $quote      Whether to add quotation marks
3205
     *
3206
     * @return string
3207
     */
3208
    private function substituteVars($expression, $quote): string
3209
    {
3210
        return preg_replace_callback(
3211
            '/\$(\w+)/',
3212
            function (array $matches) use ($quote): string {
3213
                if (isset($this->vars[$matches[1]]['id'])) {
3214
                    if ($quote) {
3215
                        return "'" . addcslashes($this->vars[$matches[1]]['id'], "'") . "'";
3216
                    }
3217
3218
                    return $this->vars[$matches[1]]['id'];
3219
                }
3220
3221
                Log::addErrorLog(sprintf('Undefined variable $%s in report', $matches[1]));
3222
3223
                return '$' . $matches[1];
3224
            },
3225
            $expression
3226
        );
3227
    }
3228
}
3229