. */ /** * Class Fact - Class that defines an event details object */ class Fact { /** @var string Unique identifier for this fact (currently implemented as a hash of the raw data). */ private $fact_id; /** @var GedcomRecord The GEDCOM record from which this fact is taken */ private $parent; /** @var string The raw GEDCOM data for this fact */ private $gedcom; /** @var string The GEDCOM tag for this record */ private $tag; /** @var boolean Is this a recently deleted fact, pending approval? */ private $pending_deletion = false; /** @var boolean Is this a recently added fact, pending approval? */ private $pending_addition = false; /** @var Date The date of this fact, from the “2 DATE …” attribute */ private $date; /** @var Place The place of this fact, from the “2 PLAC …” attribute */ private $place; /** @var integer Temporary(!) variable Used by sort_facts() */ public $sortOrder; /** * Create an event object from a gedcom fragment. * We need the parent object (to check privacy) and a (pseudo) fact ID to * identify the fact within the record. * * @param string $gedcom * @param GedcomRecord $parent * @param string $fact_id * * @throws \InvalidArgumentException */ public function __construct($gedcom, GedcomRecord $parent, $fact_id) { if (preg_match('/^1 (' . WT_REGEX_TAG . ')/', $gedcom, $match)) { $this->gedcom = $gedcom; $this->parent = $parent; $this->fact_id = $fact_id; $this->tag = $match[1]; } else { throw new \InvalidArgumentException('Invalid GEDCOM data passed to Fact::_construct(' . $gedcom . ')'); } } /** * Get the value of level 1 data in the fact * Allow for multi-line values * * @return string|null */ public function getValue() { if (preg_match('/^1 (?:' . $this->tag . ') ?(.*(?:(?:\n2 CONT ?.*)*))/', $this->gedcom, $match)) { return preg_replace("/\n2 CONT ?/", "\n", $match[1]); } else { return null; } } /** * Get the record to which this fact links * * @return GedcomRecord|null */ public function getTarget() { $xref = trim($this->getValue(), '@'); switch ($this->tag) { case 'FAMC': case 'FAMS': return Family::getInstance($xref, $this->getParent()->getTree()); case 'HUSB': case 'WIFE': case 'CHIL': return Individual::getInstance($xref, $this->getParent()->getTree()); case 'SOUR': return Source::getInstance($xref, $this->getParent()->getTree()); case 'OBJE': return Media::getInstance($xref, $this->getParent()->getTree()); case 'REPO': return Repository::getInstance($xref, $this->getParent()->getTree()); case 'NOTE': return Note::getInstance($xref, $this->getParent()->getTree()); default: return GedcomRecord::getInstance($xref, $this->getParent()->getTree()); } } /** * Get the value of level 2 data in the fact * * @param string $tag * * @return string|null */ public function getAttribute($tag) { if (preg_match('/\n2 (?:' . $tag . ') ?(.*(?:(?:\n3 CONT ?.*)*)*)/', $this->gedcom, $match)) { return preg_replace("/\n3 CONT ?/", "\n", $match[1]); } else { return null; } } /** * Do the privacy rules allow us to display this fact to the current user * * @param integer|null $access_level * * @return boolean */ public function canShow($access_level = null) { if ($access_level === null) { $access_level = Auth::accessLevel($this->getParent()->getTree()); } // Does this record have an explicit RESN? if (strpos($this->gedcom, "\n2 RESN confidential")) { return Auth::PRIV_NONE >= $access_level; } if (strpos($this->gedcom, "\n2 RESN privacy")) { return Auth::PRIV_USER >= $access_level; } if (strpos($this->gedcom, "\n2 RESN none")) { return true; } // Does this record have a default RESN? $xref = $this->parent->getXref(); $fact_privacy = $this->parent->getTree()->getFactPrivacy(); $individual_fact_privacy = $this->parent->getTree()->getIndividualFactPrivacy(); if (isset($individual_fact_privacy[$xref][$this->tag])) { return $individual_fact_privacy[$xref][$this->tag] >= $access_level; } if (isset($fact_privacy[$this->tag])) { return $fact_privacy[$this->tag] >= $access_level; } // No restrictions - it must be public return true; } /** * Check whether this fact is protected against edit * * @return boolean */ public function canEdit() { // Managers can edit anything // Members cannot edit RESN, CHAN and locked records return $this->parent->canEdit() && !$this->isPendingDeletion() && ( Auth::isManager($this->parent->getTree()) || Auth::isEditor($this->parent->getTree()) && strpos($this->gedcom, "\n2 RESN locked") === false && $this->getTag() != 'RESN' && $this->getTag() != 'CHAN' ); } /** * The place where the event occured. * * @return Place */ public function getPlace() { if ($this->place === null) { $this->place = new Place($this->getAttribute('PLAC'), $this->getParent()->getTree()); } return $this->place; } /** * Get the date for this fact. * We can call this function many times, especially when sorting, * so keep a copy of the date. * * @return Date */ public function getDate() { if ($this->date === null) { $this->date = new Date($this->getAttribute('DATE')); } return $this->date; } /** * The raw GEDCOM data for this fact * * @return string */ public function getGedcom() { return $this->gedcom; } /** * Get a (pseudo) primary key for this fact. * * @return string */ public function getFactId() { return $this->fact_id; } // What sort of fact is this? /** * What is the tag (type) of this fact, such as BIRT, MARR or DEAT. * * @return string */ public function getTag() { return $this->tag; } /** * Used to convert a real fact (e.g. BIRT) into a close-relative’s fact (e.g. _BIRT_CHIL) * * @param string $tag */ public function setTag($tag) { $this->tag = $tag; } // /** * The Person/Family record where this Fact came from * * @return GedcomRecord */ public function getParent() { return $this->parent; } /** * Get the name of this fact type, for use as a label. * * @return string */ public function getLabel() { switch ($this->tag) { case 'EVEN': case 'FACT': if ($this->getAttribute('TYPE')) { // Custom FACT/EVEN - with a TYPE return I18N::translate(Filter::escapeHtml($this->getAttribute('TYPE'))); } // no break - drop into next case default: return GedcomTag::getLabel($this->tag, $this->parent); } } /** * This is a newly deleted fact, pending approval. */ public function setPendingDeletion() { $this->pending_deletion = true; $this->pending_addition = false; } /** * Is this a newly deleted fact, pending approval. * * @return boolean */ public function isPendingDeletion() { return $this->pending_deletion; } /** * This is a newly added fact, pending approval. */ public function setPendingAddition() { $this->pending_addition = true; $this->pending_deletion = false; } /** * Is this a newly added fact, pending approval. * * @return boolean */ public function isPendingAddition() { return $this->pending_addition; } /** * Source citations linked to this fact * * @return string[] */ public function getCitations() { preg_match_all('/\n(2 SOUR @(' . WT_REGEX_XREF . ')@(?:\n[3-9] .*)*)/', $this->getGedcom(), $matches, PREG_SET_ORDER); $citations = array(); foreach ($matches as $match) { $source = Source::getInstance($match[2], $this->getParent()->getTree()); if ($source->canShow()) { $citations[] = $match[1]; } } return $citations; } /** * Notes (inline and objects) linked to this fact * * @return string[]|Note[] */ public function getNotes() { $notes = array(); preg_match_all('/\n2 NOTE ?(.*(?:\n3.*)*)/', $this->getGedcom(), $matches); foreach ($matches[1] as $match) { $note = preg_replace("/\n3 CONT ?/", "\n", $match); if (preg_match('/@(' . WT_REGEX_XREF . ')@/', $note, $nmatch)) { $note = Note::getInstance($nmatch[1], $this->getParent()->getTree()); if ($note && $note->canShow()) { // A note object $notes[] = $note; } } else { // An inline note $notes[] = $note; } } return $notes; } /** * Media objects linked to this fact * * @return Media[] */ public function getMedia() { $media = array(); preg_match_all('/\n2 OBJE @(' . WT_REGEX_XREF . ')@/', $this->getGedcom(), $matches); foreach ($matches[1] as $match) { $obje = Media::getInstance($match, $this->getParent()->getTree()); if ($obje->canShow()) { $media[] = $obje; } } return $media; } /** * A one-line summary of the fact - for charts, etc. * * @return string */ public function summary() { $attributes = array(); $target = $this->getTarget(); if ($target) { $attributes[] = $target->getFullName(); } else { $value = $this->getValue(); if ($value && $value != 'Y') { $attributes[] = '' . Filter::escapeHtml($value) . ''; } $date = $this->getDate(); if ($this->getTag() == 'BIRT' && $this->getParent() instanceof Individual && $this->getParent()->getTree()->getPreference('SHOW_PARENTS_AGE')) { $attributes[] = $date->display() . format_parents_age($this->getParent(), $date); } else { $attributes[] = $date->display(); } $place = $this->getPlace()->getShortName(); if ($place) { $attributes[] = $place; } } $html = GedcomTag::getLabelValue($this->getTag(), implode(' — ', $attributes), $this->getParent()); if ($this->isPendingAddition()) { return '