1b6f35a76SGreg Roach<?php 2b6f35a76SGreg Roach 3b6f35a76SGreg Roach/** 4b6f35a76SGreg Roach * webtrees: online genealogy 589f7189bSGreg Roach * Copyright (C) 2021 webtrees development team 6b6f35a76SGreg Roach * This program is free software: you can redistribute it and/or modify 7b6f35a76SGreg Roach * it under the terms of the GNU General Public License as published by 8b6f35a76SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9b6f35a76SGreg Roach * (at your option) any later version. 10b6f35a76SGreg Roach * This program is distributed in the hope that it will be useful, 11b6f35a76SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12b6f35a76SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13b6f35a76SGreg Roach * GNU General Public License for more details. 14b6f35a76SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16b6f35a76SGreg Roach */ 17b6f35a76SGreg Roach 18b6f35a76SGreg Roachdeclare(strict_types=1); 19b6f35a76SGreg Roach 20b6f35a76SGreg Roachnamespace Fisharebest\Webtrees\Report; 21b6f35a76SGreg Roach 22b6f35a76SGreg Roachuse Fisharebest\Webtrees\I18N; 23b6f35a76SGreg Roachuse Fisharebest\Webtrees\MediaFile; 24b6f35a76SGreg Roachuse Fisharebest\Webtrees\Webtrees; 25f7cf8a15SGreg Roachuse League\Flysystem\FilesystemOperator; 26b6f35a76SGreg Roach 27b6f35a76SGreg Roachuse function current; 28b6f35a76SGreg Roach 29b6f35a76SGreg Roach/** 30b6f35a76SGreg Roach * Class AbstractRenderer - base for PDF and HTML reports 31b6f35a76SGreg Roach */ 32b6f35a76SGreg Roachabstract class AbstractRenderer 33b6f35a76SGreg Roach{ 34b6f35a76SGreg Roach // Reports layouts are measured in points. 35b6f35a76SGreg Roach protected const UNITS = 'pt'; 36b6f35a76SGreg Roach 37b6f35a76SGreg Roach // A point is 1/72 of an inch 38b6f35a76SGreg Roach protected const INCH_TO_POINTS = 72.0; 39b6f35a76SGreg Roach protected const MM_TO_POINTS = 72.0 / 25.4; 40b6f35a76SGreg Roach 41b6f35a76SGreg Roach protected const PAPER_SIZES = [ 42b6f35a76SGreg Roach // ISO 216 43b6f35a76SGreg Roach 'A0' => [841.0 * self::MM_TO_POINTS, 1189.0 * self::MM_TO_POINTS], 44b6f35a76SGreg Roach 'A1' => [594.0 * self::MM_TO_POINTS, 841.0 * self::MM_TO_POINTS], 45b6f35a76SGreg Roach 'A2' => [420.0 * self::MM_TO_POINTS, 594.0 * self::MM_TO_POINTS], 46b6f35a76SGreg Roach 'A3' => [297.0 * self::MM_TO_POINTS, 420.0 * self::MM_TO_POINTS], 47b6f35a76SGreg Roach 'A4' => [210.0 * self::MM_TO_POINTS, 297.0 * self::MM_TO_POINTS], 48b6f35a76SGreg Roach // US 49b6f35a76SGreg Roach 'US-Letter' => [8.5 * self::INCH_TO_POINTS, 11.0 * self::INCH_TO_POINTS], 50b6f35a76SGreg Roach 'US-Legal' => [8.5 * self::INCH_TO_POINTS, 14.0 * self::INCH_TO_POINTS], 51b6f35a76SGreg Roach 'US-Tabloid' => [11.0 * self::INCH_TO_POINTS, 17.0 * self::INCH_TO_POINTS], 52b6f35a76SGreg Roach ]; 53b6f35a76SGreg Roach 54345fcc8aSGreg Roach public float $left_margin = 18.0 * self::MM_TO_POINTS; 55b6f35a76SGreg Roach 56345fcc8aSGreg Roach public float $right_margin = 9.9 * self::MM_TO_POINTS; 57b6f35a76SGreg Roach 58345fcc8aSGreg Roach public float $top_margin = 26.8 * self::MM_TO_POINTS; 59b6f35a76SGreg Roach 60345fcc8aSGreg Roach public float $bottom_margin = 21.6 * self::MM_TO_POINTS; 61b6f35a76SGreg Roach 62345fcc8aSGreg Roach public float $header_margin = 4.9 * self::MM_TO_POINTS; 63b6f35a76SGreg Roach 64345fcc8aSGreg Roach public float $footer_margin = 9.9 * self::MM_TO_POINTS; 65b6f35a76SGreg Roach 66b6f35a76SGreg Roach /** @var string Page orientation (portrait, landscape) */ 67345fcc8aSGreg Roach public string $orientation = 'portrait'; 68b6f35a76SGreg Roach 69b6f35a76SGreg Roach /** @var string Page format name */ 70345fcc8aSGreg Roach public string $page_format = 'A4'; 71b6f35a76SGreg Roach 72b6f35a76SGreg Roach /** @var float Height of page format in points */ 73345fcc8aSGreg Roach public float $page_height = 0.0; 74b6f35a76SGreg Roach 75b6f35a76SGreg Roach /** @var float Width of page format in points */ 76345fcc8aSGreg Roach public float $page_width = 0.0; 77b6f35a76SGreg Roach 78345fcc8aSGreg Roach /** @var array<array<string,string>> An array of the Styles elements found in the document */ 79345fcc8aSGreg Roach public array $styles = []; 80b6f35a76SGreg Roach 81b6f35a76SGreg Roach /** @var string The default Report font name */ 82345fcc8aSGreg Roach public string $default_font = 'dejavusans'; 83b6f35a76SGreg Roach 84b6f35a76SGreg Roach /** @var float The default Report font size */ 85345fcc8aSGreg Roach public float $default_font_size = 12.0; 86b6f35a76SGreg Roach 87a393a2a1SGreg Roach /** @var string Header (H), Body (B) or Footer (F) */ 88345fcc8aSGreg Roach public string $processing = 'H'; 89b6f35a76SGreg Roach 90b6f35a76SGreg Roach /** @var bool RTL Language (false=LTR, true=RTL) */ 91345fcc8aSGreg Roach public bool $rtl = false; 92b6f35a76SGreg Roach 93b6f35a76SGreg Roach /** @var bool Show the Generated by... (true=show the text) */ 940a709a28SGreg Roach public bool $show_generated_by = true; 95b6f35a76SGreg Roach 96b6f35a76SGreg Roach /** @var string Generated By... text */ 97345fcc8aSGreg Roach public string $generated_by = ''; 98b6f35a76SGreg Roach 99b6f35a76SGreg Roach /** @var string The report title */ 100345fcc8aSGreg Roach public string $title = ''; 101b6f35a76SGreg Roach 102b6f35a76SGreg Roach /** @var string Author of the report, the users full name */ 103345fcc8aSGreg Roach public string $rauthor = Webtrees::NAME . ' ' . Webtrees::VERSION; 104b6f35a76SGreg Roach 105b6f35a76SGreg Roach /** @var string Keywords */ 106345fcc8aSGreg Roach public string $rkeywords = ''; 107b6f35a76SGreg Roach 108b6f35a76SGreg Roach /** @var string Report Description / Subject */ 109345fcc8aSGreg Roach public string $rsubject = ''; 110345fcc8aSGreg Roach 111345fcc8aSGreg Roach /** @var array<ReportBaseElement|string> */ 112345fcc8aSGreg Roach public array $headerElements = []; 113345fcc8aSGreg Roach 114345fcc8aSGreg Roach /** @var array<ReportBaseElement|string> */ 11577bab461SGreg Roach public array $footerElements = []; 116345fcc8aSGreg Roach 117345fcc8aSGreg Roach /** @var array<ReportBaseElement|string> */ 118345fcc8aSGreg Roach public array $bodyElements = []; 119345fcc8aSGreg Roach 120345fcc8aSGreg Roach public string $currentStyle = ''; 121b6f35a76SGreg Roach 122b6f35a76SGreg Roach /** 123b6f35a76SGreg Roach * Clear the Header. 124b6f35a76SGreg Roach * 125b6f35a76SGreg Roach * @return void 126b6f35a76SGreg Roach */ 127b6f35a76SGreg Roach abstract public function clearHeader(): void; 128b6f35a76SGreg Roach 129345fcc8aSGreg Roach 130b6f35a76SGreg Roach /** 131b6f35a76SGreg Roach * @param ReportBaseElement|string $element 132b6f35a76SGreg Roach * 133b6f35a76SGreg Roach * @return void 134b6f35a76SGreg Roach */ 135345fcc8aSGreg Roach public function addElement($element): void 136345fcc8aSGreg Roach { 137345fcc8aSGreg Roach if ($this->processing === 'B') { 138345fcc8aSGreg Roach $this->addElementToBody($element); 139345fcc8aSGreg Roach } elseif ($this->processing === 'H') { 140345fcc8aSGreg Roach $this->addElementToHeader($element); 141345fcc8aSGreg Roach } elseif ($this->processing === 'F') { 142345fcc8aSGreg Roach $this->addElementToFooter($element); 143345fcc8aSGreg Roach } 144345fcc8aSGreg Roach } 145345fcc8aSGreg Roach 146345fcc8aSGreg Roach /** 147345fcc8aSGreg Roach * @param ReportBaseElement|string $element 148345fcc8aSGreg Roach * 149345fcc8aSGreg Roach * @return void 150345fcc8aSGreg Roach */ 151345fcc8aSGreg Roach public function addElementToHeader($element): void 152345fcc8aSGreg Roach { 153345fcc8aSGreg Roach $this->headerElements[] = $element; 154345fcc8aSGreg Roach } 155345fcc8aSGreg Roach 156345fcc8aSGreg Roach /** 157345fcc8aSGreg Roach * @param ReportBaseElement|string $element 158345fcc8aSGreg Roach * 159345fcc8aSGreg Roach * @return void 160345fcc8aSGreg Roach */ 161345fcc8aSGreg Roach public function addElementToBody($element): void 162345fcc8aSGreg Roach { 163345fcc8aSGreg Roach $this->bodyElements[] = $element; 164345fcc8aSGreg Roach } 165345fcc8aSGreg Roach 166345fcc8aSGreg Roach /** 167345fcc8aSGreg Roach * @param ReportBaseElement|string $element 168345fcc8aSGreg Roach * 169345fcc8aSGreg Roach * @return void 170345fcc8aSGreg Roach */ 171345fcc8aSGreg Roach public function addElementToFooter($element): void 172345fcc8aSGreg Roach { 173345fcc8aSGreg Roach $this->footerElements[] = $element; 174345fcc8aSGreg Roach } 175b6f35a76SGreg Roach 176b6f35a76SGreg Roach /** 177b6f35a76SGreg Roach * Run the report. 178b6f35a76SGreg Roach * 179b6f35a76SGreg Roach * @return void 180b6f35a76SGreg Roach */ 181b6f35a76SGreg Roach abstract public function run(): void; 182b6f35a76SGreg Roach 183b6f35a76SGreg Roach /** 184b6f35a76SGreg Roach * Create a new Cell object. 185b6f35a76SGreg Roach * 18677bab461SGreg Roach * @param float $width cell width (expressed in points) 18777bab461SGreg Roach * @param float $height cell height (expressed in points) 18877bab461SGreg Roach * @param string $border Border style 189b6f35a76SGreg Roach * @param string $align Text alignement 190b6f35a76SGreg Roach * @param string $bgcolor Background color code 191b6f35a76SGreg Roach * @param string $style The name of the text style 192b6f35a76SGreg Roach * @param int $ln Indicates where the current position should go after the call 193b6f35a76SGreg Roach * @param mixed $top Y-position 194b6f35a76SGreg Roach * @param mixed $left X-position 195b6f35a76SGreg Roach * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 1 196b6f35a76SGreg Roach * @param int $stretch Stretch carachter mode 197b6f35a76SGreg Roach * @param string $bocolor Border color 198b6f35a76SGreg Roach * @param string $tcolor Text color 199b6f35a76SGreg Roach * @param bool $reseth 200b6f35a76SGreg Roach * 201b6f35a76SGreg Roach * @return ReportBaseCell 202b6f35a76SGreg Roach */ 20324f2a3afSGreg Roach abstract public function createCell( 20477bab461SGreg Roach float $width, 20577bab461SGreg Roach float $height, 20677bab461SGreg Roach string $border, 20724f2a3afSGreg Roach string $align, 20824f2a3afSGreg Roach string $bgcolor, 20924f2a3afSGreg Roach string $style, 21024f2a3afSGreg Roach int $ln, 21124f2a3afSGreg Roach $top, 21224f2a3afSGreg Roach $left, 21324f2a3afSGreg Roach int $fill, 21424f2a3afSGreg Roach int $stretch, 21524f2a3afSGreg Roach string $bocolor, 21624f2a3afSGreg Roach string $tcolor, 21724f2a3afSGreg Roach bool $reseth 21824f2a3afSGreg Roach ): ReportBaseCell; 219b6f35a76SGreg Roach 220b6f35a76SGreg Roach /** 221b6f35a76SGreg Roach * Create a new TextBox object. 222b6f35a76SGreg Roach * 223b6f35a76SGreg Roach * @param float $width Text box width 224b6f35a76SGreg Roach * @param float $height Text box height 225b6f35a76SGreg Roach * @param bool $border 226b6f35a76SGreg Roach * @param string $bgcolor Background color code in HTML 227b6f35a76SGreg Roach * @param bool $newline 228b6f35a76SGreg Roach * @param float $left 229b6f35a76SGreg Roach * @param float $top 230b6f35a76SGreg Roach * @param bool $pagecheck 231b6f35a76SGreg Roach * @param string $style 232b6f35a76SGreg Roach * @param bool $fill 233b6f35a76SGreg Roach * @param bool $padding 234b6f35a76SGreg Roach * @param bool $reseth 235b6f35a76SGreg Roach * 236b6f35a76SGreg Roach * @return ReportBaseTextbox 237b6f35a76SGreg Roach */ 238b6f35a76SGreg Roach abstract public function createTextBox( 239b6f35a76SGreg Roach float $width, 240b6f35a76SGreg Roach float $height, 241b6f35a76SGreg Roach bool $border, 242b6f35a76SGreg Roach string $bgcolor, 243b6f35a76SGreg Roach bool $newline, 244b6f35a76SGreg Roach float $left, 245b6f35a76SGreg Roach float $top, 246b6f35a76SGreg Roach bool $pagecheck, 247b6f35a76SGreg Roach string $style, 248b6f35a76SGreg Roach bool $fill, 249b6f35a76SGreg Roach bool $padding, 250b6f35a76SGreg Roach bool $reseth 251b6f35a76SGreg Roach ): ReportBaseTextbox; 252b6f35a76SGreg Roach 253b6f35a76SGreg Roach /** 254b6f35a76SGreg Roach * Create a text element. 255b6f35a76SGreg Roach * 256b6f35a76SGreg Roach * @param string $style 257b6f35a76SGreg Roach * @param string $color 258b6f35a76SGreg Roach * 259b6f35a76SGreg Roach * @return ReportBaseText 260b6f35a76SGreg Roach */ 261b6f35a76SGreg Roach abstract public function createText(string $style, string $color): ReportBaseText; 262b6f35a76SGreg Roach 263b6f35a76SGreg Roach /** 264b6f35a76SGreg Roach * Create a line. 265b6f35a76SGreg Roach * 266b6f35a76SGreg Roach * @param float $x1 267b6f35a76SGreg Roach * @param float $y1 268b6f35a76SGreg Roach * @param float $x2 269b6f35a76SGreg Roach * @param float $y2 270b6f35a76SGreg Roach * 271b6f35a76SGreg Roach * @return ReportBaseLine 272b6f35a76SGreg Roach */ 273b6f35a76SGreg Roach abstract public function createLine(float $x1, float $y1, float $x2, float $y2): ReportBaseLine; 274b6f35a76SGreg Roach 275b6f35a76SGreg Roach /** 276b6f35a76SGreg Roach * Create a new image object. 277b6f35a76SGreg Roach * 278b6f35a76SGreg Roach * @param string $file Filename 279b6f35a76SGreg Roach * @param float $x 280b6f35a76SGreg Roach * @param float $y 281b6f35a76SGreg Roach * @param float $w Image width 282b6f35a76SGreg Roach * @param float $h Image height 283b6f35a76SGreg Roach * @param string $align L:left, C:center, R:right or empty to use x/y 284b6f35a76SGreg Roach * @param string $ln T:same line, N:next line 285b6f35a76SGreg Roach * 286b6f35a76SGreg Roach * @return ReportBaseImage 287b6f35a76SGreg Roach */ 288b6f35a76SGreg Roach abstract public function createImage(string $file, float $x, float $y, float $w, float $h, string $align, string $ln): ReportBaseImage; 289b6f35a76SGreg Roach 290b6f35a76SGreg Roach /** 291b6f35a76SGreg Roach * Create a new image object from Media Object. 292b6f35a76SGreg Roach * 293b6f35a76SGreg Roach * @param MediaFile $media_file 294b6f35a76SGreg Roach * @param float $x 295b6f35a76SGreg Roach * @param float $y 296b6f35a76SGreg Roach * @param float $w Image width 297b6f35a76SGreg Roach * @param float $h Image height 298b6f35a76SGreg Roach * @param string $align L:left, C:center, R:right or empty to use x/y 299b6f35a76SGreg Roach * @param string $ln T:same line, N:next line 300f7cf8a15SGreg Roach * @param FilesystemOperator $data_filesystem 301b6f35a76SGreg Roach * 302b6f35a76SGreg Roach * @return ReportBaseImage 303b6f35a76SGreg Roach */ 304b6f35a76SGreg Roach abstract public function createImageFromObject( 305b6f35a76SGreg Roach MediaFile $media_file, 306b6f35a76SGreg Roach float $x, 307b6f35a76SGreg Roach float $y, 308b6f35a76SGreg Roach float $w, 309b6f35a76SGreg Roach float $h, 310b6f35a76SGreg Roach string $align, 311b6f35a76SGreg Roach string $ln, 312f7cf8a15SGreg Roach FilesystemOperator $data_filesystem 313b6f35a76SGreg Roach ): ReportBaseImage; 314b6f35a76SGreg Roach 315b6f35a76SGreg Roach /** 316b6f35a76SGreg Roach * Create a new Footnote object. 317b6f35a76SGreg Roach * 318b6f35a76SGreg Roach * @param string $style Style name 319b6f35a76SGreg Roach * 320b6f35a76SGreg Roach * @return ReportBaseFootnote 321b6f35a76SGreg Roach */ 32224f2a3afSGreg Roach abstract public function createFootnote(string $style): ReportBaseFootnote; 323b6f35a76SGreg Roach 324b6f35a76SGreg Roach /** 325b6f35a76SGreg Roach * Initial Setup 326b6f35a76SGreg Roach * Setting up document wide defaults that will be inherited of the report modules 327b6f35a76SGreg Roach * As DEFAULT A4 and Portrait will be used if not set 328b6f35a76SGreg Roach * 329b6f35a76SGreg Roach * @return void 330b6f35a76SGreg Roach */ 331b6f35a76SGreg Roach public function setup(): void 332b6f35a76SGreg Roach { 333b6f35a76SGreg Roach $this->rtl = I18N::direction() === 'rtl'; 334b6f35a76SGreg Roach 335b6f35a76SGreg Roach $this->rkeywords = ''; 336b6f35a76SGreg Roach 337b6f35a76SGreg Roach // I18N: This is a report footer. %s is the name of the application. 338b6f35a76SGreg Roach $this->generated_by = I18N::translate('Generated by %s', Webtrees::NAME . ' ' . Webtrees::VERSION); 339b6f35a76SGreg Roach 340b6f35a76SGreg Roach // Paper size - defaults to A4 if the report fails to define a size. 341b6f35a76SGreg Roach [$this->page_width, $this->page_height] = self::PAPER_SIZES[$this->page_format] ?? self::PAPER_SIZES['A4']; 342b6f35a76SGreg Roach } 343b6f35a76SGreg Roach 344b6f35a76SGreg Roach /** 345a393a2a1SGreg Roach * Process the Header, Body or Footer 346b6f35a76SGreg Roach * 347a393a2a1SGreg Roach * @param string $p Header (H), Body (B) or Footer (F) 348b6f35a76SGreg Roach * 349b6f35a76SGreg Roach * @return void 350b6f35a76SGreg Roach */ 351b6f35a76SGreg Roach public function setProcessing(string $p): void 352b6f35a76SGreg Roach { 353b6f35a76SGreg Roach $this->processing = $p; 354b6f35a76SGreg Roach } 355b6f35a76SGreg Roach 356b6f35a76SGreg Roach /** 357b6f35a76SGreg Roach * Add the Title when raw character data is used in Title 358b6f35a76SGreg Roach * 359b6f35a76SGreg Roach * @param string $data 360b6f35a76SGreg Roach * 361b6f35a76SGreg Roach * @return void 362b6f35a76SGreg Roach */ 363b6f35a76SGreg Roach public function addTitle(string $data): void 364b6f35a76SGreg Roach { 365b6f35a76SGreg Roach $this->title .= $data; 366b6f35a76SGreg Roach } 367b6f35a76SGreg Roach 368b6f35a76SGreg Roach /** 369b6f35a76SGreg Roach * Add the Description when raw character data is used in Description 370b6f35a76SGreg Roach * 371b6f35a76SGreg Roach * @param string $data 372b6f35a76SGreg Roach * 373b6f35a76SGreg Roach * @return void 374b6f35a76SGreg Roach */ 375b6f35a76SGreg Roach public function addDescription(string $data): void 376b6f35a76SGreg Roach { 377b6f35a76SGreg Roach $this->rsubject .= $data; 378b6f35a76SGreg Roach } 379b6f35a76SGreg Roach 380b6f35a76SGreg Roach /** 381b6f35a76SGreg Roach * Add Style to Styles array 382b6f35a76SGreg Roach * 38309482a55SGreg Roach * @param array<string> $style 384b6f35a76SGreg Roach * 385b6f35a76SGreg Roach * @return void 386b6f35a76SGreg Roach */ 387b6f35a76SGreg Roach public function addStyle(array $style): void 388b6f35a76SGreg Roach { 389b6f35a76SGreg Roach $this->styles[$style['name']] = $style; 390b6f35a76SGreg Roach } 391b6f35a76SGreg Roach 392b6f35a76SGreg Roach /** 393b6f35a76SGreg Roach * Get a style from the Styles array 394b6f35a76SGreg Roach * 395b6f35a76SGreg Roach * @param string $s Style name 396b6f35a76SGreg Roach * 397*4348fc02SGreg Roach * @return array<string> 398b6f35a76SGreg Roach */ 399b6f35a76SGreg Roach public function getStyle(string $s): array 400b6f35a76SGreg Roach { 401*4348fc02SGreg Roach return $this->styles[$s]; 402b6f35a76SGreg Roach } 403b6f35a76SGreg Roach} 404