xref: /webtrees/app/Place.php (revision b20ddbf988e5722faabd0b832b1ca96772673e73)
1a25f0a04SGreg Roach<?php
2a25f0a04SGreg Roach/**
3a25f0a04SGreg Roach * webtrees: online genealogy
46bdf7674SGreg Roach * Copyright (C) 2017 webtrees development team
5a25f0a04SGreg Roach * This program is free software: you can redistribute it and/or modify
6a25f0a04SGreg Roach * it under the terms of the GNU General Public License as published by
7a25f0a04SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8a25f0a04SGreg Roach * (at your option) any later version.
9a25f0a04SGreg Roach * This program is distributed in the hope that it will be useful,
10a25f0a04SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11a25f0a04SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12a25f0a04SGreg Roach * GNU General Public License for more details.
13a25f0a04SGreg Roach * You should have received a copy of the GNU General Public License
14a25f0a04SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15a25f0a04SGreg Roach */
1676692c8bSGreg Roachnamespace Fisharebest\Webtrees;
17a25f0a04SGreg Roach
18a25f0a04SGreg Roach/**
1976692c8bSGreg Roach * A GEDCOM place (PLAC) object.
20a25f0a04SGreg Roach */
21a25f0a04SGreg Roachclass Place {
22a25f0a04SGreg Roach	const GEDCOM_SEPARATOR = ', ';
2384caa210SGreg Roach
2476692c8bSGreg Roach	/** @var string[] e.g. array('Westminster', 'London', 'England') */
2584caa210SGreg Roach	private $gedcom_place;
2684caa210SGreg Roach
2776692c8bSGreg Roach	/** @var Tree We may have the same place name in different trees. */
2884caa210SGreg Roach	private $tree;
29a25f0a04SGreg Roach
30a25f0a04SGreg Roach	/**
3176692c8bSGreg Roach	 * Create a place.
3276692c8bSGreg Roach	 *
33a25f0a04SGreg Roach	 * @param string $gedcom_place
3484caa210SGreg Roach	 * @param Tree   $tree
35a25f0a04SGreg Roach	 */
362769ecbeSGreg Roach	public function __construct($gedcom_place, Tree $tree) {
37*b20ddbf9SGreg Roach		if ($gedcom_place === '') {
3813abd6f3SGreg Roach			$this->gedcom_place = [];
39*b20ddbf9SGreg Roach		} else {
40*b20ddbf9SGreg Roach			$this->gedcom_place = explode(self::GEDCOM_SEPARATOR, $gedcom_place);
41a25f0a04SGreg Roach		}
4264b16745SGreg Roach		$this->tree = $tree;
43a25f0a04SGreg Roach	}
44a25f0a04SGreg Roach
45a25f0a04SGreg Roach	/**
4616d0b7f7SRico Sonntag	 * Extract the country (last part) of a place name.
4716d0b7f7SRico Sonntag	 *
4816d0b7f7SRico Sonntag	 * @param string $place - e.g. "London, England"
4916d0b7f7SRico Sonntag	 *
5016d0b7f7SRico Sonntag	 * @return string - e.g. "England"
5116d0b7f7SRico Sonntag	 */
5216d0b7f7SRico Sonntag	public function lastPart()
5316d0b7f7SRico Sonntag	{
5416d0b7f7SRico Sonntag		return end($this->gedcom_place);
5516d0b7f7SRico Sonntag	}
5616d0b7f7SRico Sonntag
5716d0b7f7SRico Sonntag	/**
5876692c8bSGreg Roach	 * Get the identifier for a place.
5976692c8bSGreg Roach	 *
60cbc1590aSGreg Roach	 * @return int
61a25f0a04SGreg Roach	 */
62a25f0a04SGreg Roach	public function getPlaceId() {
63a25f0a04SGreg Roach		$place_id = 0;
64a25f0a04SGreg Roach		foreach (array_reverse($this->gedcom_place) as $place) {
65a25f0a04SGreg Roach			$place_id = Database::prepare(
66a25f0a04SGreg Roach				"SELECT SQL_CACHE p_id FROM `##places` WHERE p_parent_id = :parent_id AND p_place = :place AND p_file = :tree_id"
6713abd6f3SGreg Roach			)->execute([
68a25f0a04SGreg Roach				'parent_id' => $place_id,
69a25f0a04SGreg Roach				'place'     => $place,
7064b16745SGreg Roach				'tree_id'   => $this->tree->getTreeId(),
7113abd6f3SGreg Roach			])->fetchOne();
72a25f0a04SGreg Roach		}
73a25f0a04SGreg Roach
74a25f0a04SGreg Roach		return $place_id;
75a25f0a04SGreg Roach	}
76a25f0a04SGreg Roach
77a25f0a04SGreg Roach	/**
7876692c8bSGreg Roach	 * Get the higher level place.
7976692c8bSGreg Roach	 *
80a25f0a04SGreg Roach	 * @return Place
81a25f0a04SGreg Roach	 */
82a25f0a04SGreg Roach	public function getParentPlace() {
8306ef8e02SGreg Roach		return new self(implode(self::GEDCOM_SEPARATOR, array_slice($this->gedcom_place, 1)), $this->tree);
84a25f0a04SGreg Roach	}
85a25f0a04SGreg Roach
86a25f0a04SGreg Roach	/**
8776692c8bSGreg Roach	 * Get the lower level places.
8876692c8bSGreg Roach	 *
89a25f0a04SGreg Roach	 * @return Place[]
90a25f0a04SGreg Roach	 */
91a25f0a04SGreg Roach	public function getChildPlaces() {
9213abd6f3SGreg Roach		$children = [];
93a25f0a04SGreg Roach		if ($this->getPlaceId()) {
94a25f0a04SGreg Roach			$parent_text = self::GEDCOM_SEPARATOR . $this->getGedcomName();
95a25f0a04SGreg Roach		} else {
96a25f0a04SGreg Roach			$parent_text = '';
97a25f0a04SGreg Roach		}
98a25f0a04SGreg Roach
99a25f0a04SGreg Roach		$rows = Database::prepare(
100a25f0a04SGreg Roach			"SELECT SQL_CACHE p_place FROM `##places`" .
101a25f0a04SGreg Roach			" WHERE p_parent_id = :parent_id AND p_file = :tree_id" .
102a25f0a04SGreg Roach			" ORDER BY p_place COLLATE :collation"
10313abd6f3SGreg Roach		)->execute([
104a25f0a04SGreg Roach			'parent_id' => $this->getPlaceId(),
10564b16745SGreg Roach			'tree_id'   => $this->tree->getTreeId(),
10681088023SGreg Roach			'collation' => I18N::collation(),
10713abd6f3SGreg Roach		])->fetchOneColumn();
108a25f0a04SGreg Roach		foreach ($rows as $row) {
10906ef8e02SGreg Roach			$children[] = new self($row . $parent_text, $this->tree);
110a25f0a04SGreg Roach		}
111a25f0a04SGreg Roach
112a25f0a04SGreg Roach		return $children;
113a25f0a04SGreg Roach	}
114a25f0a04SGreg Roach
115a25f0a04SGreg Roach	/**
11676692c8bSGreg Roach	 * Create a URL to the place-hierarchy page.
11776692c8bSGreg Roach	 *
118a25f0a04SGreg Roach	 * @return string
119a25f0a04SGreg Roach	 */
120a25f0a04SGreg Roach	public function getURL() {
121a25f0a04SGreg Roach		$url = 'placelist.php';
122a25f0a04SGreg Roach		foreach (array_reverse($this->gedcom_place) as $n => $place) {
123a25f0a04SGreg Roach			$url .= $n ? '&amp;' : '?';
124a25f0a04SGreg Roach			$url .= 'parent%5B%5D=' . rawurlencode($place);
125a25f0a04SGreg Roach		}
1265bb4de4dSGreg Roach		$url .= '&amp;ged=' . $this->tree->getNameUrl();
127a25f0a04SGreg Roach
128a25f0a04SGreg Roach		return $url;
129a25f0a04SGreg Roach	}
130a25f0a04SGreg Roach
131a25f0a04SGreg Roach	/**
13276692c8bSGreg Roach	 * Format this name for GEDCOM data.
13376692c8bSGreg Roach	 *
134a25f0a04SGreg Roach	 * @return string
135a25f0a04SGreg Roach	 */
136a25f0a04SGreg Roach	public function getGedcomName() {
137a25f0a04SGreg Roach		return implode(self::GEDCOM_SEPARATOR, $this->gedcom_place);
138a25f0a04SGreg Roach	}
139a25f0a04SGreg Roach
140a25f0a04SGreg Roach	/**
14176692c8bSGreg Roach	 * Format this place for display on screen.
14276692c8bSGreg Roach	 *
143a25f0a04SGreg Roach	 * @return string
144a25f0a04SGreg Roach	 */
145a25f0a04SGreg Roach	public function getPlaceName() {
146a25f0a04SGreg Roach		$place = reset($this->gedcom_place);
147a25f0a04SGreg Roach
148cc5ab399SGreg Roach		return $place ? '<span dir="auto">' . Html::escape($place) . '</span>' : I18N::translate('unknown');
149a25f0a04SGreg Roach	}
150a25f0a04SGreg Roach
151a25f0a04SGreg Roach	/**
15276692c8bSGreg Roach	 * Is this a null/empty/missing/invalid place?
15376692c8bSGreg Roach	 *
154a25f0a04SGreg Roach	 * @return bool
155a25f0a04SGreg Roach	 */
156a25f0a04SGreg Roach	public function isEmpty() {
157a25f0a04SGreg Roach		return empty($this->gedcom_place);
158a25f0a04SGreg Roach	}
159a25f0a04SGreg Roach
160a25f0a04SGreg Roach	/**
16176692c8bSGreg Roach	 * Generate the place name for display, including the full hierarchy.
16276692c8bSGreg Roach	 *
163a25f0a04SGreg Roach	 * @return string
164a25f0a04SGreg Roach	 */
165a25f0a04SGreg Roach	public function getFullName() {
166a25f0a04SGreg Roach		if (true) {
167a25f0a04SGreg Roach			// If a place hierarchy is a single entity
168cc5ab399SGreg Roach			return '<span dir="auto">' . Html::escape(implode(I18N::$list_separator, $this->gedcom_place)) . '</span>';
169a25f0a04SGreg Roach		} else {
170a25f0a04SGreg Roach			// If a place hierarchy is a list of distinct items
17113abd6f3SGreg Roach			$tmp = [];
172a25f0a04SGreg Roach			foreach ($this->gedcom_place as $place) {
173cc5ab399SGreg Roach				$tmp[] = '<span dir="auto">' . Html::escape($place) . '</span>';
174a25f0a04SGreg Roach			}
175a25f0a04SGreg Roach
176a25f0a04SGreg Roach			return implode(I18N::$list_separator, $tmp);
177a25f0a04SGreg Roach		}
178a25f0a04SGreg Roach	}
179a25f0a04SGreg Roach
180a25f0a04SGreg Roach	/**
181a25f0a04SGreg Roach	 * For lists and charts, where the full name won’t fit.
182a25f0a04SGreg Roach	 *
183a25f0a04SGreg Roach	 * @return string
184a25f0a04SGreg Roach	 */
185a25f0a04SGreg Roach	public function getShortName() {
18664b16745SGreg Roach		$SHOW_PEDIGREE_PLACES = $this->tree->getPreference('SHOW_PEDIGREE_PLACES');
187a25f0a04SGreg Roach
188a25f0a04SGreg Roach		if ($SHOW_PEDIGREE_PLACES >= count($this->gedcom_place)) {
189a25f0a04SGreg Roach			// A short place name - no need to abbreviate
190a25f0a04SGreg Roach			return $this->getFullName();
191a25f0a04SGreg Roach		} else {
192a25f0a04SGreg Roach			// Abbreviate the place name, for lists
19364b16745SGreg Roach			if ($this->tree->getPreference('SHOW_PEDIGREE_PLACES_SUFFIX')) {
194a25f0a04SGreg Roach				// The *last* $SHOW_PEDIGREE_PLACES components
195a25f0a04SGreg Roach				$short_name = implode(self::GEDCOM_SEPARATOR, array_slice($this->gedcom_place, -$SHOW_PEDIGREE_PLACES));
196a25f0a04SGreg Roach			} else {
197a25f0a04SGreg Roach				// The *first* $SHOW_PEDIGREE_PLACES components
198a25f0a04SGreg Roach				$short_name = implode(self::GEDCOM_SEPARATOR, array_slice($this->gedcom_place, 0, $SHOW_PEDIGREE_PLACES));
199a25f0a04SGreg Roach			}
200a25f0a04SGreg Roach			// Add a tool-tip showing the full name
201cc5ab399SGreg Roach			return '<span title="' . Html::escape($this->getGedcomName()) . '" dir="auto">' . Html::escape($short_name) . '</span>';
202a25f0a04SGreg Roach		}
203a25f0a04SGreg Roach	}
204a25f0a04SGreg Roach
205a25f0a04SGreg Roach	/**
20615d603e7SGreg Roach	 * For the "view all" option of placelist.phpp
207a25f0a04SGreg Roach	 *
208a25f0a04SGreg Roach	 * @return string
209a25f0a04SGreg Roach	 */
210a25f0a04SGreg Roach	public function getReverseName() {
21113abd6f3SGreg Roach		$tmp = [];
212a25f0a04SGreg Roach		foreach (array_reverse($this->gedcom_place) as $place) {
213cc5ab399SGreg Roach			$tmp[] = '<span dir="auto">' . Html::escape($place) . '</span>';
214a25f0a04SGreg Roach		}
215a25f0a04SGreg Roach
216a25f0a04SGreg Roach		return implode(I18N::$list_separator, $tmp);
217a25f0a04SGreg Roach	}
218a25f0a04SGreg Roach
219a25f0a04SGreg Roach	/**
22076692c8bSGreg Roach	 * Fetch all places from the database.
22176692c8bSGreg Roach	 *
22284caa210SGreg Roach	 * @param Tree $tree
223a25f0a04SGreg Roach	 *
2244080d558SGreg Roach	 * @return Place[]
225a25f0a04SGreg Roach	 */
226703a96f4SGreg Roach	public static function allPlaces(Tree $tree) {
22713abd6f3SGreg Roach		$places = [];
228a25f0a04SGreg Roach		$rows   =
229a25f0a04SGreg Roach			Database::prepare(
230a25f0a04SGreg Roach				"SELECT SQL_CACHE CONCAT_WS(', ', p1.p_place, p2.p_place, p3.p_place, p4.p_place, p5.p_place, p6.p_place, p7.p_place, p8.p_place, p9.p_place)" .
231a25f0a04SGreg Roach				" FROM      `##places` AS p1" .
232a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p2 ON (p1.p_parent_id = p2.p_id)" .
233a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p3 ON (p2.p_parent_id = p3.p_id)" .
234a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p4 ON (p3.p_parent_id = p4.p_id)" .
235a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p5 ON (p4.p_parent_id = p5.p_id)" .
236a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p6 ON (p5.p_parent_id = p6.p_id)" .
237a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p7 ON (p6.p_parent_id = p7.p_id)" .
238a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p8 ON (p7.p_parent_id = p8.p_id)" .
239a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p9 ON (p8.p_parent_id = p9.p_id)" .
24084caa210SGreg Roach				" WHERE p1.p_file = :tree_id" .
241288566a3SGreg Roach				" ORDER BY CONCAT_WS(', ', p9.p_place, p8.p_place, p7.p_place, p6.p_place, p5.p_place, p4.p_place, p3.p_place, p2.p_place, p1.p_place) COLLATE :collate"
242a25f0a04SGreg Roach			)
24313abd6f3SGreg Roach			->execute([
244288566a3SGreg Roach				'tree_id' => $tree->getTreeId(),
24581088023SGreg Roach				'collate' => I18N::collation(),
24613abd6f3SGreg Roach			])->fetchOneColumn();
247a25f0a04SGreg Roach		foreach ($rows as $row) {
24806ef8e02SGreg Roach			$places[] = new self($row, $tree);
249a25f0a04SGreg Roach		}
250cbc1590aSGreg Roach
251a25f0a04SGreg Roach		return $places;
252a25f0a04SGreg Roach	}
253a25f0a04SGreg Roach
254a25f0a04SGreg Roach	/**
25576692c8bSGreg Roach	 * Search for a place name.
25676692c8bSGreg Roach	 *
257a25f0a04SGreg Roach	 * @param string  $filter
25884caa210SGreg Roach	 * @param Tree    $tree
259a25f0a04SGreg Roach	 *
2604080d558SGreg Roach	 * @return Place[]
261a25f0a04SGreg Roach	 */
2622769ecbeSGreg Roach	public static function findPlaces($filter, Tree $tree) {
26313abd6f3SGreg Roach		$places = [];
264a25f0a04SGreg Roach		$rows   =
265a25f0a04SGreg Roach			Database::prepare(
266a25f0a04SGreg Roach				"SELECT SQL_CACHE CONCAT_WS(', ', p1.p_place, p2.p_place, p3.p_place, p4.p_place, p5.p_place, p6.p_place, p7.p_place, p8.p_place, p9.p_place)" .
267a25f0a04SGreg Roach				" FROM      `##places` AS p1" .
268a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p2 ON (p1.p_parent_id = p2.p_id)" .
269a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p3 ON (p2.p_parent_id = p3.p_id)" .
270a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p4 ON (p3.p_parent_id = p4.p_id)" .
271a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p5 ON (p4.p_parent_id = p5.p_id)" .
272a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p6 ON (p5.p_parent_id = p6.p_id)" .
273a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p7 ON (p6.p_parent_id = p7.p_id)" .
274a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p8 ON (p7.p_parent_id = p8.p_id)" .
275a25f0a04SGreg Roach				" LEFT JOIN `##places` AS p9 ON (p8.p_parent_id = p9.p_id)" .
27684caa210SGreg Roach				" WHERE CONCAT_WS(', ', p1.p_place, p2.p_place, p3.p_place, p4.p_place, p5.p_place, p6.p_place, p7.p_place, p8.p_place, p9.p_place) LIKE CONCAT('%', :filter_1, '%') AND CONCAT_WS(', ', p1.p_place, p2.p_place, p3.p_place, p4.p_place, p5.p_place, p6.p_place, p7.p_place, p8.p_place, p9.p_place) NOT LIKE CONCAT('%,%', :filter_2, '%') AND p1.p_file = :tree_id" .
27781088023SGreg Roach				" ORDER BY  CONCAT_WS(', ', p1.p_place, p2.p_place, p3.p_place, p4.p_place, p5.p_place, p6.p_place, p7.p_place, p8.p_place, p9.p_place) COLLATE :collation"
27813abd6f3SGreg Roach			)->execute([
27984caa210SGreg Roach				'filter_1'  => preg_quote($filter),
28084caa210SGreg Roach				'filter_2'  => preg_quote($filter),
28181088023SGreg Roach				'tree_id'   => $tree->getTreeId(),
28281088023SGreg Roach				'collation' => I18N::collation(),
28313abd6f3SGreg Roach			])->fetchOneColumn();
284a25f0a04SGreg Roach		foreach ($rows as $row) {
28506ef8e02SGreg Roach			$places[] = new self($row, $tree);
286a25f0a04SGreg Roach		}
287cbc1590aSGreg Roach
288a25f0a04SGreg Roach		return $places;
289a25f0a04SGreg Roach	}
290a25f0a04SGreg Roach}
291