1<?php 2namespace Fisharebest\Webtrees; 3 4/** 5 * webtrees: online genealogy 6 * Copyright (C) 2015 webtrees development team 7 * This program is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 18 19/** 20 * Class Fact - Class that defines an event details object 21 */ 22class Fact { 23 /** @var string Unique identifier for this fact (currently implemented as a hash of the raw data). */ 24 private $fact_id; 25 26 /** @var GedcomRecord The GEDCOM record from which this fact is taken */ 27 private $parent; 28 29 /** @var string The raw GEDCOM data for this fact */ 30 private $gedcom; 31 32 /** @var string The GEDCOM tag for this record */ 33 private $tag; 34 35 /** @var boolean Is this a recently deleted fact, pending approval? */ 36 private $pending_deletion = false; 37 38 /** @var boolean Is this a recently added fact, pending approval? */ 39 private $pending_addition = false; 40 41 /** @var Date The date of this fact, from the “2 DATE …” attribute */ 42 private $date; 43 44 /** @var Place The place of this fact, from the “2 PLAC …” attribute */ 45 private $place; 46 47 /** @var integer Temporary(!) variable Used by sort_facts() */ 48 public $sortOrder; 49 50 /** 51 * Create an event object from a gedcom fragment. 52 * We need the parent object (to check privacy) and a (pseudo) fact ID to 53 * identify the fact within the record. 54 * 55 * @param string $gedcom 56 * @param GedcomRecord $parent 57 * @param string $fact_id 58 * 59 * @throws \InvalidArgumentException 60 */ 61 public function __construct($gedcom, GedcomRecord $parent, $fact_id) { 62 if (preg_match('/^1 (' . WT_REGEX_TAG . ')/', $gedcom, $match)) { 63 $this->gedcom = $gedcom; 64 $this->parent = $parent; 65 $this->fact_id = $fact_id; 66 $this->tag = $match[1]; 67 } else { 68 throw new \InvalidArgumentException('Invalid GEDCOM data passed to Fact::_construct(' . $gedcom . ')'); 69 } 70 } 71 72 /** 73 * Get the value of level 1 data in the fact 74 * Allow for multi-line values 75 * 76 * @return string|null 77 */ 78 public function getValue() { 79 if (preg_match('/^1 (?:' . $this->tag . ') ?(.*(?:(?:\n2 CONT ?.*)*))/', $this->gedcom, $match)) { 80 return preg_replace("/\n2 CONT ?/", "\n", $match[1]); 81 } else { 82 return null; 83 } 84 } 85 86 /** 87 * Get the record to which this fact links 88 * 89 * @return GedcomRecord|null 90 */ 91 public function getTarget() { 92 $xref = trim($this->getValue(), '@'); 93 switch ($this->tag) { 94 case 'FAMC': 95 case 'FAMS': 96 return Family::getInstance($xref, $this->getParent()->getTree()->getTreeId()); 97 case 'HUSB': 98 case 'WIFE': 99 case 'CHIL': 100 return Individual::getInstance($xref, $this->getParent()->getTree()->getTreeId()); 101 case 'SOUR': 102 return Source::getInstance($xref, $this->getParent()->getTree()->getTreeId()); 103 case 'OBJE': 104 return Media::getInstance($xref, $this->getParent()->getTree()->getTreeId()); 105 case 'REPO': 106 return Repository::getInstance($xref, $this->getParent()->getTree()->getTreeId()); 107 case 'NOTE': 108 return Note::getInstance($xref, $this->getParent()->getTree()->getTreeId()); 109 default: 110 return GedcomRecord::getInstance($xref, $this->getParent()->getTree()->getTreeId()); 111 } 112 } 113 114 /** 115 * Get the value of level 2 data in the fact 116 * 117 * @param string $tag 118 * 119 * @return string|null 120 */ 121 public function getAttribute($tag) { 122 if (preg_match('/\n2 (?:' . $tag . ') ?(.*(?:(?:\n3 CONT ?.*)*)*)/', $this->gedcom, $match)) { 123 return preg_replace("/\n3 CONT ?/", "\n", $match[1]); 124 } else { 125 return null; 126 } 127 } 128 129 /** 130 * Do the privacy rules allow us to display this fact to the current user 131 * 132 * @param integer|null $access_level 133 * 134 * @return boolean 135 */ 136 public function canShow($access_level = null) { 137 if ($access_level === null) { 138 $access_level = Auth::accessLevel($this->getParent()->getTree()); 139 } 140 141 // Does this record have an explicit RESN? 142 if (strpos($this->gedcom, "\n2 RESN confidential")) { 143 return Auth::PRIV_NONE >= $access_level; 144 } 145 if (strpos($this->gedcom, "\n2 RESN privacy")) { 146 return Auth::PRIV_USER >= $access_level; 147 } 148 if (strpos($this->gedcom, "\n2 RESN none")) { 149 return true; 150 } 151 152 // Does this record have a default RESN? 153 $xref = $this->parent->getXref(); 154 $fact_privacy = $this->parent->getTree()->getFactPrivacy(); 155 $individual_fact_privacy = $this->parent->getTree()->getIndividualFactPrivacy(); 156 if (isset($individual_fact_privacy[$xref][$this->tag])) { 157 return $individual_fact_privacy[$xref][$this->tag] >= $access_level; 158 } 159 if (isset($fact_privacy[$this->tag])) { 160 return $fact_privacy[$this->tag] >= $access_level; 161 } 162 163 // No restrictions - it must be public 164 return true; 165 } 166 167 /** 168 * Check whether this fact is protected against edit 169 * 170 * @return boolean 171 */ 172 public function canEdit() { 173 // Managers can edit anything 174 // Members cannot edit RESN, CHAN and locked records 175 return 176 $this->parent->canEdit() && !$this->isPendingDeletion() && ( 177 Auth::isManager($this->parent->getTree()) || 178 Auth::isEditor($this->parent->getTree()) && strpos($this->gedcom, "\n2 RESN locked") === false && $this->getTag() != 'RESN' && $this->getTag() != 'CHAN' 179 ); 180 } 181 182 /** 183 * The place where the event occured. 184 * 185 * @return Place 186 */ 187 public function getPlace() { 188 if ($this->place === null) { 189 $this->place = new Place($this->getAttribute('PLAC'), $this->getParent()->getTree()); 190 } 191 192 return $this->place; 193 } 194 195 /** 196 * Get the date for this fact. 197 * We can call this function many times, especially when sorting, 198 * so keep a copy of the date. 199 * 200 * @return Date 201 */ 202 public function getDate() { 203 if ($this->date === null) { 204 $this->date = new Date($this->getAttribute('DATE')); 205 } 206 207 return $this->date; 208 } 209 210 /** 211 * The raw GEDCOM data for this fact 212 * 213 * @return string 214 */ 215 public function getGedcom() { 216 return $this->gedcom; 217 } 218 219 /** 220 * Get a (pseudo) primary key for this fact. 221 * 222 * @return string 223 */ 224 public function getFactId() { 225 return $this->fact_id; 226 } 227 228 // What sort of fact is this? 229 /** 230 * What is the tag (type) of this fact, such as BIRT, MARR or DEAT. 231 * 232 * @return string 233 */ 234 public function getTag() { 235 return $this->tag; 236 } 237 238 /** 239 * Used to convert a real fact (e.g. BIRT) into a close-relative’s fact (e.g. _BIRT_CHIL) 240 * 241 * @param string $tag 242 */ 243 public function setTag($tag) { 244 $this->tag = $tag; 245 } 246 247 // 248 /** 249 * The Person/Family record where this Fact came from 250 * 251 * @return GedcomRecord 252 */ 253 public function getParent() { 254 return $this->parent; 255 } 256 257 /** 258 * Get the name of this fact type, for use as a label. 259 * 260 * @return string 261 */ 262 public function getLabel() { 263 switch ($this->tag) { 264 case 'EVEN': 265 case 'FACT': 266 if ($this->getAttribute('TYPE')) { 267 // Custom FACT/EVEN - with a TYPE 268 return I18N::translate(Filter::escapeHtml($this->getAttribute('TYPE'))); 269 } 270 // no break - drop into next case 271 default: 272 return GedcomTag::getLabel($this->tag, $this->parent); 273 } 274 } 275 276 /** 277 * This is a newly deleted fact, pending approval. 278 */ 279 public function setPendingDeletion() { 280 $this->pending_deletion = true; 281 $this->pending_addition = false; 282 } 283 284 /** 285 * Is this a newly deleted fact, pending approval. 286 * 287 * @return boolean 288 */ 289 public function isPendingDeletion() { 290 return $this->pending_deletion; 291 } 292 293 /** 294 * This is a newly added fact, pending approval. 295 */ 296 public function setPendingAddition() { 297 $this->pending_addition = true; 298 $this->pending_deletion = false; 299 } 300 301 /** 302 * Is this a newly added fact, pending approval. 303 * 304 * @return boolean 305 */ 306 public function isPendingAddition() { 307 return $this->pending_addition; 308 } 309 310 /** 311 * Source citations linked to this fact 312 * 313 * @return string[] 314 */ 315 public function getCitations() { 316 preg_match_all('/\n(2 SOUR @(' . WT_REGEX_XREF . ')@(?:\n[3-9] .*)*)/', $this->getGedcom(), $matches, PREG_SET_ORDER); 317 $citations = array(); 318 foreach ($matches as $match) { 319 $source = Source::getInstance($match[2], $this->getParent()->getTree()->getTreeId()); 320 if ($source->canShow()) { 321 $citations[] = $match[1]; 322 } 323 } 324 325 return $citations; 326 } 327 328 /** 329 * Notes (inline and objects) linked to this fact 330 * 331 * @return string[]|Note[] 332 */ 333 public function getNotes() { 334 $notes = array(); 335 preg_match_all('/\n2 NOTE ?(.*(?:\n3.*)*)/', $this->getGedcom(), $matches); 336 foreach ($matches[1] as $match) { 337 $note = preg_replace("/\n3 CONT ?/", "\n", $match); 338 if (preg_match('/@(' . WT_REGEX_XREF . ')@/', $note, $nmatch)) { 339 $note = Note::getInstance($nmatch[1], $this->getParent()->getTree()->getTreeId()); 340 if ($note && $note->canShow()) { 341 // A note object 342 $notes[] = $note; 343 } 344 } else { 345 // An inline note 346 $notes[] = $note; 347 } 348 } 349 350 return $notes; 351 } 352 353 /** 354 * Media objects linked to this fact 355 * 356 * @return Media[] 357 */ 358 public function getMedia() { 359 $media = array(); 360 preg_match_all('/\n2 OBJE @(' . WT_REGEX_XREF . ')@/', $this->getGedcom(), $matches); 361 foreach ($matches[1] as $match) { 362 $obje = Media::getInstance($match, $this->getParent()->getTree()->getTreeId()); 363 if ($obje->canShow()) { 364 $media[] = $obje; 365 } 366 } 367 368 return $media; 369 } 370 371 /** 372 * A one-line summary of the fact - for charts, etc. 373 * 374 * @return string 375 */ 376 public function summary() { 377 $attributes = array(); 378 $target = $this->getTarget(); 379 if ($target) { 380 $attributes[] = $target->getFullName(); 381 } else { 382 $value = $this->getValue(); 383 if ($value && $value != 'Y') { 384 $attributes[] = '<span dir="auto">' . Filter::escapeHtml($value) . '</span>'; 385 } 386 $date = $this->getDate(); 387 if ($this->getTag() == 'BIRT' && $this->getParent() instanceof Individual && $this->getParent()->getTree()->getPreference('SHOW_PARENTS_AGE')) { 388 $attributes[] = $date->display() . format_parents_age($this->getParent(), $date); 389 } else { 390 $attributes[] = $date->display(); 391 } 392 $place = $this->getPlace()->getShortName(); 393 if ($place) { 394 $attributes[] = $place; 395 } 396 } 397 $html = GedcomTag::getLabelValue($this->getTag(), implode(' — ', $attributes), $this->getParent()); 398 if ($this->isPendingAddition()) { 399 return '<div class="new">' . $html . '</div>'; 400 } elseif ($this->isPendingDeletion()) { 401 return '<div class="old">' . $html . '</div>'; 402 } else { 403 return $html; 404 } 405 } 406 407 /** 408 * Static Helper functions to sort events 409 * 410 * @param Fact $a Fact one 411 * @param Fact $b Fact two 412 * 413 * @return integer 414 */ 415 public static function compareDate(Fact $a, Fact $b) { 416 if ($a->getDate()->isOK() && $b->getDate()->isOK()) { 417 // If both events have dates, compare by date 418 $ret = Date::compare($a->getDate(), $b->getDate()); 419 420 if ($ret == 0) { 421 // If dates are the same, compare by fact type 422 $ret = self::compareType($a, $b); 423 424 // If the fact type is also the same, retain the initial order 425 if ($ret == 0) { 426 $ret = $a->sortOrder - $b->sortOrder; 427 } 428 } 429 430 return $ret; 431 } else { 432 // One or both events have no date - retain the initial order 433 return $a->sortOrder - $b->sortOrder; 434 } 435 } 436 437 /** 438 * Static method to compare two events by their type. 439 * 440 * @param Fact $a Fact one 441 * @param Fact $b Fact two 442 * 443 * @return integer 444 */ 445 public static function compareType(Fact $a, Fact $b) { 446 global $factsort; 447 448 if (empty($factsort)) { 449 $factsort = array_flip( 450 array( 451 'BIRT', 452 '_HNM', 453 'ALIA', '_AKA', '_AKAN', 454 'ADOP', '_ADPF', '_ADPF', 455 '_BRTM', 456 'CHR', 'BAPM', 457 'FCOM', 458 'CONF', 459 'BARM', 'BASM', 460 'EDUC', 461 'GRAD', 462 '_DEG', 463 'EMIG', 'IMMI', 464 'NATU', 465 '_MILI', '_MILT', 466 'ENGA', 467 'MARB', 'MARC', 'MARL', '_MARI', '_MBON', 468 'MARR', 'MARR_CIVIL', 'MARR_RELIGIOUS', 'MARR_PARTNERS', 'MARR_UNKNOWN', '_COML', 469 '_STAT', 470 '_SEPR', 471 'DIVF', 472 'MARS', 473 '_BIRT_CHIL', 474 'DIV', 'ANUL', 475 '_BIRT_', '_MARR_', '_DEAT_', '_BURI_', // other events of close relatives 476 'CENS', 477 'OCCU', 478 'RESI', 479 'PROP', 480 'CHRA', 481 'RETI', 482 'FACT', 'EVEN', 483 '_NMR', '_NMAR', 'NMR', 484 'NCHI', 485 'WILL', 486 '_HOL', 487 '_????_', 488 'DEAT', 489 '_FNRL', 'CREM', 'BURI', '_INTE', 490 '_YART', 491 '_NLIV', 492 'PROB', 493 'TITL', 494 'COMM', 495 'NATI', 496 'CITN', 497 'CAST', 498 'RELI', 499 'SSN', 'IDNO', 500 'TEMP', 501 'SLGC', 'BAPL', 'CONL', 'ENDL', 'SLGS', 502 'ADDR', 'PHON', 'EMAIL', '_EMAIL', 'EMAL', 'FAX', 'WWW', 'URL', '_URL', 503 'FILE', // For media objects 504 'AFN', 'REFN', '_PRMN', 'REF', 'RIN', '_UID', 505 'OBJE', 'NOTE', 'SOUR', 506 'CHAN', '_TODO', 507 ) 508 ); 509 } 510 511 // Facts from same families stay grouped together 512 // Keep MARR and DIV from the same families from mixing with events from other FAMs 513 // Use the original order in which the facts were added 514 if ($a->parent instanceof Family && $b->parent instanceof Family && $a->parent !== $b->parent) { 515 return $a->sortOrder - $b->sortOrder; 516 } 517 518 $atag = $a->getTag(); 519 $btag = $b->getTag(); 520 521 // Events not in the above list get mapped onto one that is. 522 if (!array_key_exists($atag, $factsort)) { 523 if (preg_match('/^(_(BIRT|MARR|DEAT|BURI)_)/', $atag, $match)) { 524 $atag = $match[1]; 525 } else { 526 $atag = "_????_"; 527 } 528 } 529 530 if (!array_key_exists($btag, $factsort)) { 531 if (preg_match('/^(_(BIRT|MARR|DEAT|BURI)_)/', $btag, $match)) { 532 $btag = $match[1]; 533 } else { 534 $btag = "_????_"; 535 } 536 } 537 538 // - Don't let dated after DEAT/BURI facts sort non-dated facts before DEAT/BURI 539 // - Treat dated after BURI facts as BURI instead 540 if ($a->getAttribute('DATE') != null && $factsort[$atag] > $factsort['BURI'] && $factsort[$atag] < $factsort['CHAN']) { 541 $atag = 'BURI'; 542 } 543 544 if ($b->getAttribute('DATE') != null && $factsort[$btag] > $factsort['BURI'] && $factsort[$btag] < $factsort['CHAN']) { 545 $btag = 'BURI'; 546 } 547 548 $ret = $factsort[$atag] - $factsort[$btag]; 549 550 // If facts are the same then put dated facts before non-dated facts 551 if ($ret == 0) { 552 if ($a->getAttribute('DATE') != null && $b->getAttribute('DATE') == null) { 553 return -1; 554 } 555 556 if ($b->getAttribute('DATE') != null && $a->getAttribute('DATE') == null) { 557 return 1; 558 } 559 560 // If no sorting preference, then keep original ordering 561 $ret = $a->sortOrder - $b->sortOrder; 562 } 563 564 return $ret; 565 } 566 567 /** 568 * Allow native PHP functions such as array_unique() to work with objects 569 * 570 * @return string 571 */ 572 public function __toString() { 573 return $this->fact_id . '@' . $this->parent->getXref(); 574 } 575} 576