.
*/
declare(strict_types=1);
namespace Fisharebest\Webtrees;
use Exception;
use Fisharebest\Webtrees\Functions\Functions;
use Fisharebest\Webtrees\Functions\FunctionsDate;
use Fisharebest\Webtrees\Functions\FunctionsImport;
use Fisharebest\Webtrees\Functions\FunctionsPrint;
use stdClass;
/**
* A GEDCOM object.
*/
class GedcomRecord
{
const RECORD_TYPE = 'UNKNOWN';
const ROUTE_NAME = 'record';
/** @var string The record identifier */
protected $xref;
/** @var Tree The family tree to which this record belongs */
protected $tree;
/** @var string GEDCOM data (before any pending edits) */
protected $gedcom;
/** @var string|null GEDCOM data (after any pending edits) */
protected $pending;
/** @var Fact[] facts extracted from $gedcom/$pending */
protected $facts;
/** @var bool Can we display details of this record to Auth::PRIV_PRIVATE */
private $disp_public;
/** @var bool Can we display details of this record to Auth::PRIV_USER */
private $disp_user;
/** @var bool Can we display details of this record to Auth::PRIV_NONE */
private $disp_none;
/** @var string[][] All the names of this individual */
protected $getAllNames;
/** @var int|null Cached result */
protected $getPrimaryName;
/** @var int|null Cached result */
protected $getSecondaryName;
/** @var GedcomRecord[][] Allow getInstance() to return references to existing objects */
protected static $gedcom_record_cache;
/** @var stdClass[][] Fetch all pending edits in one database query */
private static $pending_record_cache;
/**
* Create a GedcomRecord object 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
*/
public function __construct(string $xref, string $gedcom, $pending, Tree $tree)
{
$this->xref = $xref;
$this->gedcom = $gedcom;
$this->pending = $pending;
$this->tree = $tree;
$this->parseFacts();
}
/**
* Split the record into facts
*
* @return void
*/
private function parseFacts()
{
// Split the record into facts
if ($this->gedcom) {
$gedcom_facts = preg_split('/\n(?=1)/s', $this->gedcom);
array_shift($gedcom_facts);
} else {
$gedcom_facts = [];
}
if ($this->pending) {
$pending_facts = preg_split('/\n(?=1)/s', $this->pending);
array_shift($pending_facts);
} else {
$pending_facts = [];
}
$this->facts = [];
foreach ($gedcom_facts as $gedcom_fact) {
$fact = new Fact($gedcom_fact, $this, md5($gedcom_fact));
if ($this->pending !== null && !in_array($gedcom_fact, $pending_facts)) {
$fact->setPendingDeletion();
}
$this->facts[] = $fact;
}
foreach ($pending_facts as $pending_fact) {
if (!in_array($pending_fact, $gedcom_facts)) {
$fact = new Fact($pending_fact, $this, md5($pending_fact));
$fact->setPendingAddition();
$this->facts[] = $fact;
}
}
}
/**
* Get an instance of a GedcomRecord object. For single records,
* we just receive the XREF. For bulk records (such as lists
* and search results) we can receive the GEDCOM data as well.
*
* @param string $xref
* @param Tree $tree
* @param string|null $gedcom
*
* @throws Exception
*
* @return GedcomRecord|Individual|Family|Source|Repository|Media|Note|null
*/
public static function getInstance(string $xref, Tree $tree, string $gedcom = null)
{
$tree_id = $tree->id();
// Is this record already in the cache?
if (isset(self::$gedcom_record_cache[$xref][$tree_id])) {
return self::$gedcom_record_cache[$xref][$tree_id];
}
// Do we need to fetch the record from the database?
if ($gedcom === null) {
$gedcom = static::fetchGedcomRecord($xref, $tree_id);
}
// If we can edit, then we also need to be able to see pending records.
if (Auth::isEditor($tree)) {
if (!isset(self::$pending_record_cache[$tree_id])) {
// Fetch all pending records in one database query
self::$pending_record_cache[$tree_id] = [];
$rows = Database::prepare(
"SELECT xref, new_gedcom FROM `##change` WHERE status = 'pending' AND gedcom_id = :tree_id ORDER BY change_id"
)->execute([
'tree_id' => $tree_id,
])->fetchAll();
foreach ($rows as $row) {
self::$pending_record_cache[$tree_id][$row->xref] = $row->new_gedcom;
}
}
$pending = self::$pending_record_cache[$tree_id][$xref] ?? null;
} else {
// There are no pending changes for this record
$pending = null;
}
// No such record exists
if ($gedcom === null && $pending === null) {
return null;
}
// No such record, but a pending creation exists
if ($gedcom === null) {
$gedcom = '';
}
// Create the object
if (preg_match('/^0 @(' . WT_REGEX_XREF . ')@ (' . WT_REGEX_TAG . ')/', $gedcom . $pending, $match)) {
$xref = $match[1]; // Collation - we may have requested I123 and found i123
$type = $match[2];
} elseif (preg_match('/^0 (HEAD|TRLR)/', $gedcom . $pending, $match)) {
$xref = $match[1];
$type = $match[1];
} elseif ($gedcom . $pending) {
throw new Exception('Unrecognized GEDCOM record: ' . $gedcom);
} else {
// A record with both pending creation and pending deletion
$type = static::RECORD_TYPE;
}
switch ($type) {
case 'INDI':
$record = new Individual($xref, $gedcom, $pending, $tree);
break;
case 'FAM':
$record = new Family($xref, $gedcom, $pending, $tree);
break;
case 'SOUR':
$record = new Source($xref, $gedcom, $pending, $tree);
break;
case 'OBJE':
$record = new Media($xref, $gedcom, $pending, $tree);
break;
case 'REPO':
$record = new Repository($xref, $gedcom, $pending, $tree);
break;
case 'NOTE':
$record = new Note($xref, $gedcom, $pending, $tree);
break;
default:
$record = new self($xref, $gedcom, $pending, $tree);
break;
}
// Store it in the cache
self::$gedcom_record_cache[$xref][$tree_id] = $record;
return $record;
}
/**
* Fetch data from the database
*
* @param string $xref
* @param int $tree_id
*
* @return null|string
*/
protected static function fetchGedcomRecord(string $xref, int $tree_id)
{
// We don't know what type of object this is. Try each one in turn.
$data = Individual::fetchGedcomRecord($xref, $tree_id);
if ($data) {
return $data;
}
$data = Family::fetchGedcomRecord($xref, $tree_id);
if ($data) {
return $data;
}
$data = Source::fetchGedcomRecord($xref, $tree_id);
if ($data) {
return $data;
}
$data = Repository::fetchGedcomRecord($xref, $tree_id);
if ($data) {
return $data;
}
$data = Media::fetchGedcomRecord($xref, $tree_id);
if ($data) {
return $data;
}
$data = Note::fetchGedcomRecord($xref, $tree_id);
if ($data) {
return $data;
}
// Some other type of record...
return Database::prepare(
"SELECT o_gedcom FROM `##other` WHERE o_id = :xref AND o_file = :tree_id"
)->execute([
'xref' => $xref,
'tree_id' => $tree_id,
])->fetchOne();
}
/**
* Get the XREF for this record
*
* @return string
*/
public function getXref(): string
{
return $this->xref;
}
/**
* Get the tree to which this record belongs
*
* @return Tree
*/
public function getTree(): Tree
{
return $this->tree;
}
/**
* Application code should access data via Fact objects.
* This function exists to support old code.
*
* @return string
*/
public function getGedcom()
{
return $this->pending ?? $this->gedcom;
}
/**
* Does this record have a pending change?
*
* @return bool
*/
public function isPendingAddition(): bool
{
return $this->pending !== null;
}
/**
* Does this record have a pending deletion?
*
* @return bool
*/
public function isPendingDeletion(): bool
{
return $this->pending === '';
}
/**
* Generate a URL to this record, suitable for use in HTML, etc.
*
* @deprecated
*
* @return string
*/
public function getHtmlUrl(): string
{
return e($this->url());
}
/**
* Generate a URL to this record.
*
* @deprecated
*
* @return string
*/
public function getRawUrl(): string
{
return $this->url();
}
/**
* Generate a URL to this record.
*
* @return string
*/
public function url(): string
{
return route(static::ROUTE_NAME, [
'xref' => $this->getXref(),
'ged' => $this->tree->name(),
]);
}
/**
* Work out whether this record can be shown to a user with a given access level
*
* @param int $access_level
*
* @return bool
*/
private function canShowRecord(int $access_level): bool
{
// This setting would better be called "$ENABLE_PRIVACY"
if (!$this->tree->getPreference('HIDE_LIVE_PEOPLE')) {
return true;
}
// We should always be able to see our own record (unless an admin is applying download restrictions)
if ($this->getXref() === $this->tree->getUserPreference(Auth::user(), 'gedcomid') && $access_level === Auth::accessLevel($this->tree)) {
return true;
}
// Does this record have a RESN?
if (strpos($this->gedcom, "\n1 RESN confidential") !== false) {
return Auth::PRIV_NONE >= $access_level;
}
if (strpos($this->gedcom, "\n1 RESN privacy") !== false) {
return Auth::PRIV_USER >= $access_level;
}
if (strpos($this->gedcom, "\n1 RESN none") !== false) {
return true;
}
// Does this record have a default RESN?
$individual_privacy = $this->tree->getIndividualPrivacy();
if (isset($individual_privacy[$this->getXref()])) {
return $individual_privacy[$this->getXref()] >= $access_level;
}
// Privacy rules do not apply to admins
if (Auth::PRIV_NONE >= $access_level) {
return true;
}
// Different types of record have different privacy rules
return $this->canShowByType($access_level);
}
/**
* Each object type may have its own special rules, and re-implement this function.
*
* @param int $access_level
*
* @return bool
*/
protected function canShowByType(int $access_level): bool
{
$fact_privacy = $this->tree->getFactPrivacy();
if (isset($fact_privacy[static::RECORD_TYPE])) {
// Restriction found
return $fact_privacy[static::RECORD_TYPE] >= $access_level;
}
// No restriction found - must be public:
return true;
}
/**
* Can the details of this record be shown?
*
* @param int|null $access_level
*
* @return bool
*/
public function canShow(int $access_level = null): bool
{
if ($access_level === null) {
$access_level = Auth::accessLevel($this->tree);
}
// CACHING: this function can take three different parameters,
// and therefore needs three different caches for the result.
switch ($access_level) {
case Auth::PRIV_PRIVATE: // visitor
if ($this->disp_public === null) {
$this->disp_public = $this->canShowRecord(Auth::PRIV_PRIVATE);
}
return $this->disp_public;
case Auth::PRIV_USER: // member
if ($this->disp_user === null) {
$this->disp_user = $this->canShowRecord(Auth::PRIV_USER);
}
return $this->disp_user;
case Auth::PRIV_NONE: // admin
if ($this->disp_none === null) {
$this->disp_none = $this->canShowRecord(Auth::PRIV_NONE);
}
return $this->disp_none;
case Auth::PRIV_HIDE: // hidden from admins
// We use this value to bypass privacy checks. For example,
// when downloading data or when calculating privacy itself.
return true;
default:
// Should never get here.
return false;
}
}
/**
* Can the name of this record be shown?
*
* @param int|null $access_level
*
* @return bool
*/
public function canShowName(int $access_level = null): bool
{
if ($access_level === null) {
$access_level = Auth::accessLevel($this->tree);
}
return $this->canShow($access_level);
}
/**
* Can we edit this record?
*
* @return bool
*/
public function canEdit(): bool
{
return Auth::isManager($this->tree) || Auth::isEditor($this->tree) && strpos($this->gedcom, "\n1 RESN locked") === false;
}
/**
* Remove private data from the raw gedcom record.
* Return both the visible and invisible data. We need the invisible data when editing.
*
* @param int $access_level
*
* @return string
*/
public function privatizeGedcom(int $access_level)
{
if ($access_level == Auth::PRIV_HIDE) {
// We may need the original record, for example when downloading a GEDCOM or clippings cart
return $this->gedcom;
}
if ($this->canShow($access_level)) {
// The record is not private, but the individual facts may be.
// Include the entire first line (for NOTE records)
list($gedrec) = explode("\n", $this->gedcom, 2);
// Check each of the facts for access
foreach ($this->getFacts('', false, $access_level) as $fact) {
$gedrec .= "\n" . $fact->gedcom();
}
return $gedrec;
}
// We cannot display the details, but we may be able to display
// limited data, such as links to other records.
return $this->createPrivateGedcomRecord($access_level);
}
/**
* Generate a private version of this record
*
* @param int $access_level
*
* @return string
*/
protected function createPrivateGedcomRecord(int $access_level): string
{
return '0 @' . $this->xref . '@ ' . static::RECORD_TYPE . "\n1 NOTE " . I18N::translate('Private');
}
/**
* Convert a name record into sortable and full/display versions. This default
* should be OK for simple record types. INDI/FAM records will need to redefine it.
*
* @param string $type
* @param string $value
* @param string $gedcom
*
* @return void
*/
protected function addName(string $type, string $value, string $gedcom)
{
$this->getAllNames[] = [
'type' => $type,
'sort' => preg_replace_callback('/([0-9]+)/', function (array $matches): string {
return str_pad($matches[0], 10, '0', STR_PAD_LEFT);
}, $value),
'full' => '' . e($value) . '',
// This is used for display
'fullNN' => $value,
// This goes into the database
];
}
/**
* Get all the names of a record, including ROMN, FONE and _HEB alternatives.
* Records without a name (e.g. FAM) will need to redefine this function.
* Parameters: the level 1 fact containing the name.
* Return value: an array of name structures, each containing
* ['type'] = the gedcom fact, e.g. NAME, TITL, FONE, _HEB, etc.
* ['full'] = the name as specified in the record, e.g. 'Vincent van Gogh' or 'John Unknown'
* ['sort'] = a sortable version of the name (not for display), e.g. 'Gogh, Vincent' or '@N.N., John'
*
* @param int $level
* @param string $fact_type
* @param Fact[] $facts
*
* @return void
*/
protected function extractNamesFromFacts(int $level, string $fact_type, array $facts)
{
$sublevel = $level + 1;
$subsublevel = $sublevel + 1;
foreach ($facts as $fact) {
if (preg_match_all("/^{$level} ({$fact_type}) (.+)((\n[{$sublevel}-9].+)*)/m", $fact->gedcom(), $matches, PREG_SET_ORDER)) {
foreach ($matches as $match) {
// Treat 1 NAME / 2 TYPE married the same as _MARNM
if ($match[1] == 'NAME' && strpos($match[3], "\n2 TYPE married") !== false) {
$this->addName('_MARNM', $match[2], $fact->gedcom());
} else {
$this->addName($match[1], $match[2], $fact->gedcom());
}
if ($match[3] && preg_match_all("/^{$sublevel} (ROMN|FONE|_\w+) (.+)((\n[{$subsublevel}-9].+)*)/m", $match[3], $submatches, PREG_SET_ORDER)) {
foreach ($submatches as $submatch) {
$this->addName($submatch[1], $submatch[2], $match[3]);
}
}
}
}
}
}
/**
* Default for "other" object types
*
* @return void
*/
public function extractNames()
{
$this->addName(static::RECORD_TYPE, $this->getFallBackName(), '');
}
/**
* Derived classes should redefine this function, otherwise the object will have no name
*
* @return string[][]
*/
public function getAllNames(): array
{
if ($this->getAllNames === null) {
$this->getAllNames = [];
if ($this->canShowName()) {
// Ask the record to extract its names
$this->extractNames();
// No name found? Use a fallback.
if (!$this->getAllNames) {
$this->addName(static::RECORD_TYPE, $this->getFallBackName(), '');
}
} else {
$this->addName(static::RECORD_TYPE, I18N::translate('Private'), '');
}
}
return $this->getAllNames;
}
/**
* If this object has no name, what do we call it?
*
* @return string
*/
public function getFallBackName(): string
{
return e($this->getXref());
}
/**
* Which of the (possibly several) names of this record is the primary one.
*
* @return int
*/
public function getPrimaryName(): int
{
static $language_script;
if ($language_script === null) {
$language_script = I18N::languageScript(WT_LOCALE);
}
if ($this->getPrimaryName === null) {
// Generally, the first name is the primary one....
$this->getPrimaryName = 0;
// ...except when the language/name use different character sets
foreach ($this->getAllNames() as $n => $name) {
if (I18N::textScript($name['sort']) === $language_script) {
$this->getPrimaryName = $n;
break;
}
}
}
return $this->getPrimaryName;
}
/**
* Which of the (possibly several) names of this record is the secondary one.
*
* @return int
*/
public function getSecondaryName(): int
{
if ($this->getSecondaryName === null) {
// Generally, the primary and secondary names are the same
$this->getSecondaryName = $this->getPrimaryName();
// ....except when there are names with different character sets
$all_names = $this->getAllNames();
if (count($all_names) > 1) {
$primary_script = I18N::textScript($all_names[$this->getPrimaryName()]['sort']);
foreach ($all_names as $n => $name) {
if ($n != $this->getPrimaryName() && $name['type'] != '_MARNM' && I18N::textScript($name['sort']) != $primary_script) {
$this->getSecondaryName = $n;
break;
}
}
}
}
return $this->getSecondaryName;
}
/**
* Allow the choice of primary name to be overidden, e.g. in a search result
*
* @param int|null $n
*
* @return void
*/
public function setPrimaryName(int $n = null)
{
$this->getPrimaryName = $n;
$this->getSecondaryName = null;
}
/**
* Allow native PHP functions such as array_unique() to work with objects
*
* @return string
*/
public function __toString()
{
return $this->xref . '@' . $this->tree->id();
}
/**
* Static helper function to sort an array of objects by name
* Records whose names cannot be displayed are sorted at the end.
*
* @param GedcomRecord $x
* @param GedcomRecord $y
*
* @return int
*/
public static function compare(GedcomRecord $x, GedcomRecord $y)
{
if ($x->canShowName()) {
if ($y->canShowName()) {
return I18N::strcasecmp($x->getSortName(), $y->getSortName());
}
return -1; // only $y is private
}
if ($y->canShowName()) {
return 1; // only $x is private
}
return 0; // both $x and $y private
}
/**
* Get variants of the name
*
* @return string
*/
public function getFullName()
{
if ($this->canShowName()) {
$tmp = $this->getAllNames();
return $tmp[$this->getPrimaryName()]['full'];
}
return I18N::translate('Private');
}
/**
* Get a sortable version of the name. Do not display this!
*
* @return string
*/
public function getSortName(): string
{
// The sortable name is never displayed, no need to call canShowName()
$tmp = $this->getAllNames();
return $tmp[$this->getPrimaryName()]['sort'];
}
/**
* Get the full name in an alternative character set
*
* @return null|string
*/
public function getAddName()
{
if ($this->canShowName() && $this->getPrimaryName() != $this->getSecondaryName()) {
$all_names = $this->getAllNames();
return $all_names[$this->getSecondaryName()]['full'];
}
return null;
}
/**
* Format this object for display in a list
*
* @return string
*/
public function formatList(): string
{
$html = '';
$html .= '' . $this->getFullName() . '';
$html .= $this->formatListDetails();
$html .= '';
return $html;
}
/**
* This function should be redefined in derived classes to show any major
* identifying characteristics of this record.
*
* @return string
*/
public function formatListDetails(): string
{
return '';
}
/**
* Extract/format the first fact from a list of facts.
*
* @param string $facts
* @param int $style
*
* @return string
*/
public function formatFirstMajorFact(string $facts, int $style): string
{
foreach ($this->getFacts($facts, true) as $event) {
// Only display if it has a date or place (or both)
if ($event->date()->isOK() && !$event->place()->isEmpty()) {
$joiner = ' — ';
} else {
$joiner = '';
}
if ($event->date()->isOK() || !$event->place()->isEmpty()) {
switch ($style) {
case 1:
return '
' . $event->label() . ' ' . FunctionsPrint::formatFactDate($event, $this, false, false) . $joiner . FunctionsPrint::formatFactPlace($event) . '';
case 2:
return '