. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Factories; use Closure; use Fisharebest\Webtrees\Contracts\NoteFactoryInterface; use Fisharebest\Webtrees\Note; use Fisharebest\Webtrees\Tree; use Illuminate\Database\Capsule\Manager as DB; use stdClass; use function assert; use function preg_match; /** * Make a Note object. */ class NoteFactory extends AbstractGedcomRecordFactory implements NoteFactoryInterface { private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Note::RECORD_TYPE . '/'; /** * Create a note. * * @param string $xref * @param Tree $tree * @param string|null $gedcom * * @return Note|null */ public function make(string $xref, Tree $tree, string $gedcom = null): ?Note { return $this->cache->remember(__CLASS__ . $xref . '@' . $tree->id(), function () use ($xref, $tree, $gedcom) { $gedcom = $gedcom ?? $this->gedcom($xref, $tree); $pending = $this->pendingChanges($tree)->get($xref); if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) { return null; } $xref = $this->extractXref($gedcom ?? $pending, $xref); return new Note($xref, $gedcom ?? '', $pending, $tree); }); } /** * Create a note from a row in the database. * * @param Tree $tree * * @return Closure */ public function mapper(Tree $tree): Closure { return function (stdClass $row) use ($tree): Note { $note = $this->make($row->o_id, $tree, $row->o_gedcom); assert($note instanceof Note); return $note; }; } /** * Create a note from raw GEDCOM data. * * @param string $xref * @param string $gedcom an empty string for new/pending records * @param string|null $pending null for a record with no pending edits, * empty string for records with pending deletions * @param Tree $tree * * @return Note */ public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Note { return new Note($xref, $gedcom, $pending, $tree); } /** * Fetch GEDCOM data from the database. * * @param string $xref * @param Tree $tree * * @return string|null */ protected function gedcom(string $xref, Tree $tree): ?string { return DB::table('other') ->where('o_id', '=', $xref) ->where('o_file', '=', $tree->id()) ->where('o_type', '=', Note::RECORD_TYPE) ->value('o_gedcom'); } }