16fd01894SGreg Roach<?php 26fd01894SGreg Roach 36fd01894SGreg Roach/** 46fd01894SGreg Roach * webtrees: online genealogy 589f7189bSGreg Roach * Copyright (C) 2021 webtrees development team 66fd01894SGreg Roach * This program is free software: you can redistribute it and/or modify 76fd01894SGreg Roach * it under the terms of the GNU General Public License as published by 86fd01894SGreg Roach * the Free Software Foundation, either version 3 of the License, or 96fd01894SGreg Roach * (at your option) any later version. 106fd01894SGreg Roach * This program is distributed in the hope that it will be useful, 116fd01894SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 126fd01894SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 136fd01894SGreg Roach * GNU General Public License for more details. 146fd01894SGreg 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/>. 166fd01894SGreg Roach */ 176fd01894SGreg Roach 186fd01894SGreg Roachdeclare(strict_types=1); 196fd01894SGreg Roach 206fd01894SGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 216fd01894SGreg Roach 226fd01894SGreg Roachuse Exception; 23*1c6adce8SGreg Roachuse Fisharebest\Webtrees\Encodings\UTF8; 246fd01894SGreg Roachuse Fisharebest\Webtrees\Exceptions\GedcomErrorException; 256fd01894SGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsImport; 266fd01894SGreg Roachuse Fisharebest\Webtrees\Http\ViewResponseTrait; 276fd01894SGreg Roachuse Fisharebest\Webtrees\I18N; 286fd01894SGreg Roachuse Fisharebest\Webtrees\Services\TimeoutService; 295cd281f4SGreg Roachuse Fisharebest\Webtrees\Services\TreeService; 306fd01894SGreg Roachuse Fisharebest\Webtrees\Tree; 316fd01894SGreg Roachuse Illuminate\Database\Capsule\Manager as DB; 32182e92b8SGreg Roachuse Illuminate\Database\DetectsConcurrencyErrors; 336fd01894SGreg Roachuse Illuminate\Database\Query\Expression; 346fd01894SGreg Roachuse Psr\Http\Message\ResponseInterface; 356fd01894SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 366fd01894SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 376fd01894SGreg Roach 386fd01894SGreg Roachuse function assert; 396fd01894SGreg Roachuse function preg_match; 406fd01894SGreg Roachuse function preg_split; 416fd01894SGreg Roachuse function response; 426fd01894SGreg Roachuse function str_replace; 436fd01894SGreg Roachuse function str_starts_with; 446fd01894SGreg Roachuse function strlen; 456fd01894SGreg Roachuse function strtoupper; 466fd01894SGreg Roachuse function substr; 476fd01894SGreg Roachuse function trim; 486fd01894SGreg Roachuse function view; 496fd01894SGreg Roach 506fd01894SGreg Roach/** 516fd01894SGreg Roach * Load a chunk of GEDCOM data. 526fd01894SGreg Roach */ 536fd01894SGreg Roachclass GedcomLoad implements RequestHandlerInterface 546fd01894SGreg Roach{ 556fd01894SGreg Roach use ViewResponseTrait; 56182e92b8SGreg Roach use DetectsConcurrencyErrors; 576fd01894SGreg Roach 58c4943cffSGreg Roach private TimeoutService $timeout_service; 596fd01894SGreg Roach 60c4943cffSGreg Roach private TreeService $tree_service; 615cd281f4SGreg Roach 626fd01894SGreg Roach /** 636fd01894SGreg Roach * GedcomLoad constructor. 646fd01894SGreg Roach * 656fd01894SGreg Roach * @param TimeoutService $timeout_service 665cd281f4SGreg Roach * @param TreeService $tree_service 676fd01894SGreg Roach */ 685cd281f4SGreg Roach public function __construct(TimeoutService $timeout_service, TreeService $tree_service) 696fd01894SGreg Roach { 706fd01894SGreg Roach $this->timeout_service = $timeout_service; 715cd281f4SGreg Roach $this->tree_service = $tree_service; 726fd01894SGreg Roach } 736fd01894SGreg Roach 746fd01894SGreg Roach /** 756fd01894SGreg Roach * @param ServerRequestInterface $request 766fd01894SGreg Roach * 776fd01894SGreg Roach * @return ResponseInterface 786fd01894SGreg Roach */ 796fd01894SGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 806fd01894SGreg Roach { 816fd01894SGreg Roach $this->layout = 'layouts/ajax'; 826fd01894SGreg Roach 836fd01894SGreg Roach $tree = $request->getAttribute('tree'); 846fd01894SGreg Roach assert($tree instanceof Tree); 856fd01894SGreg Roach 866fd01894SGreg Roach try { 876fd01894SGreg Roach // What is the current import status? 886fd01894SGreg Roach $import_offset = DB::table('gedcom_chunk') 896fd01894SGreg Roach ->where('gedcom_id', '=', $tree->id()) 906fd01894SGreg Roach ->where('imported', '=', '1') 916fd01894SGreg Roach ->count(); 926fd01894SGreg Roach 936fd01894SGreg Roach $import_total = DB::table('gedcom_chunk') 946fd01894SGreg Roach ->where('gedcom_id', '=', $tree->id()) 956fd01894SGreg Roach ->count(); 966fd01894SGreg Roach 976fd01894SGreg Roach // Finished? 986fd01894SGreg Roach if ($import_offset === $import_total) { 996fd01894SGreg Roach $tree->setPreference('imported', '1'); 1006fd01894SGreg Roach 1016fd01894SGreg Roach $html = view('admin/import-complete', ['tree' => $tree]); 1026fd01894SGreg Roach 1036fd01894SGreg Roach return response($html); 1046fd01894SGreg Roach } 1056fd01894SGreg Roach 1066fd01894SGreg Roach // Calculate progress so far 1076fd01894SGreg Roach $progress = $import_offset / $import_total; 1086fd01894SGreg Roach 1097dd04261SGreg Roach $first_time = $import_offset === 0; 1106fd01894SGreg Roach 1116fd01894SGreg Roach // Collect up any errors, and show them later. 1126fd01894SGreg Roach $errors = ''; 1136fd01894SGreg Roach 1146fd01894SGreg Roach // Run for a short period of time. This keeps the resource requirements low. 1156fd01894SGreg Roach do { 1166fd01894SGreg Roach $data = DB::table('gedcom_chunk') 1176fd01894SGreg Roach ->where('gedcom_id', '=', $tree->id()) 1186fd01894SGreg Roach ->where('imported', '=', '0') 1196fd01894SGreg Roach ->orderBy('gedcom_chunk_id') 1206fd01894SGreg Roach ->select(['gedcom_chunk_id', 'chunk_data']) 1216fd01894SGreg Roach ->first(); 1226fd01894SGreg Roach 1239d173e09SGreg Roach if ($data === null) { 1249d173e09SGreg Roach break; 1259d173e09SGreg Roach } 1269d173e09SGreg Roach 1279d173e09SGreg Roach // Mark the chunk as imported. This will create a row-lock, to prevent other 1289d173e09SGreg Roach // processes from reading it until we have finished. 1299d173e09SGreg Roach $n = DB::table('gedcom_chunk') 1309d173e09SGreg Roach ->where('gedcom_chunk_id', '=', $data->gedcom_chunk_id) 1319d173e09SGreg Roach ->where('imported', '=', '0') 1329d173e09SGreg Roach ->update(['imported' => 1]); 1339d173e09SGreg Roach 1349d173e09SGreg Roach // Another process has already imported this data? 1359d173e09SGreg Roach if ($n === 0) { 1369d173e09SGreg Roach break; 1379d173e09SGreg Roach } 1389d173e09SGreg Roach 139*1c6adce8SGreg Roach // If we are loading the first (header) record, then delete old data. 1406fd01894SGreg Roach if ($first_time) { 1415cd281f4SGreg Roach $this->tree_service->deleteGenealogyData($tree, (bool) $tree->getPreference('keep_media')); 1425cd281f4SGreg Roach 1436fd01894SGreg Roach // Remove any byte-order-mark 144*1c6adce8SGreg Roach if (str_starts_with($data->chunk_data, UTF8::BYTE_ORDER_MARK)) { 145*1c6adce8SGreg Roach $data->chunk_data = substr($data->chunk_data, strlen(UTF8::BYTE_ORDER_MARK)); 1466fd01894SGreg Roach DB::table('gedcom_chunk') 1476fd01894SGreg Roach ->where('gedcom_chunk_id', '=', $data->gedcom_chunk_id) 1486fd01894SGreg Roach ->update(['chunk_data' => $data->chunk_data]); 1496fd01894SGreg Roach } 1506fd01894SGreg Roach 1516fd01894SGreg Roach if (!str_starts_with($data->chunk_data, '0 HEAD')) { 1526fd01894SGreg Roach return $this->viewResponse('admin/import-fail', [ 1536fd01894SGreg Roach 'error' => I18N::translate('Invalid GEDCOM file - no header record found.'), 1546fd01894SGreg Roach 'tree' => $tree, 1556fd01894SGreg Roach ]); 1566fd01894SGreg Roach } 1576fd01894SGreg Roach 1586fd01894SGreg Roach $first_time = false; 1596fd01894SGreg Roach } 1606fd01894SGreg Roach 1616fd01894SGreg Roach $data->chunk_data = str_replace("\r", "\n", $data->chunk_data); 1626fd01894SGreg Roach 1636fd01894SGreg Roach // Import all the records in this chunk of data 1646fd01894SGreg Roach foreach (preg_split('/\n+(?=0)/', $data->chunk_data) as $rec) { 1656fd01894SGreg Roach try { 1666fd01894SGreg Roach FunctionsImport::importRecord($rec, $tree, false); 1676fd01894SGreg Roach } catch (GedcomErrorException $exception) { 1686fd01894SGreg Roach $errors .= $exception->getMessage(); 1696fd01894SGreg Roach } 1706fd01894SGreg Roach } 1716fd01894SGreg Roach 1729d173e09SGreg Roach // Do not need the data any more. 1736fd01894SGreg Roach DB::table('gedcom_chunk') 1746fd01894SGreg Roach ->where('gedcom_chunk_id', '=', $data->gedcom_chunk_id) 1759d173e09SGreg Roach ->update(['chunk_data' => '']); 1766fd01894SGreg Roach } while (!$this->timeout_service->isTimeLimitUp()); 1776fd01894SGreg Roach 1786fd01894SGreg Roach return $this->viewResponse('admin/import-progress', [ 1796fd01894SGreg Roach 'errors' => $errors, 1806fd01894SGreg Roach 'progress' => $progress, 1816fd01894SGreg Roach 'tree' => $tree, 1826fd01894SGreg Roach ]); 1836fd01894SGreg Roach } catch (Exception $ex) { 1846fd01894SGreg Roach DB::connection()->rollBack(); 1856fd01894SGreg Roach 1869d173e09SGreg Roach // Deadlock? Try again. 187f32d77e6SGreg Roach if ($this->causedByConcurrencyError($ex)) { 1889d173e09SGreg Roach return $this->viewResponse('admin/import-progress', [ 1899d173e09SGreg Roach 'errors' => '', 1909d173e09SGreg Roach 'progress' => $progress ?? 0.0, 1919d173e09SGreg Roach 'tree' => $tree, 1929d173e09SGreg Roach ]); 1939d173e09SGreg Roach } 1949d173e09SGreg Roach 1956fd01894SGreg Roach return $this->viewResponse('admin/import-fail', [ 1966fd01894SGreg Roach 'error' => $ex->getMessage(), 1976fd01894SGreg Roach 'tree' => $tree, 1986fd01894SGreg Roach ]); 1996fd01894SGreg Roach } 2006fd01894SGreg Roach } 2016fd01894SGreg Roach} 202