. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Statistics\Repository; use Fisharebest\Webtrees\Date; use Fisharebest\Webtrees\Fact; use Fisharebest\Webtrees\GedcomRecord; use Fisharebest\Webtrees\Statistics\Repository\Interfaces\GedcomRepositoryInterface; use Fisharebest\Webtrees\Tree; use Illuminate\Database\Capsule\Manager as DB; use Illuminate\Database\Query\Builder; /** * A repository providing methods for GEDCOM related statistics. */ class GedcomRepository implements GedcomRepositoryInterface { /** * @var Tree */ private $tree; /** * Constructor. * * @param Tree $tree */ public function __construct(Tree $tree) { $this->tree = $tree; } /** * Get information from the GEDCOM's HEAD record. * * @return string[] */ private function gedcomHead(): array { $title = ''; $version = ''; $source = ''; $head = GedcomRecord::getInstance('HEAD', $this->tree); if ($head instanceof GedcomRecord) { $sour = $head->facts(['SOUR'])->first(); if ($sour instanceof Fact) { $source = $sour->value(); $title = $sour->attribute('NAME'); $version = $sour->attribute('VERS'); } } return [ $title, $version, $source, ]; } /** * @inheritDoc */ public function gedcomFilename(): string { return $this->tree->name(); } /** * @inheritDoc */ public function gedcomId(): int { return $this->tree->id(); } /** * @inheritDoc */ public function gedcomTitle(): string { return e($this->tree->title()); } /** * @inheritDoc */ public function gedcomCreatedSoftware(): string { return $this->gedcomHead()[0]; } /** * @inheritDoc */ public function gedcomCreatedVersion(): string { $head = $this->gedcomHead(); if ($head === null) { return ''; } // Fix broken version string in Family Tree Maker if (strpos($head[1], 'Family Tree Maker ') !== false) { $p = strpos($head[1], '(') + 1; $p2 = strpos($head[1], ')'); $head[1] = substr($head[1], $p, $p2 - $p); } // Fix EasyTree version if ($head[2] === 'EasyTree') { $head[1] = substr($head[1], 1); } return $head[1]; } /** * @inheritDoc */ public function gedcomDate(): string { $head = GedcomRecord::getInstance('HEAD', $this->tree); if ($head instanceof GedcomRecord) { $fact = $head->facts(['DATE'])->first(); if ($fact instanceof Fact) { return (new Date($fact->value()))->display(); } } return ''; } /** * @inheritDoc */ public function gedcomUpdated(): string { $row = DB::table('dates') ->select(['d_year', 'd_month', 'd_day']) ->where('d_julianday1', '=', function (Builder $query) { $query->selectRaw('MAX(d_julianday1)') ->from('dates') ->where('d_file', '=', $this->tree->id()) ->where('d_fact', '=', 'CHAN'); }) ->first(); if ($row) { $date = new Date("{$row->d_day} {$row->d_month} {$row->d_year}"); return $date->display(); } return $this->gedcomDate(); } /** * @inheritDoc */ public function gedcomRootId(): string { return $this->tree->getPreference('PEDIGREE_ROOT_ID'); } }