1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2022 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 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees\Services; 21 22use Fisharebest\Webtrees\Auth; 23use Fisharebest\Webtrees\Encodings\UTF16BE; 24use Fisharebest\Webtrees\Encodings\UTF16LE; 25use Fisharebest\Webtrees\Encodings\UTF8; 26use Fisharebest\Webtrees\Encodings\Windows1252; 27use Fisharebest\Webtrees\Factories\AbstractGedcomRecordFactory; 28use Fisharebest\Webtrees\Gedcom; 29use Fisharebest\Webtrees\GedcomFilters\GedcomEncodingFilter; 30use Fisharebest\Webtrees\GedcomRecord; 31use Fisharebest\Webtrees\Header; 32use Fisharebest\Webtrees\Registry; 33use Fisharebest\Webtrees\Tree; 34use Fisharebest\Webtrees\Webtrees; 35use Illuminate\Database\Capsule\Manager as DB; 36use Illuminate\Database\Query\Builder; 37use Illuminate\Database\Query\Expression; 38use Illuminate\Support\Collection; 39use League\Flysystem\Filesystem; 40use League\Flysystem\FilesystemOperator; 41use League\Flysystem\ZipArchive\FilesystemZipArchiveProvider; 42use League\Flysystem\ZipArchive\ZipArchiveAdapter; 43use Psr\Http\Message\ResponseFactoryInterface; 44use Psr\Http\Message\ResponseInterface; 45use Psr\Http\Message\StreamFactoryInterface; 46use RuntimeException; 47 48use function addcslashes; 49use function date; 50use function explode; 51use function fclose; 52use function fopen; 53use function fwrite; 54use function is_string; 55use function pathinfo; 56use function preg_match_all; 57use function rewind; 58use function stream_filter_append; 59use function stream_get_meta_data; 60use function strlen; 61use function strpos; 62use function strtolower; 63use function strtoupper; 64use function tmpfile; 65 66use const PATHINFO_EXTENSION; 67use const PREG_SET_ORDER; 68use const STREAM_FILTER_WRITE; 69 70/** 71 * Export data in GEDCOM format 72 */ 73class GedcomExportService 74{ 75 private const ACCESS_LEVELS = [ 76 'gedadmin' => Auth::PRIV_NONE, 77 'user' => Auth::PRIV_USER, 78 'visitor' => Auth::PRIV_PRIVATE, 79 'none' => Auth::PRIV_HIDE, 80 ]; 81 82 private ResponseFactoryInterface $response_factory; 83 84 private StreamFactoryInterface $stream_factory; 85 86 /** 87 * @param ResponseFactoryInterface $response_factory 88 * @param StreamFactoryInterface $stream_factory 89 */ 90 public function __construct(ResponseFactoryInterface $response_factory, StreamFactoryInterface $stream_factory) 91 { 92 $this->response_factory = $response_factory; 93 $this->stream_factory = $stream_factory; 94 } 95 96 /** 97 * @param Tree $tree - Export data from this tree 98 * @param bool $sort_by_xref - Write GEDCOM records in XREF order 99 * @param string $encoding - Convert from UTF-8 to other encoding 100 * @param string $privacy - Filter records by role 101 * @param string $line_endings 102 * @param string $filename - Name of download file, without an extension 103 * @param string $format - One of: gedcom, zip, zipmedia, gedzip 104 * @param Collection|null $records 105 * 106 * @return ResponseInterface 107 */ 108 public function downloadResponse( 109 Tree $tree, 110 bool $sort_by_xref, 111 string $encoding, 112 string $privacy, 113 string $line_endings, 114 string $filename, 115 string $format, 116 Collection $records = null 117 ): ResponseInterface { 118 $access_level = self::ACCESS_LEVELS[$privacy]; 119 120 if ($format === 'gedcom') { 121 $resource = $this->export($tree, $sort_by_xref, $encoding, $access_level, $line_endings, $records); 122 $stream = $this->stream_factory->createStreamFromResource($resource); 123 124 return $this->response_factory->createResponse() 125 ->withBody($stream) 126 ->withHeader('content-type', 'text/x-gedcom; charset=' . UTF8::NAME) 127 ->withHeader('content-disposition', 'attachment; filename="' . addcslashes($filename, '"') . '.ged"'); 128 } 129 130 // Create a new/empty .ZIP file 131 $temp_zip_file = stream_get_meta_data(tmpfile())['uri']; 132 $zip_provider = new FilesystemZipArchiveProvider($temp_zip_file, 0755); 133 $zip_adapter = new ZipArchiveAdapter($zip_provider); 134 $zip_filesystem = new Filesystem($zip_adapter); 135 136 if ($format === 'zipmedia') { 137 $media_path = $tree->getPreference('MEDIA_DIRECTORY'); 138 } elseif ($format === 'gedzip') { 139 $media_path = ''; 140 } else { 141 // Don't add media 142 $media_path = null; 143 } 144 145 $resource = $this->export($tree, $sort_by_xref, $encoding, $access_level, $line_endings, $records, $zip_filesystem, $media_path); 146 147 if ($format === 'gedzip') { 148 $zip_filesystem->writeStream('gedcom.ged', $resource); 149 $extension = '.gdz'; 150 } else { 151 $zip_filesystem->writeStream($filename . '.ged', $resource); 152 $extension = '.zip'; 153 } 154 155 fclose($resource); 156 157 $stream = $this->stream_factory->createStreamFromFile($temp_zip_file); 158 159 return $this->response_factory->createResponse() 160 ->withBody($stream) 161 ->withHeader('content-type', 'application/zip') 162 ->withHeader('content-disposition', 'attachment; filename="' . addcslashes($filename, '"') . $extension . '"'); 163 } 164 165 /** 166 * Write GEDCOM data to a stream. 167 * 168 * @param Tree $tree - Export data from this tree 169 * @param bool $sort_by_xref - Write GEDCOM records in XREF order 170 * @param string $encoding - Convert from UTF-8 to other encoding 171 * @param int $access_level - Apply privacy filtering 172 * @param string $line_endings - CRLF or LF 173 * @param Collection<int,string>|null $records - Just export these records 174 * @param FilesystemOperator|null $zip_filesystem - Write media files to this filesystem 175 * @param string|null $media_path - Location within the zip filesystem 176 * 177 * @return resource 178 */ 179 public function export( 180 Tree $tree, 181 bool $sort_by_xref = false, 182 string $encoding = UTF8::NAME, 183 int $access_level = Auth::PRIV_HIDE, 184 string $line_endings = 'CRLF', 185 Collection $records = null, 186 FilesystemOperator $zip_filesystem = null, 187 string $media_path = null 188 ) { 189 $stream = fopen('php://memory', 'wb+'); 190 191 if ($stream === false) { 192 throw new RuntimeException('Failed to create temporary stream'); 193 } 194 195 stream_filter_append($stream, GedcomEncodingFilter::class, STREAM_FILTER_WRITE, ['src_encoding' => UTF8::NAME, 'dst_encoding' => $encoding]); 196 197 if ($records instanceof Collection) { 198 // Export just these records - e.g. from clippings cart. 199 $data = [ 200 new Collection([$this->createHeader($tree, $encoding, false)]), 201 $records, 202 new Collection(['0 TRLR']), 203 ]; 204 } elseif ($access_level === Auth::PRIV_HIDE) { 205 // If we will be applying privacy filters, then we will need the GEDCOM record objects. 206 $data = [ 207 new Collection([$this->createHeader($tree, $encoding, true)]), 208 $this->individualQuery($tree, $sort_by_xref)->cursor(), 209 $this->familyQuery($tree, $sort_by_xref)->cursor(), 210 $this->sourceQuery($tree, $sort_by_xref)->cursor(), 211 $this->otherQuery($tree, $sort_by_xref)->cursor(), 212 $this->mediaQuery($tree, $sort_by_xref)->cursor(), 213 new Collection(['0 TRLR']), 214 ]; 215 } else { 216 // Disable the pending changes before creating GEDCOM records. 217 Registry::cache()->array()->remember(AbstractGedcomRecordFactory::class . $tree->id(), static function (): Collection { 218 return new Collection(); 219 }); 220 221 $data = [ 222 new Collection([$this->createHeader($tree, $encoding, true)]), 223 $this->individualQuery($tree, $sort_by_xref)->get()->map(Registry::individualFactory()->mapper($tree)), 224 $this->familyQuery($tree, $sort_by_xref)->get()->map(Registry::familyFactory()->mapper($tree)), 225 $this->sourceQuery($tree, $sort_by_xref)->get()->map(Registry::sourceFactory()->mapper($tree)), 226 $this->otherQuery($tree, $sort_by_xref)->get()->map(Registry::gedcomRecordFactory()->mapper($tree)), 227 $this->mediaQuery($tree, $sort_by_xref)->get()->map(Registry::mediaFactory()->mapper($tree)), 228 new Collection(['0 TRLR']), 229 ]; 230 } 231 232 $media_filesystem = $tree->mediaFilesystem(); 233 234 foreach ($data as $rows) { 235 foreach ($rows as $datum) { 236 if (is_string($datum)) { 237 $gedcom = $datum; 238 } elseif ($datum instanceof GedcomRecord) { 239 $gedcom = $datum->privatizeGedcom($access_level); 240 } else { 241 $gedcom = 242 $datum->i_gedcom ?? 243 $datum->f_gedcom ?? 244 $datum->s_gedcom ?? 245 $datum->m_gedcom ?? 246 $datum->o_gedcom; 247 } 248 249 if ($media_path !== null && $zip_filesystem !== null && preg_match('/0 @' . Gedcom::REGEX_XREF . '@ OBJE/', $gedcom) === 1) { 250 preg_match_all('/\n1 FILE (.+)/', $gedcom, $matches, PREG_SET_ORDER); 251 252 foreach ($matches as $match) { 253 $media_file = $match[1]; 254 255 if ($media_filesystem->fileExists($media_file)) { 256 $zip_filesystem->writeStream($media_path . $media_file, $media_filesystem->readStream($media_file)); 257 } 258 } 259 } 260 261 $gedcom = $this->wrapLongLines($gedcom, Gedcom::LINE_LENGTH) . "\n"; 262 263 if ($line_endings === 'CRLF') { 264 $gedcom = strtr($gedcom, ["\n" => "\r\n"]); 265 } 266 267 $bytes_written = fwrite($stream, $gedcom); 268 269 if ($bytes_written !== strlen($gedcom)) { 270 throw new RuntimeException('Unable to write to stream. Perhaps the disk is full?'); 271 } 272 } 273 } 274 275 if (rewind($stream) === false) { 276 throw new RuntimeException('Cannot rewind temporary stream'); 277 } 278 279 return $stream; 280 } 281 282 /** 283 * Create a header record for a gedcom file. 284 * 285 * @param Tree $tree 286 * @param string $encoding 287 * @param bool $include_sub 288 * 289 * @return string 290 */ 291 public function createHeader(Tree $tree, string $encoding, bool $include_sub): string 292 { 293 // Force a ".ged" suffix 294 $filename = $tree->name(); 295 296 if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) !== 'ged') { 297 $filename .= '.ged'; 298 } 299 300 $gedcom_encodings = [ 301 UTF16BE::NAME => 'UNICODE', 302 UTF16LE::NAME => 'UNICODE', 303 Windows1252::NAME => 'ANSI', 304 ]; 305 306 $encoding = $gedcom_encodings[$encoding] ?? $encoding; 307 308 // Build a new header record 309 $gedcom = '0 HEAD'; 310 $gedcom .= "\n1 SOUR " . Webtrees::NAME; 311 $gedcom .= "\n2 NAME " . Webtrees::NAME; 312 $gedcom .= "\n2 VERS " . Webtrees::VERSION; 313 $gedcom .= "\n1 DEST DISKETTE"; 314 $gedcom .= "\n1 DATE " . strtoupper(date('d M Y')); 315 $gedcom .= "\n2 TIME " . date('H:i:s'); 316 $gedcom .= "\n1 GEDC\n2 VERS 5.5.1\n2 FORM LINEAGE-LINKED"; 317 $gedcom .= "\n1 CHAR " . $encoding; 318 $gedcom .= "\n1 FILE " . $filename; 319 320 // Preserve some values from the original header 321 $header = Registry::headerFactory()->make('HEAD', $tree) ?? Registry::headerFactory()->new('HEAD', '0 HEAD', null, $tree); 322 323 foreach ($header->facts(['COPR', 'LANG', 'PLAC', 'NOTE']) as $fact) { 324 $gedcom .= "\n" . $fact->gedcom(); 325 } 326 327 if ($include_sub) { 328 foreach ($header->facts(['SUBM', 'SUBN']) as $fact) { 329 $gedcom .= "\n" . $fact->gedcom(); 330 } 331 } 332 333 return $gedcom; 334 } 335 336 /** 337 * Wrap long lines using concatenation records. 338 * 339 * @param string $gedcom 340 * @param int $max_line_length 341 * 342 * @return string 343 */ 344 public function wrapLongLines(string $gedcom, int $max_line_length): string 345 { 346 $lines = []; 347 348 foreach (explode("\n", $gedcom) as $line) { 349 // Split long lines 350 // The total length of a GEDCOM line, including level number, cross-reference number, 351 // tag, value, delimiters, and terminator, must not exceed 255 (wide) characters. 352 if (mb_strlen($line) > $max_line_length) { 353 [$level, $tag] = explode(' ', $line, 3); 354 if ($tag !== 'CONT') { 355 $level++; 356 } 357 do { 358 // Split after $pos chars 359 $pos = $max_line_length; 360 // Split on a non-space (standard gedcom behavior) 361 while (mb_substr($line, $pos - 1, 1) === ' ') { 362 --$pos; 363 } 364 if ($pos === strpos($line, ' ', 3)) { 365 // No non-spaces in the data! Can’t split it :-( 366 break; 367 } 368 $lines[] = mb_substr($line, 0, $pos); 369 $line = $level . ' CONC ' . mb_substr($line, $pos); 370 } while (mb_strlen($line) > $max_line_length); 371 } 372 $lines[] = $line; 373 } 374 375 return implode("\n", $lines); 376 } 377 378 /** 379 * @param Tree $tree 380 * @param bool $sort_by_xref 381 * 382 * @return Builder 383 */ 384 private function familyQuery(Tree $tree, bool $sort_by_xref): Builder 385 { 386 $query = DB::table('families') 387 ->where('f_file', '=', $tree->id()) 388 ->select(['f_gedcom', 'f_id']); 389 390 391 if ($sort_by_xref) { 392 $query 393 ->orderBy(new Expression('LENGTH(f_id)')) 394 ->orderBy('f_id'); 395 } 396 397 return $query; 398 } 399 400 /** 401 * @param Tree $tree 402 * @param bool $sort_by_xref 403 * 404 * @return Builder 405 */ 406 private function individualQuery(Tree $tree, bool $sort_by_xref): Builder 407 { 408 $query = DB::table('individuals') 409 ->where('i_file', '=', $tree->id()) 410 ->select(['i_gedcom', 'i_id']); 411 412 if ($sort_by_xref) { 413 $query 414 ->orderBy(new Expression('LENGTH(i_id)')) 415 ->orderBy('i_id'); 416 } 417 418 return $query; 419 } 420 421 /** 422 * @param Tree $tree 423 * @param bool $sort_by_xref 424 * 425 * @return Builder 426 */ 427 private function sourceQuery(Tree $tree, bool $sort_by_xref): Builder 428 { 429 $query = DB::table('sources') 430 ->where('s_file', '=', $tree->id()) 431 ->select(['s_gedcom', 's_id']); 432 433 if ($sort_by_xref) { 434 $query 435 ->orderBy(new Expression('LENGTH(s_id)')) 436 ->orderBy('s_id'); 437 } 438 439 return $query; 440 } 441 442 /** 443 * @param Tree $tree 444 * @param bool $sort_by_xref 445 * 446 * @return Builder 447 */ 448 private function mediaQuery(Tree $tree, bool $sort_by_xref): Builder 449 { 450 $query = DB::table('media') 451 ->where('m_file', '=', $tree->id()) 452 ->select(['m_gedcom', 'm_id']); 453 454 if ($sort_by_xref) { 455 $query 456 ->orderBy(new Expression('LENGTH(m_id)')) 457 ->orderBy('m_id'); 458 } 459 460 return $query; 461 } 462 463 /** 464 * @param Tree $tree 465 * @param bool $sort_by_xref 466 * 467 * @return Builder 468 */ 469 private function otherQuery(Tree $tree, bool $sort_by_xref): Builder 470 { 471 $query = DB::table('other') 472 ->where('o_file', '=', $tree->id()) 473 ->whereNotIn('o_type', [Header::RECORD_TYPE, 'TRLR']) 474 ->select(['o_gedcom', 'o_id']); 475 476 if ($sort_by_xref) { 477 $query 478 ->orderBy('o_type') 479 ->orderBy(new Expression('LENGTH(o_id)')) 480 ->orderBy('o_id'); 481 } 482 483 return $query; 484 } 485} 486