xref: /webtrees/app/Individual.php (revision 06ef8e025079fd29d56aff675f7e1fed723f571f)
1a25f0a04SGreg Roach<?php
2dd04c183SGreg Roachnamespace Fisharebest\Webtrees;
3a25f0a04SGreg Roach
4a25f0a04SGreg Roach/**
5a25f0a04SGreg Roach * webtrees: online genealogy
6a25f0a04SGreg Roach * Copyright (C) 2015 webtrees development team
7a25f0a04SGreg Roach * This program is free software: you can redistribute it and/or modify
8a25f0a04SGreg Roach * it under the terms of the GNU General Public License as published by
9a25f0a04SGreg Roach * the Free Software Foundation, either version 3 of the License, or
10a25f0a04SGreg Roach * (at your option) any later version.
11a25f0a04SGreg Roach * This program is distributed in the hope that it will be useful,
12a25f0a04SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
13a25f0a04SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14a25f0a04SGreg Roach * GNU General Public License for more details.
15a25f0a04SGreg Roach * You should have received a copy of the GNU General Public License
16a25f0a04SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
17a25f0a04SGreg Roach */
18a25f0a04SGreg Roach
19a25f0a04SGreg Roachuse Fisharebest\ExtCalendar\GregorianCalendar;
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomCode\GedcomCodePedi;
21a25f0a04SGreg Roach
22a25f0a04SGreg Roach/**
23a25f0a04SGreg Roach * Class Individual - Class file for an individual
24a25f0a04SGreg Roach */
25a25f0a04SGreg Roachclass Individual extends GedcomRecord {
26a25f0a04SGreg Roach	const RECORD_TYPE = 'INDI';
27a25f0a04SGreg Roach	const URL_PREFIX  = 'individual.php?pid=';
28a25f0a04SGreg Roach
29ffd703eaSGreg Roach	public $generation; // used in some lists to keep track of this individual’s generation in that list
30a25f0a04SGreg Roach
31a25f0a04SGreg Roach	/** @var Date The estimated date of birth */
32a25f0a04SGreg Roach	private $_getEstimatedBirthDate;
33a25f0a04SGreg Roach
34a25f0a04SGreg Roach	/** @var Date The estimated date of death */
35a25f0a04SGreg Roach	private $_getEstimatedDeathDate;
36a25f0a04SGreg Roach
37a25f0a04SGreg Roach	/**
38395f0fe0SGreg Roach	 * Sometimes, we'll know in advance that we need to load a set of records.
39395f0fe0SGreg Roach	 * Typically when we load families and their members.
40395f0fe0SGreg Roach	 *
41395f0fe0SGreg Roach	 * @param Tree  $tree
424a8aaa00SScrutinizer Auto-Fixer	 * @param string[] $xrefs
43395f0fe0SGreg Roach	 */
44395f0fe0SGreg Roach	public static function load(Tree $tree, array $xrefs) {
45395f0fe0SGreg Roach		$sql  = '';
46395f0fe0SGreg Roach		$args = array(
47395f0fe0SGreg Roach			'tree_id' => $tree->getTreeId(),
48395f0fe0SGreg Roach		);
49395f0fe0SGreg Roach
50395f0fe0SGreg Roach		foreach (array_unique($xrefs) as $n => $xref) {
51395f0fe0SGreg Roach			if (!isset(self::$gedcom_record_cache[$tree->getTreeId()][$xref])) {
52395f0fe0SGreg Roach				$sql .= ($n ? ',:x' : ':x') . $n;
53395f0fe0SGreg Roach				$args['x' . $n] = $xref;
54395f0fe0SGreg Roach			}
55395f0fe0SGreg Roach		}
56395f0fe0SGreg Roach
57395f0fe0SGreg Roach		if (count($args) > 1) {
58395f0fe0SGreg Roach			$rows = Database::prepare(
59395f0fe0SGreg Roach				"SELECT i_id AS xref, i_gedcom AS gedcom" .
60395f0fe0SGreg Roach				" FROM `##individuals`" .
61395f0fe0SGreg Roach				" WHERE i_file = :tree_id AND i_id IN (" . $sql . ")"
62395f0fe0SGreg Roach			)->execute(
63395f0fe0SGreg Roach				$args
64395f0fe0SGreg Roach			)->fetchAll();
65395f0fe0SGreg Roach
66395f0fe0SGreg Roach			foreach ($rows as $row) {
67395f0fe0SGreg Roach				self::getInstance($row->xref, $tree, $row->gedcom);
68395f0fe0SGreg Roach			}
69395f0fe0SGreg Roach		}
70395f0fe0SGreg Roach	}
71395f0fe0SGreg Roach
72395f0fe0SGreg Roach	/**
73a25f0a04SGreg Roach	 * Can the name of this record be shown?
74a25f0a04SGreg Roach	 *
75a25f0a04SGreg Roach	 * {@inheritdoc}
76a25f0a04SGreg Roach	 */
774b9ff166SGreg Roach	public function canShowName($access_level = null) {
784b9ff166SGreg Roach		if ($access_level === null) {
794b9ff166SGreg Roach			$access_level = Auth::accessLevel($this->tree);
804b9ff166SGreg Roach		}
814b9ff166SGreg Roach
82518bbdc1SGreg Roach		return $this->tree->getPreference('SHOW_LIVING_NAMES') >= $access_level || $this->canShow($access_level);
83a25f0a04SGreg Roach	}
84a25f0a04SGreg Roach
85a25f0a04SGreg Roach	/**
86a25f0a04SGreg Roach	 * Implement individual-specific privacy logic
87a25f0a04SGreg Roach	 *
88a25f0a04SGreg Roach	 * {@inheritdoc}
89a25f0a04SGreg Roach	 */
90a25f0a04SGreg Roach	protected function canShowByType($access_level) {
9124ec66ceSGreg Roach		global $WT_TREE;
9224ec66ceSGreg Roach
93a25f0a04SGreg Roach		// Dead people...
94518bbdc1SGreg Roach		if ($this->tree->getPreference('SHOW_DEAD_PEOPLE') >= $access_level && $this->isDead()) {
95a25f0a04SGreg Roach			$keep_alive             = false;
96518bbdc1SGreg Roach			$KEEP_ALIVE_YEARS_BIRTH = $this->tree->getPreference('KEEP_ALIVE_YEARS_BIRTH');
97a25f0a04SGreg Roach			if ($KEEP_ALIVE_YEARS_BIRTH) {
98a25f0a04SGreg Roach				preg_match_all('/\n1 (?:' . WT_EVENTS_BIRT . ').*(?:\n[2-9].*)*(?:\n2 DATE (.+))/', $this->gedcom, $matches, PREG_SET_ORDER);
99a25f0a04SGreg Roach				foreach ($matches as $match) {
100a25f0a04SGreg Roach					$date = new Date($match[1]);
101a25f0a04SGreg Roach					if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_BIRTH > date('Y')) {
102a25f0a04SGreg Roach						$keep_alive = true;
103a25f0a04SGreg Roach						break;
104a25f0a04SGreg Roach					}
105a25f0a04SGreg Roach				}
106a25f0a04SGreg Roach			}
107518bbdc1SGreg Roach			$KEEP_ALIVE_YEARS_DEATH = $this->tree->getPreference('KEEP_ALIVE_YEARS_DEATH');
108a25f0a04SGreg Roach			if ($KEEP_ALIVE_YEARS_DEATH) {
109a25f0a04SGreg Roach				preg_match_all('/\n1 (?:' . WT_EVENTS_DEAT . ').*(?:\n[2-9].*)*(?:\n2 DATE (.+))/', $this->gedcom, $matches, PREG_SET_ORDER);
110a25f0a04SGreg Roach				foreach ($matches as $match) {
111a25f0a04SGreg Roach					$date = new Date($match[1]);
112a25f0a04SGreg Roach					if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_DEATH > date('Y')) {
113a25f0a04SGreg Roach						$keep_alive = true;
114a25f0a04SGreg Roach						break;
115a25f0a04SGreg Roach					}
116a25f0a04SGreg Roach				}
117a25f0a04SGreg Roach			}
118a25f0a04SGreg Roach			if (!$keep_alive) {
119a25f0a04SGreg Roach				return true;
120a25f0a04SGreg Roach			}
121a25f0a04SGreg Roach		}
122a25f0a04SGreg Roach		// Consider relationship privacy (unless an admin is applying download restrictions)
1234b9ff166SGreg Roach		$user_path_length = $this->tree->getUserPreference(Auth::user(), 'RELATIONSHIP_PATH_LENGTH');
1244b9ff166SGreg Roach		$gedcomid         = $this->tree->getUserPreference(Auth::user(), 'gedcomid');
12524ec66ceSGreg Roach		if ($gedcomid && $user_path_length && $this->tree->getTreeId() == $WT_TREE->getTreeId() && $access_level = Auth::accessLevel($this->tree)) {
1264b9ff166SGreg Roach			return self::isRelated($this, $user_path_length);
127a25f0a04SGreg Roach		}
128a25f0a04SGreg Roach
129a25f0a04SGreg Roach		// No restriction found - show living people to members only:
1304b9ff166SGreg Roach		return Auth::PRIV_USER >= $access_level;
131a25f0a04SGreg Roach	}
132a25f0a04SGreg Roach
133a25f0a04SGreg Roach	/**
134a25f0a04SGreg Roach	 * For relationship privacy calculations - is this individual a close relative?
135a25f0a04SGreg Roach	 *
136a25f0a04SGreg Roach	 * @param Individual $target
137cbc1590aSGreg Roach	 * @param int        $distance
138a25f0a04SGreg Roach	 *
139cbc1590aSGreg Roach	 * @return bool
140a25f0a04SGreg Roach	 */
141a25f0a04SGreg Roach	private static function isRelated(Individual $target, $distance) {
142a25f0a04SGreg Roach		static $cache = null;
143a25f0a04SGreg Roach
144*06ef8e02SGreg Roach		$user_individual = self::getInstance($target->tree->getUserPreference(Auth::user(), 'gedcomid'), $target->tree);
145a25f0a04SGreg Roach		if ($user_individual) {
146a25f0a04SGreg Roach			if (!$cache) {
147a25f0a04SGreg Roach				$cache = array(
148a25f0a04SGreg Roach					0 => array($user_individual),
149a25f0a04SGreg Roach					1 => array(),
150a25f0a04SGreg Roach				);
1514b9ff166SGreg Roach				foreach ($user_individual->getFacts('FAM[CS]', false, Auth::PRIV_HIDE) as $fact) {
152a25f0a04SGreg Roach					$family = $fact->getTarget();
153a25f0a04SGreg Roach					if ($family) {
154a25f0a04SGreg Roach						$cache[1][] = $family;
155a25f0a04SGreg Roach					}
156a25f0a04SGreg Roach				}
157a25f0a04SGreg Roach			}
158a25f0a04SGreg Roach		} else {
159a25f0a04SGreg Roach			// No individual linked to this account?  Cannot use relationship privacy.
160a25f0a04SGreg Roach			return true;
161a25f0a04SGreg Roach		}
162a25f0a04SGreg Roach
163a25f0a04SGreg Roach		// Double the distance, as we count the INDI-FAM and FAM-INDI links separately
164a25f0a04SGreg Roach		$distance *= 2;
165a25f0a04SGreg Roach
166a25f0a04SGreg Roach		// Consider each path length in turn
167a25f0a04SGreg Roach		for ($n = 0; $n <= $distance; ++$n) {
168a25f0a04SGreg Roach			if (array_key_exists($n, $cache)) {
169a25f0a04SGreg Roach				// We have already calculated all records with this length
170a25f0a04SGreg Roach				if ($n % 2 == 0 && in_array($target, $cache[$n], true)) {
171a25f0a04SGreg Roach					return true;
172a25f0a04SGreg Roach				}
173a25f0a04SGreg Roach			} else {
174a25f0a04SGreg Roach				// Need to calculate these paths
175a25f0a04SGreg Roach				$cache[$n] = array();
176a25f0a04SGreg Roach				if ($n % 2 == 0) {
177a25f0a04SGreg Roach					// Add FAM->INDI links
178a25f0a04SGreg Roach					foreach ($cache[$n - 1] as $family) {
1794b9ff166SGreg Roach						foreach ($family->getFacts('HUSB|WIFE|CHIL', false, Auth::PRIV_HIDE) as $fact) {
180a25f0a04SGreg Roach							$individual = $fact->getTarget();
181a25f0a04SGreg Roach							// Don’t backtrack
182a25f0a04SGreg Roach							if ($individual && !in_array($individual, $cache[$n - 2], true)) {
183a25f0a04SGreg Roach								$cache[$n][] = $individual;
184a25f0a04SGreg Roach							}
185a25f0a04SGreg Roach						}
186a25f0a04SGreg Roach					}
187a25f0a04SGreg Roach					if (in_array($target, $cache[$n], true)) {
188a25f0a04SGreg Roach						return true;
189a25f0a04SGreg Roach					}
190a25f0a04SGreg Roach				} else {
191a25f0a04SGreg Roach					// Add INDI->FAM links
192a25f0a04SGreg Roach					foreach ($cache[$n - 1] as $individual) {
1934b9ff166SGreg Roach						foreach ($individual->getFacts('FAM[CS]', false, Auth::PRIV_HIDE) as $fact) {
194a25f0a04SGreg Roach							$family = $fact->getTarget();
195a25f0a04SGreg Roach							// Don’t backtrack
196a25f0a04SGreg Roach							if ($family && !in_array($family, $cache[$n - 2], true)) {
197a25f0a04SGreg Roach								$cache[$n][] = $family;
198a25f0a04SGreg Roach							}
199a25f0a04SGreg Roach						}
200a25f0a04SGreg Roach					}
201a25f0a04SGreg Roach				}
202a25f0a04SGreg Roach			}
203a25f0a04SGreg Roach		}
204a25f0a04SGreg Roach
205a25f0a04SGreg Roach		return false;
206a25f0a04SGreg Roach	}
207a25f0a04SGreg Roach
208a25f0a04SGreg Roach	/** {@inheritdoc} */
209a25f0a04SGreg Roach	protected function createPrivateGedcomRecord($access_level) {
210518bbdc1SGreg Roach		$SHOW_PRIVATE_RELATIONSHIPS = $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS');
211a25f0a04SGreg Roach
212a25f0a04SGreg Roach		$rec = '0 @' . $this->xref . '@ INDI';
213518bbdc1SGreg Roach		if ($this->tree->getPreference('SHOW_LIVING_NAMES') >= $access_level) {
214a25f0a04SGreg Roach			// Show all the NAME tags, including subtags
215a25f0a04SGreg Roach			foreach ($this->getFacts('NAME') as $fact) {
216a25f0a04SGreg Roach				$rec .= "\n" . $fact->getGedcom();
217a25f0a04SGreg Roach			}
218a25f0a04SGreg Roach		}
219a25f0a04SGreg Roach		// Just show the 1 FAMC/FAMS tag, not any subtags, which may contain private data
220a25f0a04SGreg Roach		preg_match_all('/\n1 (?:FAMC|FAMS) @(' . WT_REGEX_XREF . ')@/', $this->gedcom, $matches, PREG_SET_ORDER);
221a25f0a04SGreg Roach		foreach ($matches as $match) {
22224ec66ceSGreg Roach			$rela = Family::getInstance($match[1], $this->tree);
223a25f0a04SGreg Roach			if ($rela && ($SHOW_PRIVATE_RELATIONSHIPS || $rela->canShow($access_level))) {
224a25f0a04SGreg Roach				$rec .= $match[0];
225a25f0a04SGreg Roach			}
226a25f0a04SGreg Roach		}
227a25f0a04SGreg Roach		// Don’t privatize sex.
228a25f0a04SGreg Roach		if (preg_match('/\n1 SEX [MFU]/', $this->gedcom, $match)) {
229a25f0a04SGreg Roach			$rec .= $match[0];
230a25f0a04SGreg Roach		}
231a25f0a04SGreg Roach
232a25f0a04SGreg Roach		return $rec;
233a25f0a04SGreg Roach	}
234a25f0a04SGreg Roach
235a25f0a04SGreg Roach	/** {@inheritdoc} */
23664d9078aSGreg Roach	protected static function fetchGedcomRecord($xref, $tree_id) {
23764d9078aSGreg Roach		return Database::prepare(
23864d9078aSGreg Roach			"SELECT i_gedcom FROM `##individuals` WHERE i_id = :xref AND i_file = :tree_id"
23964d9078aSGreg Roach		)->execute(array(
24064d9078aSGreg Roach			'xref'    => $xref,
24164d9078aSGreg Roach			'tree_id' => $tree_id,
24264d9078aSGreg Roach		))->fetchOne();
243a25f0a04SGreg Roach	}
244a25f0a04SGreg Roach
245a25f0a04SGreg Roach	/**
246a25f0a04SGreg Roach	 * Static helper function to sort an array of people by birth date
247a25f0a04SGreg Roach	 *
248a25f0a04SGreg Roach	 * @param Individual $x
249a25f0a04SGreg Roach	 * @param Individual $y
250a25f0a04SGreg Roach	 *
251cbc1590aSGreg Roach	 * @return int
252a25f0a04SGreg Roach	 */
253a25f0a04SGreg Roach	public static function compareBirthDate(Individual $x, Individual $y) {
254f5b60decSGreg Roach		return Date::compare($x->getEstimatedBirthDate(), $y->getEstimatedBirthDate());
255a25f0a04SGreg Roach	}
256a25f0a04SGreg Roach
257a25f0a04SGreg Roach	/**
258a25f0a04SGreg Roach	 * Static helper function to sort an array of people by death date
259a25f0a04SGreg Roach	 *
260a25f0a04SGreg Roach	 * @param Individual $x
261a25f0a04SGreg Roach	 * @param Individual $y
262a25f0a04SGreg Roach	 *
263cbc1590aSGreg Roach	 * @return int
264a25f0a04SGreg Roach	 */
265a25f0a04SGreg Roach	public static function compareDeathDate(Individual $x, Individual $y) {
266f5b60decSGreg Roach		return Date::compare($x->getEstimatedDeathDate(), $y->getEstimatedDeathDate());
267a25f0a04SGreg Roach	}
268a25f0a04SGreg Roach
269a25f0a04SGreg Roach	/**
270a25f0a04SGreg Roach	 * Calculate whether this individual is living or dead.
271a25f0a04SGreg Roach	 * If not known to be dead, then assume living.
272a25f0a04SGreg Roach	 *
273cbc1590aSGreg Roach	 * @return bool
274a25f0a04SGreg Roach	 */
275a25f0a04SGreg Roach	public function isDead() {
276518bbdc1SGreg Roach		$MAX_ALIVE_AGE = $this->tree->getPreference('MAX_ALIVE_AGE');
277a25f0a04SGreg Roach
278a25f0a04SGreg Roach		// "1 DEAT Y" or "1 DEAT/2 DATE" or "1 DEAT/2 PLAC"
279a25f0a04SGreg Roach		if (preg_match('/\n1 (?:' . WT_EVENTS_DEAT . ')(?: Y|(?:\n[2-9].+)*\n2 (DATE|PLAC) )/', $this->gedcom)) {
280a25f0a04SGreg Roach			return true;
281a25f0a04SGreg Roach		}
282a25f0a04SGreg Roach
283a25f0a04SGreg Roach		// If any event occured more than $MAX_ALIVE_AGE years ago, then assume the individual is dead
284a25f0a04SGreg Roach		if (preg_match_all('/\n2 DATE (.+)/', $this->gedcom, $date_matches)) {
285a25f0a04SGreg Roach			foreach ($date_matches[1] as $date_match) {
286a25f0a04SGreg Roach				$date = new Date($date_match);
287f5b60decSGreg Roach				if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * $MAX_ALIVE_AGE) {
288a25f0a04SGreg Roach					return true;
289a25f0a04SGreg Roach				}
290a25f0a04SGreg Roach			}
291a25f0a04SGreg Roach			// The individual has one or more dated events.  All are less than $MAX_ALIVE_AGE years ago.
292a25f0a04SGreg Roach			// If one of these is a birth, the individual must be alive.
293a25f0a04SGreg Roach			if (preg_match('/\n1 BIRT(?:\n[2-9].+)*\n2 DATE /', $this->gedcom)) {
294a25f0a04SGreg Roach				return false;
295a25f0a04SGreg Roach			}
296a25f0a04SGreg Roach		}
297a25f0a04SGreg Roach
298a25f0a04SGreg Roach		// If we found no conclusive dates then check the dates of close relatives.
299a25f0a04SGreg Roach
300a25f0a04SGreg Roach		// Check parents (birth and adopted)
3014b9ff166SGreg Roach		foreach ($this->getChildFamilies(Auth::PRIV_HIDE) as $family) {
3024b9ff166SGreg Roach			foreach ($family->getSpouses(Auth::PRIV_HIDE) as $parent) {
303a25f0a04SGreg Roach				// Assume parents are no more than 45 years older than their children
304a25f0a04SGreg Roach				preg_match_all('/\n2 DATE (.+)/', $parent->gedcom, $date_matches);
305a25f0a04SGreg Roach				foreach ($date_matches[1] as $date_match) {
306a25f0a04SGreg Roach					$date = new Date($date_match);
307f5b60decSGreg Roach					if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE + 45)) {
308a25f0a04SGreg Roach						return true;
309a25f0a04SGreg Roach					}
310a25f0a04SGreg Roach				}
311a25f0a04SGreg Roach			}
312a25f0a04SGreg Roach		}
313a25f0a04SGreg Roach
314a25f0a04SGreg Roach		// Check spouses
3154b9ff166SGreg Roach		foreach ($this->getSpouseFamilies(Auth::PRIV_HIDE) as $family) {
316a25f0a04SGreg Roach			preg_match_all('/\n2 DATE (.+)/', $family->gedcom, $date_matches);
317a25f0a04SGreg Roach			foreach ($date_matches[1] as $date_match) {
318a25f0a04SGreg Roach				$date = new Date($date_match);
319a25f0a04SGreg Roach				// Assume marriage occurs after age of 10
320f5b60decSGreg Roach				if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE - 10)) {
321a25f0a04SGreg Roach					return true;
322a25f0a04SGreg Roach				}
323a25f0a04SGreg Roach			}
324a25f0a04SGreg Roach			// Check spouse dates
325a25f0a04SGreg Roach			$spouse = $family->getSpouse($this);
326a25f0a04SGreg Roach			if ($spouse) {
327a25f0a04SGreg Roach				preg_match_all('/\n2 DATE (.+)/', $spouse->gedcom, $date_matches);
328a25f0a04SGreg Roach				foreach ($date_matches[1] as $date_match) {
329a25f0a04SGreg Roach					$date = new Date($date_match);
330a25f0a04SGreg Roach					// Assume max age difference between spouses of 40 years
331f5b60decSGreg Roach					if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE + 40)) {
332a25f0a04SGreg Roach						return true;
333a25f0a04SGreg Roach					}
334a25f0a04SGreg Roach				}
335a25f0a04SGreg Roach			}
336a25f0a04SGreg Roach			// Check child dates
3374b9ff166SGreg Roach			foreach ($family->getChildren(Auth::PRIV_HIDE) as $child) {
338a25f0a04SGreg Roach				preg_match_all('/\n2 DATE (.+)/', $child->gedcom, $date_matches);
339a25f0a04SGreg Roach				// Assume children born after age of 15
340a25f0a04SGreg Roach				foreach ($date_matches[1] as $date_match) {
341a25f0a04SGreg Roach					$date = new Date($date_match);
342f5b60decSGreg Roach					if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE - 15)) {
343a25f0a04SGreg Roach						return true;
344a25f0a04SGreg Roach					}
345a25f0a04SGreg Roach				}
346a25f0a04SGreg Roach				// Check grandchildren
3474b9ff166SGreg Roach				foreach ($child->getSpouseFamilies(Auth::PRIV_HIDE) as $child_family) {
3484b9ff166SGreg Roach					foreach ($child_family->getChildren(Auth::PRIV_HIDE) as $grandchild) {
349a25f0a04SGreg Roach						preg_match_all('/\n2 DATE (.+)/', $grandchild->gedcom, $date_matches);
350a25f0a04SGreg Roach						// Assume grandchildren born after age of 30
351a25f0a04SGreg Roach						foreach ($date_matches[1] as $date_match) {
352a25f0a04SGreg Roach							$date = new Date($date_match);
353f5b60decSGreg Roach							if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE - 30)) {
354a25f0a04SGreg Roach								return true;
355a25f0a04SGreg Roach							}
356a25f0a04SGreg Roach						}
357a25f0a04SGreg Roach					}
358a25f0a04SGreg Roach				}
359a25f0a04SGreg Roach			}
360a25f0a04SGreg Roach		}
361a25f0a04SGreg Roach
362a25f0a04SGreg Roach		return false;
363a25f0a04SGreg Roach	}
364a25f0a04SGreg Roach
365a25f0a04SGreg Roach	/**
366a25f0a04SGreg Roach	 * Find the highlighted media object for an individual
367a25f0a04SGreg Roach	 * 1. Ignore all media objects that are not displayable because of Privacy rules
368a25f0a04SGreg Roach	 * 2. Ignore all media objects with the Highlight option set to "N"
369a25f0a04SGreg Roach	 * 3. Pick the first media object that matches these criteria, in order of preference:
370a25f0a04SGreg Roach	 *    (a) Level 1 object with the Highlight option set to "Y"
371a25f0a04SGreg Roach	 *    (b) Level 1 object with the Highlight option missing or set to other than "Y" or "N"
372a25f0a04SGreg Roach	 *    (c) Level 2 or higher object with the Highlight option set to "Y"
373a25f0a04SGreg Roach	 *
374a25f0a04SGreg Roach	 * @return null|Media
375a25f0a04SGreg Roach	 */
376ffd703eaSGreg Roach	public function findHighlightedMedia() {
377a25f0a04SGreg Roach		$objectA = null;
378a25f0a04SGreg Roach		$objectB = null;
379a25f0a04SGreg Roach		$objectC = null;
380a25f0a04SGreg Roach
381a25f0a04SGreg Roach		// Iterate over all of the media items for the individual
382a25f0a04SGreg Roach		preg_match_all('/\n(\d) OBJE @(' . WT_REGEX_XREF . ')@/', $this->getGedcom(), $matches, PREG_SET_ORDER);
383a25f0a04SGreg Roach		foreach ($matches as $match) {
38424ec66ceSGreg Roach			$media = Media::getInstance($match[2], $this->tree);
385a25f0a04SGreg Roach			if (!$media || !$media->canShow() || $media->isExternal()) {
386a25f0a04SGreg Roach				continue;
387a25f0a04SGreg Roach			}
388a25f0a04SGreg Roach			$level = $match[1];
389a25f0a04SGreg Roach			$prim  = $media->isPrimary();
390a25f0a04SGreg Roach			if ($prim == 'N') {
391a25f0a04SGreg Roach				continue;
392a25f0a04SGreg Roach			}
393a25f0a04SGreg Roach			if ($level == 1) {
394a25f0a04SGreg Roach				if ($prim == 'Y') {
395a25f0a04SGreg Roach					if (empty($objectA)) {
396a25f0a04SGreg Roach						$objectA = $media;
397a25f0a04SGreg Roach					}
398a25f0a04SGreg Roach				} else {
399a25f0a04SGreg Roach					if (empty($objectB)) {
400a25f0a04SGreg Roach						$objectB = $media;
401a25f0a04SGreg Roach					}
402a25f0a04SGreg Roach				}
403a25f0a04SGreg Roach			} else {
404a25f0a04SGreg Roach				if ($prim == 'Y') {
405a25f0a04SGreg Roach					if (empty($objectC)) {
406a25f0a04SGreg Roach						$objectC = $media;
407a25f0a04SGreg Roach					}
408a25f0a04SGreg Roach				}
409a25f0a04SGreg Roach			}
410a25f0a04SGreg Roach		}
411a25f0a04SGreg Roach
412a25f0a04SGreg Roach		if ($objectA) {
413a25f0a04SGreg Roach			return $objectA;
414a25f0a04SGreg Roach		}
415a25f0a04SGreg Roach		if ($objectB) {
416a25f0a04SGreg Roach			return $objectB;
417a25f0a04SGreg Roach		}
418a25f0a04SGreg Roach		if ($objectC) {
419a25f0a04SGreg Roach			return $objectC;
420a25f0a04SGreg Roach		}
421a25f0a04SGreg Roach
422a25f0a04SGreg Roach		return null;
423a25f0a04SGreg Roach	}
424a25f0a04SGreg Roach
425a25f0a04SGreg Roach	/**
426a25f0a04SGreg Roach	 * Display the prefered image for this individual.
427a25f0a04SGreg Roach	 * Use an icon if no image is available.
428a25f0a04SGreg Roach	 *
429a25f0a04SGreg Roach	 * @return string
430a25f0a04SGreg Roach	 */
431a25f0a04SGreg Roach	public function displayImage() {
432a25f0a04SGreg Roach		$media = $this->findHighlightedMedia();
433a25f0a04SGreg Roach		if ($media) {
434a25f0a04SGreg Roach			// Thumbnail exists - use it.
435a25f0a04SGreg Roach			return $media->displayImage();
436518bbdc1SGreg Roach		} elseif ($this->tree->getPreference('USE_SILHOUETTE')) {
437a25f0a04SGreg Roach			// No thumbnail exists - use an icon
438a25f0a04SGreg Roach			return '<i class="icon-silhouette-' . $this->getSex() . '"></i>';
439a25f0a04SGreg Roach		} else {
440a25f0a04SGreg Roach			return '';
441a25f0a04SGreg Roach		}
442a25f0a04SGreg Roach	}
443a25f0a04SGreg Roach
444a25f0a04SGreg Roach	/**
445a25f0a04SGreg Roach	 * Get the date of birth
446a25f0a04SGreg Roach	 *
447a25f0a04SGreg Roach	 * @return Date
448a25f0a04SGreg Roach	 */
449ffd703eaSGreg Roach	public function getBirthDate() {
450a25f0a04SGreg Roach		foreach ($this->getAllBirthDates() as $date) {
451a25f0a04SGreg Roach			if ($date->isOK()) {
452a25f0a04SGreg Roach				return $date;
453a25f0a04SGreg Roach			}
454a25f0a04SGreg Roach		}
455a25f0a04SGreg Roach
456a25f0a04SGreg Roach		return new Date('');
457a25f0a04SGreg Roach	}
458a25f0a04SGreg Roach
459a25f0a04SGreg Roach	/**
460a25f0a04SGreg Roach	 * Get the place of birth
461a25f0a04SGreg Roach	 *
462a25f0a04SGreg Roach	 * @return string
463a25f0a04SGreg Roach	 */
464ffd703eaSGreg Roach	public function getBirthPlace() {
465a25f0a04SGreg Roach		foreach ($this->getAllBirthPlaces() as $place) {
466a25f0a04SGreg Roach			if ($place) {
467a25f0a04SGreg Roach				return $place;
468a25f0a04SGreg Roach			}
469a25f0a04SGreg Roach		}
470a25f0a04SGreg Roach
471a25f0a04SGreg Roach		return '';
472a25f0a04SGreg Roach	}
473a25f0a04SGreg Roach
474a25f0a04SGreg Roach	/**
475a25f0a04SGreg Roach	 * Get the year of birth
476a25f0a04SGreg Roach	 *
477a25f0a04SGreg Roach	 * @return string the year of birth
478a25f0a04SGreg Roach	 */
479ffd703eaSGreg Roach	public function getBirthYear() {
480f5b60decSGreg Roach		return $this->getBirthDate()->minimumDate()->format('%Y');
481a25f0a04SGreg Roach	}
482a25f0a04SGreg Roach
483a25f0a04SGreg Roach	/**
484a25f0a04SGreg Roach	 * Get the date of death
485a25f0a04SGreg Roach	 *
486a25f0a04SGreg Roach	 * @return Date
487a25f0a04SGreg Roach	 */
488ffd703eaSGreg Roach	public function getDeathDate() {
489a25f0a04SGreg Roach		foreach ($this->getAllDeathDates() as $date) {
490a25f0a04SGreg Roach			if ($date->isOK()) {
491a25f0a04SGreg Roach				return $date;
492a25f0a04SGreg Roach			}
493a25f0a04SGreg Roach		}
494a25f0a04SGreg Roach
495a25f0a04SGreg Roach		return new Date('');
496a25f0a04SGreg Roach	}
497a25f0a04SGreg Roach
498a25f0a04SGreg Roach	/**
499a25f0a04SGreg Roach	 * Get the place of death
500a25f0a04SGreg Roach	 *
501a25f0a04SGreg Roach	 * @return string
502a25f0a04SGreg Roach	 */
503ffd703eaSGreg Roach	public function getDeathPlace() {
504a25f0a04SGreg Roach		foreach ($this->getAllDeathPlaces() as $place) {
505a25f0a04SGreg Roach			if ($place) {
506a25f0a04SGreg Roach				return $place;
507a25f0a04SGreg Roach			}
508a25f0a04SGreg Roach		}
509a25f0a04SGreg Roach
510a25f0a04SGreg Roach		return '';
511a25f0a04SGreg Roach	}
512a25f0a04SGreg Roach
513a25f0a04SGreg Roach	/**
514a25f0a04SGreg Roach	 * get the death year
515a25f0a04SGreg Roach	 *
516a25f0a04SGreg Roach	 * @return string the year of death
517a25f0a04SGreg Roach	 */
518ffd703eaSGreg Roach	public function getDeathYear() {
519f5b60decSGreg Roach		return $this->getDeathDate()->minimumDate()->format('%Y');
520a25f0a04SGreg Roach	}
521a25f0a04SGreg Roach
522a25f0a04SGreg Roach	/**
523a25f0a04SGreg Roach	 * Get the range of years in which a individual lived.  e.g. “1870–”, “1870–1920”, “–1920”.
524a25f0a04SGreg Roach	 * Provide the full date using a tooltip.
525a25f0a04SGreg Roach	 * For consistent layout in charts, etc., show just a “–” when no dates are known.
526a25f0a04SGreg Roach	 * Note that this is a (non-breaking) en-dash, and not a hyphen.
527a25f0a04SGreg Roach	 *
528a25f0a04SGreg Roach	 * @return string
529a25f0a04SGreg Roach	 */
530a25f0a04SGreg Roach	public function getLifeSpan() {
531a25f0a04SGreg Roach		return
532a25f0a04SGreg Roach			/* I18N: A range of years, e.g. “1870–”, “1870–1920”, “–1920” */ I18N::translate(
533a25f0a04SGreg Roach				'%1$s–%2$s',
534f5b60decSGreg Roach				'<span title="' . strip_tags($this->getBirthDate()->display()) . '">' . $this->getBirthDate()->minimumDate()->format('%Y') . '</span>',
535f5b60decSGreg Roach				'<span title="' . strip_tags($this->getDeathDate()->display()) . '">' . $this->getDeathDate()->minimumDate()->format('%Y') . '</span>'
536a25f0a04SGreg Roach			);
537a25f0a04SGreg Roach	}
538a25f0a04SGreg Roach
539a25f0a04SGreg Roach	/**
540a25f0a04SGreg Roach	 * Get all the birth dates - for the individual lists.
541a25f0a04SGreg Roach	 *
542a25f0a04SGreg Roach	 * @return Date[]
543a25f0a04SGreg Roach	 */
544ffd703eaSGreg Roach	public function getAllBirthDates() {
545a25f0a04SGreg Roach		foreach (explode('|', WT_EVENTS_BIRT) as $event) {
546a25f0a04SGreg Roach			$tmp = $this->getAllEventDates($event);
547a25f0a04SGreg Roach			if ($tmp) {
548a25f0a04SGreg Roach				return $tmp;
549a25f0a04SGreg Roach			}
550a25f0a04SGreg Roach		}
551a25f0a04SGreg Roach
552a25f0a04SGreg Roach		return array();
553a25f0a04SGreg Roach	}
554a25f0a04SGreg Roach
555a25f0a04SGreg Roach	/**
556a25f0a04SGreg Roach	 * Gat all the birth places - for the individual lists.
557a25f0a04SGreg Roach	 *
558a25f0a04SGreg Roach	 * @return string[]
559a25f0a04SGreg Roach	 */
560ffd703eaSGreg Roach	public function getAllBirthPlaces() {
561a25f0a04SGreg Roach		foreach (explode('|', WT_EVENTS_BIRT) as $event) {
562a25f0a04SGreg Roach			$tmp = $this->getAllEventPlaces($event);
563a25f0a04SGreg Roach			if ($tmp) {
564a25f0a04SGreg Roach				return $tmp;
565a25f0a04SGreg Roach			}
566a25f0a04SGreg Roach		}
567a25f0a04SGreg Roach
568a25f0a04SGreg Roach		return array();
569a25f0a04SGreg Roach	}
570a25f0a04SGreg Roach
571a25f0a04SGreg Roach	/**
572a25f0a04SGreg Roach	 * Get all the death dates - for the individual lists.
573a25f0a04SGreg Roach	 *
574a25f0a04SGreg Roach	 * @return Date[]
575a25f0a04SGreg Roach	 */
576ffd703eaSGreg Roach	public function getAllDeathDates() {
577a25f0a04SGreg Roach		foreach (explode('|', WT_EVENTS_DEAT) as $event) {
578a25f0a04SGreg Roach			$tmp = $this->getAllEventDates($event);
579a25f0a04SGreg Roach			if ($tmp) {
580a25f0a04SGreg Roach				return $tmp;
581a25f0a04SGreg Roach			}
582a25f0a04SGreg Roach		}
583a25f0a04SGreg Roach
584a25f0a04SGreg Roach		return array();
585a25f0a04SGreg Roach	}
586a25f0a04SGreg Roach
587a25f0a04SGreg Roach	/**
588a25f0a04SGreg Roach	 * Get all the death places - for the individual lists.
589a25f0a04SGreg Roach	 *
590a25f0a04SGreg Roach	 * @return string[]
591a25f0a04SGreg Roach	 */
592ffd703eaSGreg Roach	public function getAllDeathPlaces() {
593a25f0a04SGreg Roach		foreach (explode('|', WT_EVENTS_DEAT) as $event) {
594a25f0a04SGreg Roach			$tmp = $this->getAllEventPlaces($event);
595a25f0a04SGreg Roach			if ($tmp) {
596a25f0a04SGreg Roach				return $tmp;
597a25f0a04SGreg Roach			}
598a25f0a04SGreg Roach		}
599a25f0a04SGreg Roach
600a25f0a04SGreg Roach		return array();
601a25f0a04SGreg Roach	}
602a25f0a04SGreg Roach
603a25f0a04SGreg Roach	/**
604a25f0a04SGreg Roach	 * Generate an estimate for the date of birth, based on dates of parents/children/spouses
605a25f0a04SGreg Roach	 *
606a25f0a04SGreg Roach	 * @return Date
607a25f0a04SGreg Roach	 */
608ffd703eaSGreg Roach	public function getEstimatedBirthDate() {
609a25f0a04SGreg Roach		if (is_null($this->_getEstimatedBirthDate)) {
610a25f0a04SGreg Roach			foreach ($this->getAllBirthDates() as $date) {
611a25f0a04SGreg Roach				if ($date->isOK()) {
612a25f0a04SGreg Roach					$this->_getEstimatedBirthDate = $date;
613a25f0a04SGreg Roach					break;
614a25f0a04SGreg Roach				}
615a25f0a04SGreg Roach			}
616a25f0a04SGreg Roach			if (is_null($this->_getEstimatedBirthDate)) {
617a25f0a04SGreg Roach				$min = array();
618a25f0a04SGreg Roach				$max = array();
619a25f0a04SGreg Roach				$tmp = $this->getDeathDate();
620f5b60decSGreg Roach				if ($tmp->isOK()) {
621f5b60decSGreg Roach					$min[] = $tmp->minimumJulianDay() - $this->tree->getPreference('MAX_ALIVE_AGE') * 365;
622f5b60decSGreg Roach					$max[] = $tmp->maximumJulianDay();
623a25f0a04SGreg Roach				}
624a25f0a04SGreg Roach				foreach ($this->getChildFamilies() as $family) {
625a25f0a04SGreg Roach					$tmp = $family->getMarriageDate();
626f5b60decSGreg Roach					if ($tmp->isOK()) {
627f5b60decSGreg Roach						$min[] = $tmp->maximumJulianDay() - 365 * 1;
628f5b60decSGreg Roach						$max[] = $tmp->minimumJulianDay() + 365 * 30;
629a25f0a04SGreg Roach					}
630a25f0a04SGreg Roach					if ($parent = $family->getHusband()) {
631a25f0a04SGreg Roach						$tmp = $parent->getBirthDate();
632f5b60decSGreg Roach						if ($tmp->isOK()) {
633f5b60decSGreg Roach							$min[] = $tmp->maximumJulianDay() + 365 * 15;
634f5b60decSGreg Roach							$max[] = $tmp->minimumJulianDay() + 365 * 65;
635a25f0a04SGreg Roach						}
636a25f0a04SGreg Roach					}
637a25f0a04SGreg Roach					if ($parent = $family->getWife()) {
638a25f0a04SGreg Roach						$tmp = $parent->getBirthDate();
639f5b60decSGreg Roach						if ($tmp->isOK()) {
640f5b60decSGreg Roach							$min[] = $tmp->maximumJulianDay() + 365 * 15;
641f5b60decSGreg Roach							$max[] = $tmp->minimumJulianDay() + 365 * 45;
642a25f0a04SGreg Roach						}
643a25f0a04SGreg Roach					}
644a25f0a04SGreg Roach					foreach ($family->getChildren() as $child) {
645a25f0a04SGreg Roach						$tmp = $child->getBirthDate();
646f5b60decSGreg Roach						if ($tmp->isOK()) {
647f5b60decSGreg Roach							$min[] = $tmp->maximumJulianDay() - 365 * 30;
648f5b60decSGreg Roach							$max[] = $tmp->minimumJulianDay() + 365 * 30;
649a25f0a04SGreg Roach						}
650a25f0a04SGreg Roach					}
651a25f0a04SGreg Roach				}
652a25f0a04SGreg Roach				foreach ($this->getSpouseFamilies() as $family) {
653a25f0a04SGreg Roach					$tmp = $family->getMarriageDate();
654f5b60decSGreg Roach					if ($tmp->isOK()) {
655f5b60decSGreg Roach						$min[] = $tmp->maximumJulianDay() - 365 * 45;
656f5b60decSGreg Roach						$max[] = $tmp->minimumJulianDay() - 365 * 15;
657a25f0a04SGreg Roach					}
658a25f0a04SGreg Roach					$spouse = $family->getSpouse($this);
659a25f0a04SGreg Roach					if ($spouse) {
660a25f0a04SGreg Roach						$tmp = $spouse->getBirthDate();
661f5b60decSGreg Roach						if ($tmp->isOK()) {
662f5b60decSGreg Roach							$min[] = $tmp->maximumJulianDay() - 365 * 25;
663f5b60decSGreg Roach							$max[] = $tmp->minimumJulianDay() + 365 * 25;
664a25f0a04SGreg Roach						}
665a25f0a04SGreg Roach					}
666a25f0a04SGreg Roach					foreach ($family->getChildren() as $child) {
667a25f0a04SGreg Roach						$tmp = $child->getBirthDate();
668f5b60decSGreg Roach						if ($tmp->isOK()) {
669f5b60decSGreg Roach							$min[] = $tmp->maximumJulianDay() - 365 * ($this->getSex() == 'F' ? 45 : 65);
670f5b60decSGreg Roach							$max[] = $tmp->minimumJulianDay() - 365 * 15;
671a25f0a04SGreg Roach						}
672a25f0a04SGreg Roach					}
673a25f0a04SGreg Roach				}
674a25f0a04SGreg Roach				if ($min && $max) {
675a25f0a04SGreg Roach					$gregorian_calendar = new GregorianCalendar;
676a25f0a04SGreg Roach
677a25f0a04SGreg Roach					list($year)                   = $gregorian_calendar->jdToYmd((int) ((max($min) + min($max)) / 2));
678a25f0a04SGreg Roach					$this->_getEstimatedBirthDate = new Date('EST ' . $year);
679a25f0a04SGreg Roach				} else {
680a25f0a04SGreg Roach					$this->_getEstimatedBirthDate = new Date(''); // always return a date object
681a25f0a04SGreg Roach				}
682a25f0a04SGreg Roach			}
683a25f0a04SGreg Roach		}
684a25f0a04SGreg Roach
685a25f0a04SGreg Roach		return $this->_getEstimatedBirthDate;
686a25f0a04SGreg Roach	}
687a25f0a04SGreg Roach
688a25f0a04SGreg Roach	/**
689a25f0a04SGreg Roach	 * Generate an estimated date of death.
690a25f0a04SGreg Roach	 *
691a25f0a04SGreg Roach	 * @return Date
692a25f0a04SGreg Roach	 */
693ffd703eaSGreg Roach	public function getEstimatedDeathDate() {
694a25f0a04SGreg Roach		if ($this->_getEstimatedDeathDate === null) {
695a25f0a04SGreg Roach			foreach ($this->getAllDeathDates() as $date) {
696a25f0a04SGreg Roach				if ($date->isOK()) {
697a25f0a04SGreg Roach					$this->_getEstimatedDeathDate = $date;
698a25f0a04SGreg Roach					break;
699a25f0a04SGreg Roach				}
700a25f0a04SGreg Roach			}
701a25f0a04SGreg Roach			if ($this->_getEstimatedDeathDate === null) {
702f5b60decSGreg Roach				if ($this->getEstimatedBirthDate()->minimumJulianDay()) {
703f5b60decSGreg Roach					$this->_getEstimatedDeathDate = $this->getEstimatedBirthDate()->addYears($this->tree->getPreference('MAX_ALIVE_AGE'), 'BEF');
704a25f0a04SGreg Roach				} else {
705a25f0a04SGreg Roach					$this->_getEstimatedDeathDate = new Date(''); // always return a date object
706a25f0a04SGreg Roach				}
707a25f0a04SGreg Roach			}
708a25f0a04SGreg Roach		}
709a25f0a04SGreg Roach
710a25f0a04SGreg Roach		return $this->_getEstimatedDeathDate;
711a25f0a04SGreg Roach	}
712a25f0a04SGreg Roach
713a25f0a04SGreg Roach	/**
714a25f0a04SGreg Roach	 * Get the sex - M F or U
715a25f0a04SGreg Roach	 * Use the un-privatised gedcom record.  We call this function during
716a25f0a04SGreg Roach	 * the privatize-gedcom function, and we are allowed to know this.
717a25f0a04SGreg Roach	 *
718a25f0a04SGreg Roach	 * @return string
719a25f0a04SGreg Roach	 */
720ffd703eaSGreg Roach	public function getSex() {
721a25f0a04SGreg Roach		if (preg_match('/\n1 SEX ([MF])/', $this->gedcom . $this->pending, $match)) {
722a25f0a04SGreg Roach			return $match[1];
723a25f0a04SGreg Roach		} else {
724a25f0a04SGreg Roach			return 'U';
725a25f0a04SGreg Roach		}
726a25f0a04SGreg Roach	}
727a25f0a04SGreg Roach
728a25f0a04SGreg Roach	/**
729a25f0a04SGreg Roach	 * Get the individual’s sex image
730a25f0a04SGreg Roach	 *
731a25f0a04SGreg Roach	 * @param string $size
732a25f0a04SGreg Roach	 *
733a25f0a04SGreg Roach	 * @return string
734a25f0a04SGreg Roach	 */
735ffd703eaSGreg Roach	public function getSexImage($size = 'small') {
736a25f0a04SGreg Roach		return self::sexImage($this->getSex(), $size);
737a25f0a04SGreg Roach	}
738a25f0a04SGreg Roach
739a25f0a04SGreg Roach	/**
740a25f0a04SGreg Roach	 * Generate a sex icon/image
741a25f0a04SGreg Roach	 *
742a25f0a04SGreg Roach	 * @param string $sex
743a25f0a04SGreg Roach	 * @param string $size
744a25f0a04SGreg Roach	 *
745a25f0a04SGreg Roach	 * @return string
746a25f0a04SGreg Roach	 */
747ffd703eaSGreg Roach	public static function sexImage($sex, $size = 'small') {
748a25f0a04SGreg Roach		return '<i class="icon-sex_' . strtolower($sex) . '_' . ($size == 'small' ? '9x9' : '15x15') . '"></i>';
749a25f0a04SGreg Roach	}
750a25f0a04SGreg Roach
751a25f0a04SGreg Roach	/**
752a25f0a04SGreg Roach	 * Generate the CSS class to be used for drawing this individual
753a25f0a04SGreg Roach	 *
754a25f0a04SGreg Roach	 * @return string
755a25f0a04SGreg Roach	 */
756ffd703eaSGreg Roach	public function getBoxStyle() {
757a25f0a04SGreg Roach		$tmp = array('M' => '', 'F' => 'F', 'U' => 'NN');
758a25f0a04SGreg Roach
759a25f0a04SGreg Roach		return 'person_box' . $tmp[$this->getSex()];
760a25f0a04SGreg Roach	}
761a25f0a04SGreg Roach
762a25f0a04SGreg Roach	/**
763a25f0a04SGreg Roach	 * Get a list of this individual’s spouse families
764a25f0a04SGreg Roach	 *
765cbc1590aSGreg Roach	 * @param int|null $access_level
766a25f0a04SGreg Roach	 *
767a25f0a04SGreg Roach	 * @return Family[]
768a25f0a04SGreg Roach	 */
7694b9ff166SGreg Roach	public function getSpouseFamilies($access_level = null) {
7704b9ff166SGreg Roach		if ($access_level === null) {
7714b9ff166SGreg Roach			$access_level = Auth::accessLevel($this->tree);
7724b9ff166SGreg Roach		}
7734b9ff166SGreg Roach
774518bbdc1SGreg Roach		$SHOW_PRIVATE_RELATIONSHIPS = $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS');
775a25f0a04SGreg Roach
776a25f0a04SGreg Roach		$families = array();
777a25f0a04SGreg Roach		foreach ($this->getFacts('FAMS', false, $access_level, $SHOW_PRIVATE_RELATIONSHIPS) as $fact) {
778a25f0a04SGreg Roach			$family = $fact->getTarget();
779a25f0a04SGreg Roach			if ($family && ($SHOW_PRIVATE_RELATIONSHIPS || $family->canShow($access_level))) {
780a25f0a04SGreg Roach				$families[] = $family;
781a25f0a04SGreg Roach			}
782a25f0a04SGreg Roach		}
783a25f0a04SGreg Roach
784a25f0a04SGreg Roach		return $families;
785a25f0a04SGreg Roach	}
786a25f0a04SGreg Roach
787a25f0a04SGreg Roach	/**
788a25f0a04SGreg Roach	 * Get the current spouse of this individual.
789a25f0a04SGreg Roach	 *
790a25f0a04SGreg Roach	 * Where an individual has multiple spouses, assume they are stored
791a25f0a04SGreg Roach	 * in chronological order, and take the last one found.
792a25f0a04SGreg Roach	 *
793a25f0a04SGreg Roach	 * @return Individual|null
794a25f0a04SGreg Roach	 */
795a25f0a04SGreg Roach	public function getCurrentSpouse() {
796a25f0a04SGreg Roach		$tmp    = $this->getSpouseFamilies();
797a25f0a04SGreg Roach		$family = end($tmp);
798a25f0a04SGreg Roach		if ($family) {
799a25f0a04SGreg Roach			return $family->getSpouse($this);
800a25f0a04SGreg Roach		} else {
801a25f0a04SGreg Roach			return null;
802a25f0a04SGreg Roach		}
803a25f0a04SGreg Roach	}
804a25f0a04SGreg Roach
805a25f0a04SGreg Roach	/**
806a25f0a04SGreg Roach	 * Count the children belonging to this individual.
807a25f0a04SGreg Roach	 *
808cbc1590aSGreg Roach	 * @return int
809a25f0a04SGreg Roach	 */
810a25f0a04SGreg Roach	public function getNumberOfChildren() {
811a25f0a04SGreg Roach		if (preg_match('/\n1 NCHI (\d+)(?:\n|$)/', $this->getGedcom(), $match)) {
812a25f0a04SGreg Roach			return $match[1];
813a25f0a04SGreg Roach		} else {
814a25f0a04SGreg Roach			$children = array();
815a25f0a04SGreg Roach			foreach ($this->getSpouseFamilies() as $fam) {
816a25f0a04SGreg Roach				foreach ($fam->getChildren() as $child) {
817a25f0a04SGreg Roach					$children[$child->getXref()] = true;
818a25f0a04SGreg Roach				}
819a25f0a04SGreg Roach			}
820a25f0a04SGreg Roach
821a25f0a04SGreg Roach			return count($children);
822a25f0a04SGreg Roach		}
823a25f0a04SGreg Roach	}
824a25f0a04SGreg Roach
825a25f0a04SGreg Roach	/**
826a25f0a04SGreg Roach	 * Get a list of this individual’s child families (i.e. their parents).
827a25f0a04SGreg Roach	 *
828cbc1590aSGreg Roach	 * @param int|null $access_level
829a25f0a04SGreg Roach	 *
830a25f0a04SGreg Roach	 * @return Family[]
831a25f0a04SGreg Roach	 */
8324b9ff166SGreg Roach	public function getChildFamilies($access_level = null) {
8334b9ff166SGreg Roach		if ($access_level === null) {
8344b9ff166SGreg Roach			$access_level = Auth::accessLevel($this->tree);
8354b9ff166SGreg Roach		}
8364b9ff166SGreg Roach
837518bbdc1SGreg Roach		$SHOW_PRIVATE_RELATIONSHIPS = $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS');
838a25f0a04SGreg Roach
839a25f0a04SGreg Roach		$families = array();
840a25f0a04SGreg Roach		foreach ($this->getFacts('FAMC', false, $access_level, $SHOW_PRIVATE_RELATIONSHIPS) as $fact) {
841a25f0a04SGreg Roach			$family = $fact->getTarget();
842a25f0a04SGreg Roach			if ($family && ($SHOW_PRIVATE_RELATIONSHIPS || $family->canShow($access_level))) {
843a25f0a04SGreg Roach				$families[] = $family;
844a25f0a04SGreg Roach			}
845a25f0a04SGreg Roach		}
846a25f0a04SGreg Roach
847a25f0a04SGreg Roach		return $families;
848a25f0a04SGreg Roach	}
849a25f0a04SGreg Roach
850a25f0a04SGreg Roach	/**
851a25f0a04SGreg Roach	 * Get the preferred parents for this individual.
852a25f0a04SGreg Roach	 *
853a25f0a04SGreg Roach	 * An individual may multiple parents (e.g. birth, adopted, disputed).
854a25f0a04SGreg Roach	 * The preferred family record is:
855a25f0a04SGreg Roach	 * (a) the first one with an explicit tag "_PRIMARY Y"
856a25f0a04SGreg Roach	 * (b) the first one with a pedigree of "birth"
857a25f0a04SGreg Roach	 * (c) the first one with no pedigree (default is "birth")
858a25f0a04SGreg Roach	 * (d) the first one found
859a25f0a04SGreg Roach	 *
860a25f0a04SGreg Roach	 * @return Family|null
861a25f0a04SGreg Roach	 */
862a25f0a04SGreg Roach	public function getPrimaryChildFamily() {
863a25f0a04SGreg Roach		$families = $this->getChildFamilies();
864a25f0a04SGreg Roach		switch (count($families)) {
865a25f0a04SGreg Roach		case 0:
866a25f0a04SGreg Roach			return null;
867a25f0a04SGreg Roach		case 1:
868a25f0a04SGreg Roach			return reset($families);
869a25f0a04SGreg Roach		default:
870a25f0a04SGreg Roach			// If there is more than one FAMC record, choose the preferred parents:
871a25f0a04SGreg Roach			// a) records with '2 _PRIMARY'
872a25f0a04SGreg Roach			foreach ($families as $famid => $fam) {
873a25f0a04SGreg Roach				if (preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 _PRIMARY Y)/", $this->getGedcom())) {
874a25f0a04SGreg Roach					return $fam;
875a25f0a04SGreg Roach				}
876a25f0a04SGreg Roach			}
877a25f0a04SGreg Roach			// b) records with '2 PEDI birt'
878a25f0a04SGreg Roach			foreach ($families as $famid => $fam) {
879a25f0a04SGreg Roach				if (preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 PEDI birth)/", $this->getGedcom())) {
880a25f0a04SGreg Roach					return $fam;
881a25f0a04SGreg Roach				}
882a25f0a04SGreg Roach			}
883a25f0a04SGreg Roach			// c) records with no '2 PEDI'
884a25f0a04SGreg Roach			foreach ($families as $famid => $fam) {
885a25f0a04SGreg Roach				if (!preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 PEDI)/", $this->getGedcom())) {
886a25f0a04SGreg Roach					return $fam;
887a25f0a04SGreg Roach				}
888a25f0a04SGreg Roach			}
889a25f0a04SGreg Roach
890a25f0a04SGreg Roach			// d) any record
891a25f0a04SGreg Roach			return reset($families);
892a25f0a04SGreg Roach		}
893a25f0a04SGreg Roach	}
894a25f0a04SGreg Roach
895a25f0a04SGreg Roach	/**
896a25f0a04SGreg Roach	 * Get a list of step-parent families.
897a25f0a04SGreg Roach	 *
898a25f0a04SGreg Roach	 * @return Family[]
899a25f0a04SGreg Roach	 */
900ffd703eaSGreg Roach	public function getChildStepFamilies() {
901a25f0a04SGreg Roach		$step_families = array();
902a25f0a04SGreg Roach		$families      = $this->getChildFamilies();
903a25f0a04SGreg Roach		foreach ($families as $family) {
904a25f0a04SGreg Roach			$father = $family->getHusband();
905a25f0a04SGreg Roach			if ($father) {
906a25f0a04SGreg Roach				foreach ($father->getSpouseFamilies() as $step_family) {
907a25f0a04SGreg Roach					if (!in_array($step_family, $families, true)) {
908a25f0a04SGreg Roach						$step_families[] = $step_family;
909a25f0a04SGreg Roach					}
910a25f0a04SGreg Roach				}
911a25f0a04SGreg Roach			}
912a25f0a04SGreg Roach			$mother = $family->getWife();
913a25f0a04SGreg Roach			if ($mother) {
914a25f0a04SGreg Roach				foreach ($mother->getSpouseFamilies() as $step_family) {
915a25f0a04SGreg Roach					if (!in_array($step_family, $families, true)) {
916a25f0a04SGreg Roach						$step_families[] = $step_family;
917a25f0a04SGreg Roach					}
918a25f0a04SGreg Roach				}
919a25f0a04SGreg Roach			}
920a25f0a04SGreg Roach		}
921a25f0a04SGreg Roach
922a25f0a04SGreg Roach		return $step_families;
923a25f0a04SGreg Roach	}
924a25f0a04SGreg Roach
925a25f0a04SGreg Roach	/**
926a25f0a04SGreg Roach	 * Get a list of step-parent families.
927a25f0a04SGreg Roach	 *
928a25f0a04SGreg Roach	 * @return Family[]
929a25f0a04SGreg Roach	 */
930ffd703eaSGreg Roach	public function getSpouseStepFamilies() {
931a25f0a04SGreg Roach		$step_families = array();
932a25f0a04SGreg Roach		$families      = $this->getSpouseFamilies();
933a25f0a04SGreg Roach		foreach ($families as $family) {
934a25f0a04SGreg Roach			$spouse = $family->getSpouse($this);
935a25f0a04SGreg Roach			if ($spouse) {
936a25f0a04SGreg Roach				foreach ($family->getSpouse($this)->getSpouseFamilies() as $step_family) {
937a25f0a04SGreg Roach					if (!in_array($step_family, $families, true)) {
938a25f0a04SGreg Roach						$step_families[] = $step_family;
939a25f0a04SGreg Roach					}
940a25f0a04SGreg Roach				}
941a25f0a04SGreg Roach			}
942a25f0a04SGreg Roach		}
943a25f0a04SGreg Roach
944a25f0a04SGreg Roach		return $step_families;
945a25f0a04SGreg Roach	}
946a25f0a04SGreg Roach
947a25f0a04SGreg Roach	/**
948a25f0a04SGreg Roach	 * A label for a parental family group
949a25f0a04SGreg Roach	 *
950a25f0a04SGreg Roach	 * @param Family $family
951a25f0a04SGreg Roach	 *
952a25f0a04SGreg Roach	 * @return string
953a25f0a04SGreg Roach	 */
954ffd703eaSGreg Roach	public function getChildFamilyLabel(Family $family) {
955a25f0a04SGreg Roach		if (preg_match('/\n1 FAMC @' . $family->getXref() . '@(?:\n[2-9].*)*\n2 PEDI (.+)/', $this->getGedcom(), $match)) {
956a25f0a04SGreg Roach			// A specified pedigree
957764a01d9SGreg Roach			return GedcomCodePedi::getChildFamilyLabel($match[1]);
958a25f0a04SGreg Roach		} else {
959a25f0a04SGreg Roach			// Default (birth) pedigree
960764a01d9SGreg Roach			return GedcomCodePedi::getChildFamilyLabel('');
961a25f0a04SGreg Roach		}
962a25f0a04SGreg Roach	}
963a25f0a04SGreg Roach
964a25f0a04SGreg Roach	/**
965a25f0a04SGreg Roach	 * Create a label for a step family
966a25f0a04SGreg Roach	 *
967a25f0a04SGreg Roach	 * @param Family $step_family
968a25f0a04SGreg Roach	 *
969a25f0a04SGreg Roach	 * @return string
970a25f0a04SGreg Roach	 */
971ffd703eaSGreg Roach	public function getStepFamilyLabel(Family $step_family) {
972a25f0a04SGreg Roach		foreach ($this->getChildFamilies() as $family) {
973a25f0a04SGreg Roach			if ($family !== $step_family) {
974a25f0a04SGreg Roach				// Must be a step-family
975a25f0a04SGreg Roach				foreach ($family->getSpouses() as $parent) {
976a25f0a04SGreg Roach					foreach ($step_family->getSpouses() as $step_parent) {
977a25f0a04SGreg Roach						if ($parent === $step_parent) {
978a25f0a04SGreg Roach							// One common parent - must be a step family
979a25f0a04SGreg Roach							if ($parent->getSex() == 'M') {
980a25f0a04SGreg Roach								// Father’s family with someone else
981a25f0a04SGreg Roach								if ($step_family->getSpouse($step_parent)) {
982a25f0a04SGreg Roach									return
983a25f0a04SGreg Roach										/* I18N: A step-family.  %s is an individual’s name */
984a25f0a04SGreg Roach										I18N::translate('Father’s family with %s', $step_family->getSpouse($step_parent)->getFullName());
985a25f0a04SGreg Roach								} else {
986a25f0a04SGreg Roach									return
987a25f0a04SGreg Roach										/* I18N: A step-family. */
988a25f0a04SGreg Roach										I18N::translate('Father’s family with an unknown individual');
989a25f0a04SGreg Roach								}
990a25f0a04SGreg Roach							} else {
991a25f0a04SGreg Roach								// Mother’s family with someone else
992a25f0a04SGreg Roach								if ($step_family->getSpouse($step_parent)) {
993a25f0a04SGreg Roach									return
994a25f0a04SGreg Roach										/* I18N: A step-family.  %s is an individual’s name */
995a25f0a04SGreg Roach										I18N::translate('Mother’s family with %s', $step_family->getSpouse($step_parent)->getFullName());
996a25f0a04SGreg Roach								} else {
997a25f0a04SGreg Roach									return
998a25f0a04SGreg Roach										/* I18N: A step-family. */
999a25f0a04SGreg Roach										I18N::translate('Mother’s family with an unknown individual');
1000a25f0a04SGreg Roach								}
1001a25f0a04SGreg Roach							}
1002a25f0a04SGreg Roach						}
1003a25f0a04SGreg Roach					}
1004a25f0a04SGreg Roach				}
1005a25f0a04SGreg Roach			}
1006a25f0a04SGreg Roach		}
1007a25f0a04SGreg Roach
1008a25f0a04SGreg Roach		// Perahps same parents - but a different family record?
1009a25f0a04SGreg Roach		return I18N::translate('Family with parents');
1010a25f0a04SGreg Roach	}
1011a25f0a04SGreg Roach
1012a25f0a04SGreg Roach	/**
1013a25f0a04SGreg Roach	 * @todo this function does not belong in this class
1014a25f0a04SGreg Roach	 *
1015a25f0a04SGreg Roach	 * @param Family $family
1016a25f0a04SGreg Roach	 *
1017a25f0a04SGreg Roach	 * @return string
1018a25f0a04SGreg Roach	 */
1019ffd703eaSGreg Roach	public function getSpouseFamilyLabel(Family $family) {
1020a25f0a04SGreg Roach		$spouse = $family->getSpouse($this);
1021a25f0a04SGreg Roach		if ($spouse) {
1022a25f0a04SGreg Roach			return
1023a25f0a04SGreg Roach				/* I18N: %s is the spouse name */
1024a25f0a04SGreg Roach				I18N::translate('Family with %s', $spouse->getFullName());
1025a25f0a04SGreg Roach		} else {
1026a25f0a04SGreg Roach			return $family->getFullName();
1027a25f0a04SGreg Roach		}
1028a25f0a04SGreg Roach	}
1029a25f0a04SGreg Roach
1030a25f0a04SGreg Roach	/**
1031a25f0a04SGreg Roach	 * get primary parents names for this individual
1032a25f0a04SGreg Roach	 *
1033a25f0a04SGreg Roach	 * @param string $classname optional css class
1034a25f0a04SGreg Roach	 * @param string $display   optional css style display
1035a25f0a04SGreg Roach	 *
1036a25f0a04SGreg Roach	 * @return string a div block with father & mother names
1037a25f0a04SGreg Roach	 */
1038ffd703eaSGreg Roach	public function getPrimaryParentsNames($classname = '', $display = '') {
1039a25f0a04SGreg Roach		$fam = $this->getPrimaryChildFamily();
1040a25f0a04SGreg Roach		if (!$fam) {
1041a25f0a04SGreg Roach			return '';
1042a25f0a04SGreg Roach		}
1043a25f0a04SGreg Roach		$txt = '<div';
1044a25f0a04SGreg Roach		if ($classname) {
1045a25f0a04SGreg Roach			$txt .= " class=\"$classname\"";
1046a25f0a04SGreg Roach		}
1047a25f0a04SGreg Roach		if ($display) {
1048a25f0a04SGreg Roach			$txt .= " style=\"display:$display\"";
1049a25f0a04SGreg Roach		}
1050a25f0a04SGreg Roach		$txt .= '>';
1051a25f0a04SGreg Roach		$husb = $fam->getHusband();
1052a25f0a04SGreg Roach		if ($husb) {
1053a25f0a04SGreg Roach			// Temporarily reset the 'prefered' display name, as we always
1054a25f0a04SGreg Roach			// want the default name, not the one selected for display on the indilist.
1055a25f0a04SGreg Roach			$primary = $husb->getPrimaryName();
1056a25f0a04SGreg Roach			$husb->setPrimaryName(null);
1057a25f0a04SGreg Roach			$txt .=
1058a25f0a04SGreg Roach				/* I18N: %s is the name of an individual’s father */
1059a25f0a04SGreg Roach				I18N::translate('Father: %s', $husb->getFullName()) . '<br>';
1060a25f0a04SGreg Roach			$husb->setPrimaryName($primary);
1061a25f0a04SGreg Roach		}
1062a25f0a04SGreg Roach		$wife = $fam->getWife();
1063a25f0a04SGreg Roach		if ($wife) {
1064a25f0a04SGreg Roach			// Temporarily reset the 'prefered' display name, as we always
1065a25f0a04SGreg Roach			// want the default name, not the one selected for display on the indilist.
1066a25f0a04SGreg Roach			$primary = $wife->getPrimaryName();
1067a25f0a04SGreg Roach			$wife->setPrimaryName(null);
1068a25f0a04SGreg Roach			$txt .=
1069a25f0a04SGreg Roach				/* I18N: %s is the name of an individual’s mother */
1070a25f0a04SGreg Roach				I18N::translate('Mother: %s', $wife->getFullName());
1071a25f0a04SGreg Roach			$wife->setPrimaryName($primary);
1072a25f0a04SGreg Roach		}
1073a25f0a04SGreg Roach		$txt .= '</div>';
1074a25f0a04SGreg Roach
1075a25f0a04SGreg Roach		return $txt;
1076a25f0a04SGreg Roach	}
1077a25f0a04SGreg Roach
1078a25f0a04SGreg Roach	/** {@inheritdoc} */
1079ffd703eaSGreg Roach	public function getFallBackName() {
1080a25f0a04SGreg Roach		return '@P.N. /@N.N./';
1081a25f0a04SGreg Roach	}
1082a25f0a04SGreg Roach
1083a25f0a04SGreg Roach	/**
1084a25f0a04SGreg Roach	 * Convert a name record into ‘full’ and ‘sort’ versions.
1085a25f0a04SGreg Roach	 * Use the NAME field to generate the ‘full’ version, as the
1086a25f0a04SGreg Roach	 * gedcom spec says that this is the individual’s name, as they would write it.
1087a25f0a04SGreg Roach	 * Use the SURN field to generate the sortable names.  Note that this field
1088a25f0a04SGreg Roach	 * may also be used for the ‘true’ surname, perhaps spelt differently to that
1089a25f0a04SGreg Roach	 * recorded in the NAME field. e.g.
1090a25f0a04SGreg Roach	 *
1091a25f0a04SGreg Roach	 * 1 NAME Robert /de Gliderow/
1092a25f0a04SGreg Roach	 * 2 GIVN Robert
1093a25f0a04SGreg Roach	 * 2 SPFX de
1094a25f0a04SGreg Roach	 * 2 SURN CLITHEROW
1095a25f0a04SGreg Roach	 * 2 NICK The Bald
1096a25f0a04SGreg Roach	 *
1097a25f0a04SGreg Roach	 * full=>'Robert de Gliderow 'The Bald''
1098a25f0a04SGreg Roach	 * sort=>'CLITHEROW, ROBERT'
1099a25f0a04SGreg Roach	 *
1100a25f0a04SGreg Roach	 * Handle multiple surnames, either as;
1101a25f0a04SGreg Roach	 *
1102a25f0a04SGreg Roach	 * 1 NAME Carlos /Vasquez/ y /Sante/
1103a25f0a04SGreg Roach	 * or
1104a25f0a04SGreg Roach	 * 1 NAME Carlos /Vasquez y Sante/
1105a25f0a04SGreg Roach	 * 2 GIVN Carlos
1106a25f0a04SGreg Roach	 * 2 SURN Vasquez,Sante
1107a25f0a04SGreg Roach	 *
1108a25f0a04SGreg Roach	 * @param string $type
1109a25f0a04SGreg Roach	 * @param string $full
1110a25f0a04SGreg Roach	 * @param string $gedcom
1111a25f0a04SGreg Roach	 */
1112a25f0a04SGreg Roach	protected function addName($type, $full, $gedcom) {
1113a25f0a04SGreg Roach		global $UNKNOWN_NN, $UNKNOWN_PN;
1114a25f0a04SGreg Roach
1115a25f0a04SGreg Roach		////////////////////////////////////////////////////////////////////////////
1116a25f0a04SGreg Roach		// Extract the structured name parts - use for "sortable" names and indexes
1117a25f0a04SGreg Roach		////////////////////////////////////////////////////////////////////////////
1118a25f0a04SGreg Roach
1119a25f0a04SGreg Roach		$sublevel = 1 + (int) $gedcom[0];
1120a25f0a04SGreg Roach		$NPFX     = preg_match("/\n{$sublevel} NPFX (.+)/", $gedcom, $match) ? $match[1] : '';
1121a25f0a04SGreg Roach		$GIVN     = preg_match("/\n{$sublevel} GIVN (.+)/", $gedcom, $match) ? $match[1] : '';
1122a25f0a04SGreg Roach		$SURN     = preg_match("/\n{$sublevel} SURN (.+)/", $gedcom, $match) ? $match[1] : '';
1123a25f0a04SGreg Roach		$NSFX     = preg_match("/\n{$sublevel} NSFX (.+)/", $gedcom, $match) ? $match[1] : '';
1124a25f0a04SGreg Roach		$NICK     = preg_match("/\n{$sublevel} NICK (.+)/", $gedcom, $match) ? $match[1] : '';
1125a25f0a04SGreg Roach
1126a25f0a04SGreg Roach		// SURN is an comma-separated list of surnames...
1127a25f0a04SGreg Roach		if ($SURN) {
1128a25f0a04SGreg Roach			$SURNS = preg_split('/ *, */', $SURN);
1129a25f0a04SGreg Roach		} else {
1130a25f0a04SGreg Roach			$SURNS = array();
1131a25f0a04SGreg Roach		}
1132a25f0a04SGreg Roach		// ...so is GIVN - but nobody uses it like that
1133a25f0a04SGreg Roach		$GIVN = str_replace('/ *, */', ' ', $GIVN);
1134a25f0a04SGreg Roach
1135a25f0a04SGreg Roach		////////////////////////////////////////////////////////////////////////////
1136a25f0a04SGreg Roach		// Extract the components from NAME - use for the "full" names
1137a25f0a04SGreg Roach		////////////////////////////////////////////////////////////////////////////
1138a25f0a04SGreg Roach
1139a25f0a04SGreg Roach		// Fix bad slashes.  e.g. 'John/Smith' => 'John/Smith/'
1140a25f0a04SGreg Roach		if (substr_count($full, '/') % 2 == 1) {
1141a25f0a04SGreg Roach			$full = $full . '/';
1142a25f0a04SGreg Roach		}
1143a25f0a04SGreg Roach
1144a25f0a04SGreg Roach		// GEDCOM uses "//" to indicate an unknown surname
1145a25f0a04SGreg Roach		$full = preg_replace('/\/\//', '/@N.N./', $full);
1146a25f0a04SGreg Roach
1147a25f0a04SGreg Roach		// Extract the surname.
1148a25f0a04SGreg Roach		// Note, there may be multiple surnames, e.g. Jean /Vasquez/ y /Cortes/
1149a25f0a04SGreg Roach		if (preg_match('/\/.*\//', $full, $match)) {
1150a25f0a04SGreg Roach			$surname = str_replace('/', '', $match[0]);
1151a25f0a04SGreg Roach		} else {
1152a25f0a04SGreg Roach			$surname = '';
1153a25f0a04SGreg Roach		}
1154a25f0a04SGreg Roach
1155a25f0a04SGreg Roach		// If we don’t have a SURN record, extract it from the NAME
1156a25f0a04SGreg Roach		if (!$SURNS) {
1157a25f0a04SGreg Roach			if (preg_match_all('/\/([^\/]*)\//', $full, $matches)) {
1158a25f0a04SGreg Roach				// There can be many surnames, each wrapped with '/'
1159a25f0a04SGreg Roach				$SURNS = $matches[1];
1160a25f0a04SGreg Roach				foreach ($SURNS as $n => $SURN) {
1161a25f0a04SGreg Roach					// Remove surname prefixes, such as "van de ", "d'" and "'t " (lower case only)
1162a25f0a04SGreg Roach					$SURNS[$n] = preg_replace('/^(?:[a-z]+ |[a-z]+\' ?|\'[a-z]+ )+/', '', $SURN);
1163a25f0a04SGreg Roach				}
1164a25f0a04SGreg Roach			} else {
1165a25f0a04SGreg Roach				// It is valid not to have a surname at all
1166a25f0a04SGreg Roach				$SURNS = array('');
1167a25f0a04SGreg Roach			}
1168a25f0a04SGreg Roach		}
1169a25f0a04SGreg Roach
1170a25f0a04SGreg Roach		// If we don’t have a GIVN record, extract it from the NAME
1171a25f0a04SGreg Roach		if (!$GIVN) {
1172a25f0a04SGreg Roach			$GIVN = preg_replace(
1173a25f0a04SGreg Roach				array(
1174a25f0a04SGreg Roach					'/ ?\/.*\/ ?/', // remove surname
1175a25f0a04SGreg Roach					'/ ?".+"/', // remove nickname
1176a25f0a04SGreg Roach					'/ {2,}/', // multiple spaces, caused by the above
1177a25f0a04SGreg Roach					'/^ | $/', // leading/trailing spaces, caused by the above
1178a25f0a04SGreg Roach				),
1179a25f0a04SGreg Roach				array(
1180a25f0a04SGreg Roach					' ',
1181a25f0a04SGreg Roach					' ',
1182a25f0a04SGreg Roach					' ',
1183a25f0a04SGreg Roach					'',
1184a25f0a04SGreg Roach				),
1185a25f0a04SGreg Roach				$full
1186a25f0a04SGreg Roach			);
1187a25f0a04SGreg Roach		}
1188a25f0a04SGreg Roach
1189a25f0a04SGreg Roach		// Add placeholder for unknown given name
1190a25f0a04SGreg Roach		if (!$GIVN) {
1191a25f0a04SGreg Roach			$GIVN = '@P.N.';
1192a25f0a04SGreg Roach			$pos  = strpos($full, '/');
1193a25f0a04SGreg Roach			$full = substr($full, 0, $pos) . '@P.N. ' . substr($full, $pos);
1194a25f0a04SGreg Roach		}
1195a25f0a04SGreg Roach
1196a25f0a04SGreg Roach		// The NPFX field might be present, but not appear in the NAME
1197a25f0a04SGreg Roach		if ($NPFX && strpos($full, "$NPFX ") !== 0) {
1198a25f0a04SGreg Roach			$full = "$NPFX $full";
1199a25f0a04SGreg Roach		}
1200a25f0a04SGreg Roach
1201a25f0a04SGreg Roach		// The NSFX field might be present, but not appear in the NAME
1202a25f0a04SGreg Roach		if ($NSFX && strrpos($full, " $NSFX") !== strlen($full) - strlen(" $NSFX")) {
1203a25f0a04SGreg Roach			$full = "$full $NSFX";
1204a25f0a04SGreg Roach		}
1205a25f0a04SGreg Roach
1206a25f0a04SGreg Roach		// GEDCOM nicknames should be specificied in a NICK field, or in the
1207a25f0a04SGreg Roach		// NAME filed, surrounded by ASCII quotes (or both).
1208c6f196c3SGreg Roach		if ($NICK && strpos($full, '"' . $NICK . '"') === false) {
1209c6f196c3SGreg Roach			// A NICK field is present, but not included in the NAME.
1210a25f0a04SGreg Roach			$pos = strpos($full, '/');
1211a25f0a04SGreg Roach			if ($pos === false) {
1212c6f196c3SGreg Roach				// No surname - just append it
1213c6f196c3SGreg Roach				$full .= ' "' . $NICK . '"';
1214a25f0a04SGreg Roach			} else {
1215a25f0a04SGreg Roach				// Insert before surname
1216c6f196c3SGreg Roach				$full = substr($full, 0, $pos) . '"' . $NICK . '" ' . substr($full, $pos);
1217a25f0a04SGreg Roach			}
1218a25f0a04SGreg Roach		}
1219a25f0a04SGreg Roach
1220a25f0a04SGreg Roach		// Remove slashes - they don’t get displayed
1221a25f0a04SGreg Roach		// $fullNN keeps the @N.N. placeholders, for the database
1222a25f0a04SGreg Roach		// $full is for display on-screen
1223a25f0a04SGreg Roach		$fullNN = str_replace('/', '', $full);
1224a25f0a04SGreg Roach
1225a25f0a04SGreg Roach		// Insert placeholders for any missing/unknown names
1226a25f0a04SGreg Roach		$full = str_replace('@N.N.', $UNKNOWN_NN, $full);
1227a25f0a04SGreg Roach		$full = str_replace('@P.N.', $UNKNOWN_PN, $full);
1228c6f196c3SGreg Roach		// Localise quotation marks around the nickname
1229c6f196c3SGreg Roach		$full = preg_replace_callback('/"([^"]*)"/', function ($matches) { return I18N::translate('“%s”', $matches[1]); }, $full);
1230c6f196c3SGreg Roach		// Format for display
1231a25f0a04SGreg Roach		$full = '<span class="NAME" dir="auto" translate="no">' . preg_replace('/\/([^\/]*)\//', '<span class="SURN">$1</span>', Filter::escapeHtml($full)) . '</span>';
1232a25f0a04SGreg Roach
1233c6f196c3SGreg Roach		// A suffix of “*” indicates a preferred name
1234a25f0a04SGreg Roach		$full = preg_replace('/([^ >]*)\*/', '<span class="starredname">\\1</span>', $full);
1235a25f0a04SGreg Roach
1236a25f0a04SGreg Roach		// Remove prefered-name indicater - they don’t go in the database
1237a25f0a04SGreg Roach		$GIVN   = str_replace('*', '', $GIVN);
1238a25f0a04SGreg Roach		$fullNN = str_replace('*', '', $fullNN);
1239a25f0a04SGreg Roach
1240ffd703eaSGreg Roach		foreach ($SURNS as $SURN) {
1241a25f0a04SGreg Roach			// Scottish 'Mc and Mac ' prefixes both sort under 'Mac'
1242a25f0a04SGreg Roach			if (strcasecmp(substr($SURN, 0, 2), 'Mc') == 0) {
1243a25f0a04SGreg Roach				$SURN = substr_replace($SURN, 'Mac', 0, 2);
1244a25f0a04SGreg Roach			} elseif (strcasecmp(substr($SURN, 0, 4), 'Mac ') == 0) {
1245a25f0a04SGreg Roach				$SURN = substr_replace($SURN, 'Mac', 0, 4);
1246a25f0a04SGreg Roach			}
1247a25f0a04SGreg Roach
1248a25f0a04SGreg Roach			$this->_getAllNames[] = array(
1249a25f0a04SGreg Roach				'type'    => $type,
1250a25f0a04SGreg Roach				'sort'    => $SURN . ',' . $GIVN,
1251a25f0a04SGreg Roach				'full'    => $full, // This is used for display
1252a25f0a04SGreg Roach				'fullNN'  => $fullNN, // This goes into the database
1253a25f0a04SGreg Roach				'surname' => $surname, // This goes into the database
1254a25f0a04SGreg Roach				'givn'    => $GIVN, // This goes into the database
1255a25f0a04SGreg Roach				'surn'    => $SURN, // This goes into the database
1256a25f0a04SGreg Roach			);
1257a25f0a04SGreg Roach		}
1258a25f0a04SGreg Roach	}
1259a25f0a04SGreg Roach
1260a25f0a04SGreg Roach	/**
1261a25f0a04SGreg Roach	 * Get an array of structures containing all the names in the record
1262a25f0a04SGreg Roach	 */
1263a25f0a04SGreg Roach	public function extractNames() {
12644b9ff166SGreg Roach		$this->extractNamesFromFacts(1, 'NAME', $this->getFacts('NAME', false, Auth::accessLevel($this->tree), $this->canShowName()));
1265a25f0a04SGreg Roach	}
1266a25f0a04SGreg Roach
1267a25f0a04SGreg Roach	/**
1268a25f0a04SGreg Roach	 * Extra info to display when displaying this record in a list of
1269a25f0a04SGreg Roach	 * selection items or favorites.
1270a25f0a04SGreg Roach	 *
1271a25f0a04SGreg Roach	 * @return string
1272a25f0a04SGreg Roach	 */
1273ffd703eaSGreg Roach	public function formatListDetails() {
1274a25f0a04SGreg Roach		return
1275841014f1SGreg Roach			$this->formatFirstMajorFact(WT_EVENTS_BIRT, 1) .
1276841014f1SGreg Roach			$this->formatFirstMajorFact(WT_EVENTS_DEAT, 1);
1277a25f0a04SGreg Roach	}
1278a25f0a04SGreg Roach
1279a25f0a04SGreg Roach	/**
1280a25f0a04SGreg Roach	 * Create a short name for compact display on charts
1281a25f0a04SGreg Roach	 *
1282a25f0a04SGreg Roach	 * @return string
1283a25f0a04SGreg Roach	 */
1284a25f0a04SGreg Roach	public function getShortName() {
1285518bbdc1SGreg Roach		global $bwidth, $UNKNOWN_NN, $UNKNOWN_PN;
1286a25f0a04SGreg Roach
1287a25f0a04SGreg Roach		// Estimate number of characters that can fit in box. Calulates to 28 characters in webtrees theme, or 34 if no thumbnail used.
1288518bbdc1SGreg Roach		if ($this->tree->getPreference('SHOW_HIGHLIGHT_IMAGES')) {
1289a25f0a04SGreg Roach			$char = intval(($bwidth - 40) / 6.5);
1290a25f0a04SGreg Roach		} else {
1291a25f0a04SGreg Roach			$char = ($bwidth / 6.5);
1292a25f0a04SGreg Roach		}
1293a25f0a04SGreg Roach		if ($this->canShowName()) {
1294a25f0a04SGreg Roach			$tmp        = $this->getAllNames();
1295a25f0a04SGreg Roach			$givn       = $tmp[$this->getPrimaryName()]['givn'];
1296a25f0a04SGreg Roach			$surn       = $tmp[$this->getPrimaryName()]['surname'];
1297a25f0a04SGreg Roach			$new_givn   = explode(' ', $givn);
1298a25f0a04SGreg Roach			$count_givn = count($new_givn);
1299a25f0a04SGreg Roach			$len_givn   = mb_strlen($givn);
1300a25f0a04SGreg Roach			$len_surn   = mb_strlen($surn);
1301a25f0a04SGreg Roach			$len        = $len_givn + $len_surn;
1302a25f0a04SGreg Roach			$i          = 1;
1303a25f0a04SGreg Roach			while ($len > $char && $i <= $count_givn) {
1304a25f0a04SGreg Roach				$new_givn[$count_givn - $i] = mb_substr($new_givn[$count_givn - $i], 0, 1);
1305a25f0a04SGreg Roach				$givn                       = implode(' ', $new_givn);
1306a25f0a04SGreg Roach				$len_givn                   = mb_strlen($givn);
1307a25f0a04SGreg Roach				$len                        = $len_givn + $len_surn;
1308a25f0a04SGreg Roach				$i++;
1309a25f0a04SGreg Roach			}
1310a25f0a04SGreg Roach			$max_surn = $char - $i * 2;
1311a25f0a04SGreg Roach			if ($len_surn > $max_surn) {
1312a25f0a04SGreg Roach				$surn = substr($surn, 0, $max_surn) . '…';
1313a25f0a04SGreg Roach			}
1314a25f0a04SGreg Roach			$shortname = str_replace(
1315a25f0a04SGreg Roach				array('@P.N.', '@N.N.'),
1316a25f0a04SGreg Roach				array($UNKNOWN_PN, $UNKNOWN_NN),
1317a25f0a04SGreg Roach				$givn . ' ' . $surn
1318a25f0a04SGreg Roach			);
1319a25f0a04SGreg Roach
1320a25f0a04SGreg Roach			return $shortname;
1321a25f0a04SGreg Roach		} else {
1322a25f0a04SGreg Roach			return I18N::translate('Private');
1323a25f0a04SGreg Roach		}
1324a25f0a04SGreg Roach	}
1325a25f0a04SGreg Roach}
1326