xref: /webtrees/app/Tree.php (revision 1507cbca5c15e62b02ef736eaed5995572581c5b)
1a25f0a04SGreg Roach<?php
2a25f0a04SGreg Roach/**
3a25f0a04SGreg Roach * webtrees: online genealogy
4a25f0a04SGreg Roach * Copyright (C) 2015 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
183d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsExport;
193d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsImport;
20a25f0a04SGreg Roachuse PDOException;
21a25f0a04SGreg Roach
22a25f0a04SGreg Roach/**
2376692c8bSGreg Roach * Provide an interface to the wt_gedcom table.
24a25f0a04SGreg Roach */
25a25f0a04SGreg Roachclass Tree {
26cbc1590aSGreg Roach	/** @var int The tree's ID number */
27518bbdc1SGreg Roach	private $tree_id;
28518bbdc1SGreg Roach
29a25f0a04SGreg Roach	/** @var string The tree's name */
30a25f0a04SGreg Roach	private $name;
31518bbdc1SGreg Roach
32a25f0a04SGreg Roach	/** @var string The tree's title */
33a25f0a04SGreg Roach	private $title;
34a25f0a04SGreg Roach
35518bbdc1SGreg Roach	/** @var integer[] Default access rules for facts in this tree */
36518bbdc1SGreg Roach	private $fact_privacy;
37518bbdc1SGreg Roach
38518bbdc1SGreg Roach	/** @var integer[] Default access rules for individuals in this tree */
39518bbdc1SGreg Roach	private $individual_privacy;
40518bbdc1SGreg Roach
41518bbdc1SGreg Roach	/** @var integer[][] Default access rules for individual facts in this tree */
42518bbdc1SGreg Roach	private $individual_fact_privacy;
43518bbdc1SGreg Roach
44a25f0a04SGreg Roach	/** @var Tree[] All trees that we have permission to see. */
45a25f0a04SGreg Roach	private static $trees;
46a25f0a04SGreg Roach
47a25f0a04SGreg Roach	/** @var string[] Cached copy of the wt_gedcom_setting table. */
48a25f0a04SGreg Roach	private $preferences;
49a25f0a04SGreg Roach
50a25f0a04SGreg Roach	/** @var string[][] Cached copy of the wt_user_gedcom_setting table. */
51a25f0a04SGreg Roach	private $user_preferences = array();
52a25f0a04SGreg Roach
53a25f0a04SGreg Roach	/**
54a25f0a04SGreg Roach	 * Create a tree object.  This is a private constructor - it can only
55a25f0a04SGreg Roach	 * be called from Tree::getAll() to ensure proper initialisation.
56a25f0a04SGreg Roach	 *
57cbc1590aSGreg Roach	 * @param int    $tree_id
58a25f0a04SGreg Roach	 * @param string $tree_name
59a25f0a04SGreg Roach	 * @param string $tree_title
60a25f0a04SGreg Roach	 */
61518bbdc1SGreg Roach	private function __construct($tree_id, $tree_name, $tree_title) {
62518bbdc1SGreg Roach		$this->tree_id                 = $tree_id;
63a25f0a04SGreg Roach		$this->name                    = $tree_name;
64a25f0a04SGreg Roach		$this->title                   = $tree_title;
65518bbdc1SGreg Roach		$this->fact_privacy            = array();
66518bbdc1SGreg Roach		$this->individual_privacy      = array();
67518bbdc1SGreg Roach		$this->individual_fact_privacy = array();
68518bbdc1SGreg Roach
69518bbdc1SGreg Roach		// Load the privacy settings for this tree
70518bbdc1SGreg Roach		$rows = Database::prepare(
71518bbdc1SGreg Roach			"SELECT SQL_CACHE xref, tag_type, CASE resn WHEN 'none' THEN :priv_public WHEN 'privacy' THEN :priv_user WHEN 'confidential' THEN :priv_none WHEN 'hidden' THEN :priv_hide END AS resn" .
72518bbdc1SGreg Roach			" FROM `##default_resn` WHERE gedcom_id = :tree_id"
73518bbdc1SGreg Roach		)->execute(array(
744b9ff166SGreg Roach			'priv_public' => Auth::PRIV_PRIVATE,
754b9ff166SGreg Roach			'priv_user'   => Auth::PRIV_USER,
764b9ff166SGreg Roach			'priv_none'   => Auth::PRIV_NONE,
774b9ff166SGreg Roach			'priv_hide'   => Auth::PRIV_HIDE,
78cbc1590aSGreg Roach			'tree_id'     => $this->tree_id,
79518bbdc1SGreg Roach		))->fetchAll();
80518bbdc1SGreg Roach
81518bbdc1SGreg Roach		foreach ($rows as $row) {
82518bbdc1SGreg Roach			if ($row->xref !== null) {
83518bbdc1SGreg Roach				if ($row->tag_type !== null) {
84518bbdc1SGreg Roach					$this->individual_fact_privacy[$row->xref][$row->tag_type] = (int) $row->resn;
85518bbdc1SGreg Roach				} else {
86518bbdc1SGreg Roach					$this->individual_privacy[$row->xref] = (int) $row->resn;
87518bbdc1SGreg Roach				}
88518bbdc1SGreg Roach			} else {
89518bbdc1SGreg Roach				$this->fact_privacy[$row->tag_type] = (int) $row->resn;
90518bbdc1SGreg Roach			}
91518bbdc1SGreg Roach		}
92518bbdc1SGreg Roach
93a25f0a04SGreg Roach	}
94a25f0a04SGreg Roach
95a25f0a04SGreg Roach	/**
96a25f0a04SGreg Roach	 * The ID of this tree
97a25f0a04SGreg Roach	 *
98cbc1590aSGreg Roach	 * @return int
99a25f0a04SGreg Roach	 */
100518bbdc1SGreg Roach	public function getTreeId() {
101518bbdc1SGreg Roach		return $this->tree_id;
102a25f0a04SGreg Roach	}
103a25f0a04SGreg Roach
104a25f0a04SGreg Roach	/**
105a25f0a04SGreg Roach	 * The name of this tree
106a25f0a04SGreg Roach	 *
107a25f0a04SGreg Roach	 * @return string
108a25f0a04SGreg Roach	 */
109000959d9SGreg Roach	public function getName() {
110a25f0a04SGreg Roach		return $this->name;
111a25f0a04SGreg Roach	}
112a25f0a04SGreg Roach
113a25f0a04SGreg Roach	/**
114a25f0a04SGreg Roach	 * The name of this tree
115a25f0a04SGreg Roach	 *
116a25f0a04SGreg Roach	 * @return string
117a25f0a04SGreg Roach	 */
118000959d9SGreg Roach	public function getNameHtml() {
119a25f0a04SGreg Roach		return Filter::escapeHtml($this->name);
120a25f0a04SGreg Roach	}
121a25f0a04SGreg Roach
122a25f0a04SGreg Roach	/**
123a25f0a04SGreg Roach	 * The name of this tree
124a25f0a04SGreg Roach	 *
125a25f0a04SGreg Roach	 * @return string
126a25f0a04SGreg Roach	 */
127000959d9SGreg Roach	public function getNameUrl() {
128a25f0a04SGreg Roach		return Filter::escapeUrl($this->name);
129a25f0a04SGreg Roach	}
130a25f0a04SGreg Roach
131a25f0a04SGreg Roach	/**
132a25f0a04SGreg Roach	 * The title of this tree
133a25f0a04SGreg Roach	 *
134a25f0a04SGreg Roach	 * @return string
135a25f0a04SGreg Roach	 */
136000959d9SGreg Roach	public function getTitle() {
137a25f0a04SGreg Roach		return $this->title;
138a25f0a04SGreg Roach	}
139a25f0a04SGreg Roach
140a25f0a04SGreg Roach	/**
141a25f0a04SGreg Roach	 * The title of this tree, with HTML markup
142a25f0a04SGreg Roach	 *
143a25f0a04SGreg Roach	 * @return string
144a25f0a04SGreg Roach	 */
145000959d9SGreg Roach	public function getTitleHtml() {
146a77340e1SGreg Roach		return '<span dir="auto">' . Filter::escapeHtml($this->title) . '</span>';
147a25f0a04SGreg Roach	}
148a25f0a04SGreg Roach
149a25f0a04SGreg Roach	/**
150518bbdc1SGreg Roach	 * The fact-level privacy for this tree.
151518bbdc1SGreg Roach	 *
1524f381cf1SGreg Roach	 * @return integer[]
153518bbdc1SGreg Roach	 */
154518bbdc1SGreg Roach	public function getFactPrivacy() {
155518bbdc1SGreg Roach		return $this->fact_privacy;
156518bbdc1SGreg Roach	}
157518bbdc1SGreg Roach
158518bbdc1SGreg Roach	/**
159518bbdc1SGreg Roach	 * The individual-level privacy for this tree.
160518bbdc1SGreg Roach	 *
1614f381cf1SGreg Roach	 * @return integer[]
162518bbdc1SGreg Roach	 */
163518bbdc1SGreg Roach	public function getIndividualPrivacy() {
164518bbdc1SGreg Roach		return $this->individual_privacy;
165518bbdc1SGreg Roach	}
166518bbdc1SGreg Roach
167518bbdc1SGreg Roach	/**
168518bbdc1SGreg Roach	 * The individual-fact-level privacy for this tree.
169518bbdc1SGreg Roach	 *
1704f381cf1SGreg Roach	 * @return integer[][]
171518bbdc1SGreg Roach	 */
172518bbdc1SGreg Roach	public function getIndividualFactPrivacy() {
173518bbdc1SGreg Roach		return $this->individual_fact_privacy;
174518bbdc1SGreg Roach	}
175518bbdc1SGreg Roach
176518bbdc1SGreg Roach	/**
177a25f0a04SGreg Roach	 * Get the tree’s configuration settings.
178a25f0a04SGreg Roach	 *
179a25f0a04SGreg Roach	 * @param string      $setting_name
180a25f0a04SGreg Roach	 * @param string|null $default
181a25f0a04SGreg Roach	 *
182a25f0a04SGreg Roach	 * @return string|null
183a25f0a04SGreg Roach	 */
184a25f0a04SGreg Roach	public function getPreference($setting_name, $default = null) {
185a25f0a04SGreg Roach		if ($this->preferences === null) {
186a25f0a04SGreg Roach			$this->preferences = Database::prepare(
187a25f0a04SGreg Roach				"SELECT SQL_CACHE setting_name, setting_value FROM `##gedcom_setting` WHERE gedcom_id = ?"
188518bbdc1SGreg Roach			)->execute(array($this->tree_id))->fetchAssoc();
189a25f0a04SGreg Roach		}
190a25f0a04SGreg Roach
191a25f0a04SGreg Roach		if (array_key_exists($setting_name, $this->preferences)) {
192a25f0a04SGreg Roach			return $this->preferences[$setting_name];
193a25f0a04SGreg Roach		} else {
194a25f0a04SGreg Roach			return $default;
195a25f0a04SGreg Roach		}
196a25f0a04SGreg Roach	}
197a25f0a04SGreg Roach
198a25f0a04SGreg Roach	/**
199a25f0a04SGreg Roach	 * Set the tree’s configuration settings.
200a25f0a04SGreg Roach	 *
201a25f0a04SGreg Roach	 * @param string $setting_name
202a25f0a04SGreg Roach	 * @param string $setting_value
203a25f0a04SGreg Roach	 *
204a25f0a04SGreg Roach	 * @return $this
205a25f0a04SGreg Roach	 */
206a25f0a04SGreg Roach	public function setPreference($setting_name, $setting_value) {
207a25f0a04SGreg Roach		if ($setting_value !== $this->getPreference($setting_name)) {
208a25f0a04SGreg Roach			// Update the database
209a25f0a04SGreg Roach			if ($setting_value === null) {
210a25f0a04SGreg Roach				Database::prepare(
211a25f0a04SGreg Roach					"DELETE FROM `##gedcom_setting` WHERE gedcom_id = :tree_id AND setting_name = :setting_name"
212a25f0a04SGreg Roach				)->execute(array(
213518bbdc1SGreg Roach					'tree_id'      => $this->tree_id,
214a25f0a04SGreg Roach					'setting_name' => $setting_name,
215a25f0a04SGreg Roach				));
216a25f0a04SGreg Roach			} else {
217a25f0a04SGreg Roach				Database::prepare(
218a25f0a04SGreg Roach					"REPLACE INTO `##gedcom_setting` (gedcom_id, setting_name, setting_value)" .
219a25f0a04SGreg Roach					" VALUES (:tree_id, :setting_name, LEFT(:setting_value, 255))"
220a25f0a04SGreg Roach				)->execute(array(
221518bbdc1SGreg Roach					'tree_id'       => $this->tree_id,
222a25f0a04SGreg Roach					'setting_name'  => $setting_name,
223a25f0a04SGreg Roach					'setting_value' => $setting_value,
224a25f0a04SGreg Roach				));
225a25f0a04SGreg Roach			}
226a25f0a04SGreg Roach			// Update our cache
227a25f0a04SGreg Roach			$this->preferences[$setting_name] = $setting_value;
228a25f0a04SGreg Roach			// Audit log of changes
229a25f0a04SGreg Roach			Log::addConfigurationLog('Tree setting "' . $setting_name . '" set to "' . $setting_value . '"', $this);
230a25f0a04SGreg Roach		}
231a25f0a04SGreg Roach
232a25f0a04SGreg Roach		return $this;
233a25f0a04SGreg Roach	}
234a25f0a04SGreg Roach
235a25f0a04SGreg Roach	/**
236a25f0a04SGreg Roach	 * Get the tree’s user-configuration settings.
237a25f0a04SGreg Roach	 *
238a25f0a04SGreg Roach	 * @param User        $user
239a25f0a04SGreg Roach	 * @param string      $setting_name
240a25f0a04SGreg Roach	 * @param string|null $default
241a25f0a04SGreg Roach	 *
242a25f0a04SGreg Roach	 * @return string
243a25f0a04SGreg Roach	 */
244a25f0a04SGreg Roach	public function getUserPreference(User $user, $setting_name, $default = null) {
245a25f0a04SGreg Roach		// There are lots of settings, and we need to fetch lots of them on every page
246a25f0a04SGreg Roach		// so it is quicker to fetch them all in one go.
247a25f0a04SGreg Roach		if (!array_key_exists($user->getUserId(), $this->user_preferences)) {
248a25f0a04SGreg Roach			$this->user_preferences[$user->getUserId()] = Database::prepare(
249a25f0a04SGreg Roach				"SELECT SQL_CACHE setting_name, setting_value FROM `##user_gedcom_setting` WHERE user_id = ? AND gedcom_id = ?"
250518bbdc1SGreg Roach			)->execute(array($user->getUserId(), $this->tree_id))->fetchAssoc();
251a25f0a04SGreg Roach		}
252a25f0a04SGreg Roach
253a25f0a04SGreg Roach		if (array_key_exists($setting_name, $this->user_preferences[$user->getUserId()])) {
254a25f0a04SGreg Roach			return $this->user_preferences[$user->getUserId()][$setting_name];
255a25f0a04SGreg Roach		} else {
256a25f0a04SGreg Roach			return $default;
257a25f0a04SGreg Roach		}
258a25f0a04SGreg Roach	}
259a25f0a04SGreg Roach
260a25f0a04SGreg Roach	/**
261a25f0a04SGreg Roach	 * Set the tree’s user-configuration settings.
262a25f0a04SGreg Roach	 *
263a25f0a04SGreg Roach	 * @param User    $user
264a25f0a04SGreg Roach	 * @param string  $setting_name
265a25f0a04SGreg Roach	 * @param string  $setting_value
266a25f0a04SGreg Roach	 *
267a25f0a04SGreg Roach	 * @return $this
268a25f0a04SGreg Roach	 */
269a25f0a04SGreg Roach	public function setUserPreference(User $user, $setting_name, $setting_value) {
270a25f0a04SGreg Roach		if ($this->getUserPreference($user, $setting_name) !== $setting_value) {
271a25f0a04SGreg Roach			// Update the database
272a25f0a04SGreg Roach			if ($setting_value === null) {
273a25f0a04SGreg Roach				Database::prepare(
274a25f0a04SGreg Roach					"DELETE FROM `##user_gedcom_setting` WHERE gedcom_id = :tree_id AND user_id = :user_id AND setting_name = :setting_name"
275a25f0a04SGreg Roach				)->execute(array(
276518bbdc1SGreg Roach					'tree_id'      => $this->tree_id,
277a25f0a04SGreg Roach					'user_id'      => $user->getUserId(),
278a25f0a04SGreg Roach					'setting_name' => $setting_name,
279a25f0a04SGreg Roach				));
280a25f0a04SGreg Roach			} else {
281a25f0a04SGreg Roach				Database::prepare(
282a25f0a04SGreg Roach					"REPLACE INTO `##user_gedcom_setting` (user_id, gedcom_id, setting_name, setting_value) VALUES (:user_id, :tree_id, :setting_name, LEFT(:setting_value, 255))"
283a25f0a04SGreg Roach				)->execute(array(
284a25f0a04SGreg Roach					'user_id'       => $user->getUserId(),
285518bbdc1SGreg Roach					'tree_id'       => $this->tree_id,
286a25f0a04SGreg Roach					'setting_name'  => $setting_name,
287cbc1590aSGreg Roach					'setting_value' => $setting_value,
288a25f0a04SGreg Roach				));
289a25f0a04SGreg Roach			}
290a25f0a04SGreg Roach			// Update our cache
291a25f0a04SGreg Roach			$this->user_preferences[$user->getUserId()][$setting_name] = $setting_value;
292a25f0a04SGreg Roach			// Audit log of changes
293a25f0a04SGreg Roach			Log::addConfigurationLog('Tree setting "' . $setting_name . '" set to "' . $setting_value . '" for user "' . $user->getUserName() . '"', $this);
294a25f0a04SGreg Roach		}
295a25f0a04SGreg Roach
296a25f0a04SGreg Roach		return $this;
297a25f0a04SGreg Roach	}
298a25f0a04SGreg Roach
299a25f0a04SGreg Roach	/**
300a25f0a04SGreg Roach	 * Can a user accept changes for this tree?
301a25f0a04SGreg Roach	 *
302a25f0a04SGreg Roach	 * @param User $user
303a25f0a04SGreg Roach	 *
304cbc1590aSGreg Roach	 * @return bool
305a25f0a04SGreg Roach	 */
306a25f0a04SGreg Roach	public function canAcceptChanges(User $user) {
307a25f0a04SGreg Roach		return Auth::isModerator($this, $user);
308a25f0a04SGreg Roach	}
309a25f0a04SGreg Roach
310a25f0a04SGreg Roach	/**
311a25f0a04SGreg Roach	 * Fetch all the trees that we have permission to access.
312a25f0a04SGreg Roach	 *
313a25f0a04SGreg Roach	 * @return Tree[]
314a25f0a04SGreg Roach	 */
315a25f0a04SGreg Roach	public static function getAll() {
316a25f0a04SGreg Roach		if (self::$trees === null) {
317a25f0a04SGreg Roach			self::$trees = array();
318a25f0a04SGreg Roach			$rows        = Database::prepare(
319a25f0a04SGreg Roach				"SELECT SQL_CACHE g.gedcom_id AS tree_id, g.gedcom_name AS tree_name, gs1.setting_value AS tree_title" .
320a25f0a04SGreg Roach				" FROM `##gedcom` g" .
321a25f0a04SGreg Roach				" LEFT JOIN `##gedcom_setting`      gs1 ON (g.gedcom_id=gs1.gedcom_id AND gs1.setting_name='title')" .
322a25f0a04SGreg Roach				" LEFT JOIN `##gedcom_setting`      gs2 ON (g.gedcom_id=gs2.gedcom_id AND gs2.setting_name='imported')" .
323a25f0a04SGreg Roach				" LEFT JOIN `##gedcom_setting`      gs3 ON (g.gedcom_id=gs3.gedcom_id AND gs3.setting_name='REQUIRE_AUTHENTICATION')" .
324a25f0a04SGreg Roach				" LEFT JOIN `##user_gedcom_setting` ugs ON (g.gedcom_id=ugs.gedcom_id AND ugs.setting_name='canedit' AND ugs.user_id=?)" .
325a25f0a04SGreg Roach				" WHERE " .
326a25f0a04SGreg Roach				"  g.gedcom_id>0 AND (" . // exclude the "template" tree
327a25f0a04SGreg Roach				"    EXISTS (SELECT 1 FROM `##user_setting` WHERE user_id=? AND setting_name='canadmin' AND setting_value=1)" . // Admin sees all
328a25f0a04SGreg Roach				"   ) OR (" .
329a25f0a04SGreg Roach				"    gs2.setting_value = 1 AND (" . // Allow imported trees, with either:
330a25f0a04SGreg Roach				"     gs3.setting_value <> 1 OR" . // visitor access
331a25f0a04SGreg Roach				"     IFNULL(ugs.setting_value, 'none')<>'none'" . // explicit access
332a25f0a04SGreg Roach				"   )" .
333a25f0a04SGreg Roach				"  )" .
334a25f0a04SGreg Roach				" ORDER BY g.sort_order, 3"
335a25f0a04SGreg Roach			)->execute(array(Auth::id(), Auth::id()))->fetchAll();
336a25f0a04SGreg Roach			foreach ($rows as $row) {
33709c6c661SGreg Roach				self::$trees[] = new self((int) $row->tree_id, $row->tree_name, $row->tree_title);
338a25f0a04SGreg Roach			}
339a25f0a04SGreg Roach		}
340a25f0a04SGreg Roach
341a25f0a04SGreg Roach		return self::$trees;
342a25f0a04SGreg Roach	}
343a25f0a04SGreg Roach
344a25f0a04SGreg Roach	/**
345d2cdeb3fSGreg Roach	 * Find the tree with a specific ID.
346a25f0a04SGreg Roach	 *
347cbc1590aSGreg Roach	 * @param int $tree_id
348cbc1590aSGreg Roach	 *
349cbc1590aSGreg Roach	 * @throws \DomainException
350a25f0a04SGreg Roach	 *
351a25f0a04SGreg Roach	 * @return Tree
352a25f0a04SGreg Roach	 */
353d2cdeb3fSGreg Roach	public static function findById($tree_id) {
35451d0f842SGreg Roach		foreach (self::getAll() as $tree) {
355e568acceSGreg Roach			if ($tree->tree_id == $tree_id) {
35651d0f842SGreg Roach				return $tree;
35751d0f842SGreg Roach			}
35851d0f842SGreg Roach		}
35951d0f842SGreg Roach		throw new \DomainException;
360a25f0a04SGreg Roach	}
361a25f0a04SGreg Roach
362a25f0a04SGreg Roach	/**
363d2cdeb3fSGreg Roach	 * Find the tree with a specific name.
364cf4bcc09SGreg Roach	 *
365cf4bcc09SGreg Roach	 * @param string $tree_name
366cf4bcc09SGreg Roach	 *
367cf4bcc09SGreg Roach	 * @return Tree|null
368cf4bcc09SGreg Roach	 */
369cf4bcc09SGreg Roach	public static function findByName($tree_name) {
370cf4bcc09SGreg Roach		foreach (self::getAll() as $tree) {
37151d0f842SGreg Roach			if ($tree->name === $tree_name) {
372cf4bcc09SGreg Roach				return $tree;
373cf4bcc09SGreg Roach			}
374cf4bcc09SGreg Roach		}
375cf4bcc09SGreg Roach
376cf4bcc09SGreg Roach		return null;
377cf4bcc09SGreg Roach	}
378cf4bcc09SGreg Roach
379cf4bcc09SGreg Roach	/**
380a25f0a04SGreg Roach	 * Create arguments to select_edit_control()
381a25f0a04SGreg Roach	 * Note - these will be escaped later
382a25f0a04SGreg Roach	 *
383a25f0a04SGreg Roach	 * @return string[]
384a25f0a04SGreg Roach	 */
385a25f0a04SGreg Roach	public static function getIdList() {
386a25f0a04SGreg Roach		$list = array();
387a25f0a04SGreg Roach		foreach (self::getAll() as $tree) {
388518bbdc1SGreg Roach			$list[$tree->tree_id] = $tree->title;
389a25f0a04SGreg Roach		}
390a25f0a04SGreg Roach
391a25f0a04SGreg Roach		return $list;
392a25f0a04SGreg Roach	}
393a25f0a04SGreg Roach
394a25f0a04SGreg Roach	/**
395a25f0a04SGreg Roach	 * Create arguments to select_edit_control()
396a25f0a04SGreg Roach	 * Note - these will be escaped later
397a25f0a04SGreg Roach	 *
398a25f0a04SGreg Roach	 * @return string[]
399a25f0a04SGreg Roach	 */
400a25f0a04SGreg Roach	public static function getNameList() {
401a25f0a04SGreg Roach		$list = array();
402a25f0a04SGreg Roach		foreach (self::getAll() as $tree) {
403a25f0a04SGreg Roach			$list[$tree->name] = $tree->title;
404a25f0a04SGreg Roach		}
405a25f0a04SGreg Roach
406a25f0a04SGreg Roach		return $list;
407a25f0a04SGreg Roach	}
408a25f0a04SGreg Roach
409a25f0a04SGreg Roach	/**
410a25f0a04SGreg Roach	 * Create a new tree
411a25f0a04SGreg Roach	 *
412a25f0a04SGreg Roach	 * @param string $tree_name
413a25f0a04SGreg Roach	 * @param string $tree_title
414a25f0a04SGreg Roach	 *
415a25f0a04SGreg Roach	 * @return Tree
416a25f0a04SGreg Roach	 */
417a25f0a04SGreg Roach	public static function create($tree_name, $tree_title) {
418a25f0a04SGreg Roach		try {
419a25f0a04SGreg Roach			// Create a new tree
420a25f0a04SGreg Roach			Database::prepare(
421a25f0a04SGreg Roach				"INSERT INTO `##gedcom` (gedcom_name) VALUES (?)"
422a25f0a04SGreg Roach			)->execute(array($tree_name));
423a25f0a04SGreg Roach			$tree_id = Database::prepare("SELECT LAST_INSERT_ID()")->fetchOne();
424a25f0a04SGreg Roach		} catch (PDOException $ex) {
425a25f0a04SGreg Roach			// A tree with that name already exists?
426ef2fd529SGreg Roach			return self::findByName($tree_name);
427a25f0a04SGreg Roach		}
428a25f0a04SGreg Roach
429a25f0a04SGreg Roach		// Update the list of trees - to include this new one
430a25f0a04SGreg Roach		self::$trees = null;
431d2cdeb3fSGreg Roach		$tree        = self::findById($tree_id);
432a25f0a04SGreg Roach
433a25f0a04SGreg Roach		$tree->setPreference('imported', '0');
434a25f0a04SGreg Roach		$tree->setPreference('title', $tree_title);
435a25f0a04SGreg Roach
436a25f0a04SGreg Roach		// Module privacy
437a25f0a04SGreg Roach		Module::setDefaultAccess($tree_id);
438a25f0a04SGreg Roach
439*1507cbcaSGreg Roach		// Set preferences from default tree
440*1507cbcaSGreg Roach		Database::prepare(
441*1507cbcaSGreg Roach			"INSERT INTO `##gedcom_setting` (gedcom_id, setting_name, setting_value)" .
442*1507cbcaSGreg Roach			" SELECT :tree_id, setting_name, setting_value" .
443*1507cbcaSGreg Roach			" FROM `##gedcom_setting` WHERE gedcom_id = -1"
444*1507cbcaSGreg Roach		)->execute(array(
445*1507cbcaSGreg Roach			'tree_id' => $tree_id,
446*1507cbcaSGreg Roach		));
447*1507cbcaSGreg Roach
448*1507cbcaSGreg Roach		Database::prepare(
449*1507cbcaSGreg Roach			"INSERT INTO `##default_resn` (gedcom_id, tag_type, resn)" .
450*1507cbcaSGreg Roach			" SELECT :tree_id, tag_type, resn" .
451*1507cbcaSGreg Roach			" FROM `##default_resn` WHERE gedcom_id = -1"
452*1507cbcaSGreg Roach		)->execute(array(
453*1507cbcaSGreg Roach			'tree_id' => $tree_id,
454*1507cbcaSGreg Roach		));
455*1507cbcaSGreg Roach
456*1507cbcaSGreg Roach		Database::prepare(
457*1507cbcaSGreg Roach			"INSERT INTO `##block` (gedcom_id, location, block_order, module_name)" .
458*1507cbcaSGreg Roach			" SELECT :tree_id, location, block_order, module_name" .
459*1507cbcaSGreg Roach			" FROM `##block` WHERE gedcom_id = -1"
460*1507cbcaSGreg Roach		)->execute(array(
461*1507cbcaSGreg Roach			'tree_id' => $tree_id,
462*1507cbcaSGreg Roach		));
463*1507cbcaSGreg Roach
464*1507cbcaSGreg Roach
465*1507cbcaSGreg Roach
466*1507cbcaSGreg Roach
467a25f0a04SGreg Roach		// Gedcom and privacy settings
468a25f0a04SGreg Roach		$tree->setPreference('CONTACT_USER_ID', Auth::id());
469*1507cbcaSGreg Roach		$tree->setPreference('WEBMASTER_USER_ID', Auth::id());
470a25f0a04SGreg Roach		$tree->setPreference('LANGUAGE', WT_LOCALE); // Default to the current admin’s language
471a25f0a04SGreg Roach		switch (WT_LOCALE) {
472a25f0a04SGreg Roach		case 'es':
473a25f0a04SGreg Roach			$tree->setPreference('SURNAME_TRADITION', 'spanish');
474a25f0a04SGreg Roach			break;
475a25f0a04SGreg Roach		case 'is':
476a25f0a04SGreg Roach			$tree->setPreference('SURNAME_TRADITION', 'icelandic');
477a25f0a04SGreg Roach			break;
478a25f0a04SGreg Roach		case 'lt':
479a25f0a04SGreg Roach			$tree->setPreference('SURNAME_TRADITION', 'lithuanian');
480a25f0a04SGreg Roach			break;
481a25f0a04SGreg Roach		case 'pl':
482a25f0a04SGreg Roach			$tree->setPreference('SURNAME_TRADITION', 'polish');
483a25f0a04SGreg Roach			break;
484a25f0a04SGreg Roach		case 'pt':
485a25f0a04SGreg Roach		case 'pt-BR':
486a25f0a04SGreg Roach			$tree->setPreference('SURNAME_TRADITION', 'portuguese');
487a25f0a04SGreg Roach			break;
488a25f0a04SGreg Roach		default:
489a25f0a04SGreg Roach			$tree->setPreference('SURNAME_TRADITION', 'paternal');
490a25f0a04SGreg Roach			break;
491a25f0a04SGreg Roach		}
492a25f0a04SGreg Roach
493a25f0a04SGreg Roach		// Genealogy data
494a25f0a04SGreg Roach		// It is simpler to create a temporary/unimported GEDCOM than to populate all the tables...
495a25f0a04SGreg Roach		$john_doe = /* I18N: This should be a common/default/placeholder name of an individual.  Put slashes around the surname. */
496a25f0a04SGreg Roach			I18N::translate('John /DOE/');
49777e70a22SGreg Roach		$note     = I18N::translate('Edit this individual and replace their details with your own.');
498a25f0a04SGreg Roach		Database::prepare("INSERT INTO `##gedcom_chunk` (gedcom_id, chunk_data) VALUES (?, ?)")->execute(array(
499a25f0a04SGreg Roach			$tree_id,
500cbc1590aSGreg Roach			"0 HEAD\n1 CHAR UTF-8\n0 @I1@ INDI\n1 NAME {$john_doe}\n1 SEX M\n1 BIRT\n2 DATE 01 JAN 1850\n2 NOTE {$note}\n0 TRLR\n",
501a25f0a04SGreg Roach		));
502a25f0a04SGreg Roach
503a25f0a04SGreg Roach		// Update our cache
504518bbdc1SGreg Roach		self::$trees[$tree->tree_id] = $tree;
505a25f0a04SGreg Roach
506a25f0a04SGreg Roach		return $tree;
507a25f0a04SGreg Roach	}
508a25f0a04SGreg Roach
509a25f0a04SGreg Roach	/**
510b78374c5SGreg Roach	 * Are there any pending edits for this tree, than need reviewing by a moderator.
511b78374c5SGreg Roach	 *
512b78374c5SGreg Roach	 * @return bool
513b78374c5SGreg Roach	 */
514b78374c5SGreg Roach	public function hasPendingEdit() {
515b78374c5SGreg Roach		return (bool) Database::prepare(
516b78374c5SGreg Roach			"SELECT 1 FROM `##change` WHERE status = 'pending' AND gedcom_id = :tree_id"
517b78374c5SGreg Roach		)->execute(array(
518cbc1590aSGreg Roach			'tree_id' => $this->tree_id,
519b78374c5SGreg Roach		))->fetchOne();
520b78374c5SGreg Roach	}
521b78374c5SGreg Roach
522b78374c5SGreg Roach	/**
523a25f0a04SGreg Roach	 * Delete all the genealogy data from a tree - in preparation for importing
524a25f0a04SGreg Roach	 * new data.  Optionally retain the media data, for when the user has been
525a25f0a04SGreg Roach	 * editing their data offline using an application which deletes (or does not
526a25f0a04SGreg Roach	 * support) media data.
527a25f0a04SGreg Roach	 *
528a25f0a04SGreg Roach	 * @param bool $keep_media
529a25f0a04SGreg Roach	 */
530a25f0a04SGreg Roach	public function deleteGenealogyData($keep_media) {
531518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##gedcom_chunk` WHERE gedcom_id = ?")->execute(array($this->tree_id));
532518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##individuals`  WHERE i_file    = ?")->execute(array($this->tree_id));
533518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##families`     WHERE f_file    = ?")->execute(array($this->tree_id));
534518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##sources`      WHERE s_file    = ?")->execute(array($this->tree_id));
535518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##other`        WHERE o_file    = ?")->execute(array($this->tree_id));
536518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##places`       WHERE p_file    = ?")->execute(array($this->tree_id));
537518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##placelinks`   WHERE pl_file   = ?")->execute(array($this->tree_id));
538518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##name`         WHERE n_file    = ?")->execute(array($this->tree_id));
539518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##dates`        WHERE d_file    = ?")->execute(array($this->tree_id));
540518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##change`       WHERE gedcom_id = ?")->execute(array($this->tree_id));
541a25f0a04SGreg Roach
542a25f0a04SGreg Roach		if ($keep_media) {
543518bbdc1SGreg Roach			Database::prepare("DELETE FROM `##link` WHERE l_file =? AND l_type<>'OBJE'")->execute(array($this->tree_id));
544a25f0a04SGreg Roach		} else {
545518bbdc1SGreg Roach			Database::prepare("DELETE FROM `##link`  WHERE l_file =?")->execute(array($this->tree_id));
546518bbdc1SGreg Roach			Database::prepare("DELETE FROM `##media` WHERE m_file =?")->execute(array($this->tree_id));
547a25f0a04SGreg Roach		}
548a25f0a04SGreg Roach	}
549a25f0a04SGreg Roach
550a25f0a04SGreg Roach	/**
551a25f0a04SGreg Roach	 * Delete everything relating to a tree
552a25f0a04SGreg Roach	 */
553a25f0a04SGreg Roach	public function delete() {
554a25f0a04SGreg Roach		// If this is the default tree, then unset it
555ef2fd529SGreg Roach		if (Site::getPreference('DEFAULT_GEDCOM') === $this->name) {
556a25f0a04SGreg Roach			Site::setPreference('DEFAULT_GEDCOM', '');
557a25f0a04SGreg Roach		}
558a25f0a04SGreg Roach
559a25f0a04SGreg Roach		$this->deleteGenealogyData(false);
560a25f0a04SGreg Roach
561518bbdc1SGreg Roach		Database::prepare("DELETE `##block_setting` FROM `##block_setting` JOIN `##block` USING (block_id) WHERE gedcom_id=?")->execute(array($this->tree_id));
562518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##block`               WHERE gedcom_id = ?")->execute(array($this->tree_id));
563518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##user_gedcom_setting` WHERE gedcom_id = ?")->execute(array($this->tree_id));
564518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##gedcom_setting`      WHERE gedcom_id = ?")->execute(array($this->tree_id));
565518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##module_privacy`      WHERE gedcom_id = ?")->execute(array($this->tree_id));
566518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##next_id`             WHERE gedcom_id = ?")->execute(array($this->tree_id));
567518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##hit_counter`         WHERE gedcom_id = ?")->execute(array($this->tree_id));
568518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##default_resn`        WHERE gedcom_id = ?")->execute(array($this->tree_id));
569518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##gedcom_chunk`        WHERE gedcom_id = ?")->execute(array($this->tree_id));
570518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##log`                 WHERE gedcom_id = ?")->execute(array($this->tree_id));
571518bbdc1SGreg Roach		Database::prepare("DELETE FROM `##gedcom`              WHERE gedcom_id = ?")->execute(array($this->tree_id));
572a25f0a04SGreg Roach
573a25f0a04SGreg Roach		// After updating the database, we need to fetch a new (sorted) copy
574a25f0a04SGreg Roach		self::$trees = null;
575a25f0a04SGreg Roach	}
576a25f0a04SGreg Roach
577a25f0a04SGreg Roach	/**
578a25f0a04SGreg Roach	 * Export the tree to a GEDCOM file
579a25f0a04SGreg Roach	 *
5805792757eSGreg Roach	 * @param resource $stream
581a25f0a04SGreg Roach	 */
5825792757eSGreg Roach	public function exportGedcom($stream) {
5835792757eSGreg Roach		$stmt = Database::prepare(
5845792757eSGreg Roach			"SELECT i_gedcom AS gedcom FROM `##individuals` WHERE i_file = :tree_id_1" .
5855792757eSGreg Roach			" UNION ALL " .
5865792757eSGreg Roach			"SELECT f_gedcom AS gedcom FROM `##families`    WHERE f_file = :tree_id_2" .
5875792757eSGreg Roach			" UNION ALL " .
5885792757eSGreg Roach			"SELECT s_gedcom AS gedcom FROM `##sources`     WHERE s_file = :tree_id_3" .
5895792757eSGreg Roach			" UNION ALL " .
5905792757eSGreg Roach			"SELECT o_gedcom AS gedcom FROM `##other`       WHERE o_file = :tree_id_4 AND o_type NOT IN ('HEAD', 'TRLR')" .
5915792757eSGreg Roach			" UNION ALL " .
5925792757eSGreg Roach			"SELECT m_gedcom AS gedcom FROM `##media`       WHERE m_file = :tree_id_5"
5935792757eSGreg Roach		)->execute(array(
5945792757eSGreg Roach			'tree_id_1' => $this->tree_id,
5955792757eSGreg Roach			'tree_id_2' => $this->tree_id,
5965792757eSGreg Roach			'tree_id_3' => $this->tree_id,
5975792757eSGreg Roach			'tree_id_4' => $this->tree_id,
598cbc1590aSGreg Roach			'tree_id_5' => $this->tree_id,
5995792757eSGreg Roach		));
600a25f0a04SGreg Roach
6013d7a8a4cSGreg Roach		$buffer = FunctionsExport::reformatRecord(FunctionsExport::gedcomHeader($this));
602a25f0a04SGreg Roach		while ($row = $stmt->fetch()) {
6033d7a8a4cSGreg Roach			$buffer .= FunctionsExport::reformatRecord($row->gedcom);
604a25f0a04SGreg Roach			if (strlen($buffer) > 65535) {
6055792757eSGreg Roach				fwrite($stream, $buffer);
606a25f0a04SGreg Roach				$buffer = '';
607a25f0a04SGreg Roach			}
608a25f0a04SGreg Roach		}
6095792757eSGreg Roach		fwrite($stream, $buffer . '0 TRLR' . WT_EOL);
610a25f0a04SGreg Roach	}
611a25f0a04SGreg Roach
612a25f0a04SGreg Roach	/**
613a25f0a04SGreg Roach	 * Import data from a gedcom file into this tree.
614a25f0a04SGreg Roach	 *
615a25f0a04SGreg Roach	 * @param string  $path       The full path to the (possibly temporary) file.
616a25f0a04SGreg Roach	 * @param string  $filename   The preferred filename, for export/download.
617a25f0a04SGreg Roach	 *
618a25f0a04SGreg Roach	 * @throws \Exception
619a25f0a04SGreg Roach	 */
620ed1bbedbSGreg Roach	public function importGedcomFile($path, $filename) {
621a25f0a04SGreg Roach		// Read the file in blocks of roughly 64K.  Ensure that each block
622a25f0a04SGreg Roach		// contains complete gedcom records.  This will ensure we don’t split
623a25f0a04SGreg Roach		// multi-byte characters, as well as simplifying the code to import
624a25f0a04SGreg Roach		// each block.
625a25f0a04SGreg Roach
626a25f0a04SGreg Roach		$file_data = '';
627a25f0a04SGreg Roach		$fp        = fopen($path, 'rb');
628a25f0a04SGreg Roach
629a25f0a04SGreg Roach		// Don’t allow the user to cancel the request.  We do not want to be left with an incomplete transaction.
630a25f0a04SGreg Roach		ignore_user_abort(true);
631a25f0a04SGreg Roach
632a25f0a04SGreg Roach		Database::beginTransaction();
633ed1bbedbSGreg Roach		$this->deleteGenealogyData($this->getPreference('keep_media'));
634a25f0a04SGreg Roach		$this->setPreference('gedcom_filename', $filename);
635a25f0a04SGreg Roach		$this->setPreference('imported', '0');
636a25f0a04SGreg Roach
637a25f0a04SGreg Roach		while (!feof($fp)) {
638a25f0a04SGreg Roach			$file_data .= fread($fp, 65536);
639a25f0a04SGreg Roach			// There is no strrpos() function that searches for substrings :-(
640a25f0a04SGreg Roach			for ($pos = strlen($file_data) - 1; $pos > 0; --$pos) {
641a25f0a04SGreg Roach				if ($file_data[$pos] === '0' && ($file_data[$pos - 1] === "\n" || $file_data[$pos - 1] === "\r")) {
642a25f0a04SGreg Roach					// We’ve found the last record boundary in this chunk of data
643a25f0a04SGreg Roach					break;
644a25f0a04SGreg Roach				}
645a25f0a04SGreg Roach			}
646a25f0a04SGreg Roach			if ($pos) {
647a25f0a04SGreg Roach				Database::prepare(
648a25f0a04SGreg Roach					"INSERT INTO `##gedcom_chunk` (gedcom_id, chunk_data) VALUES (?, ?)"
649518bbdc1SGreg Roach				)->execute(array($this->tree_id, substr($file_data, 0, $pos)));
650a25f0a04SGreg Roach				$file_data = substr($file_data, $pos);
651a25f0a04SGreg Roach			}
652a25f0a04SGreg Roach		}
653a25f0a04SGreg Roach		Database::prepare(
654a25f0a04SGreg Roach			"INSERT INTO `##gedcom_chunk` (gedcom_id, chunk_data) VALUES (?, ?)"
655518bbdc1SGreg Roach		)->execute(array($this->tree_id, $file_data));
656a25f0a04SGreg Roach
657a25f0a04SGreg Roach		Database::commit();
658a25f0a04SGreg Roach		fclose($fp);
659a25f0a04SGreg Roach	}
660304f20d5SGreg Roach
661304f20d5SGreg Roach	/**
662b90d8accSGreg Roach	 * Generate a new XREF, unique across all family trees
663b90d8accSGreg Roach	 *
664b90d8accSGreg Roach	 * @param string $type
665b90d8accSGreg Roach	 *
666b90d8accSGreg Roach	 * @return string
667b90d8accSGreg Roach	 */
6680fb1a955SGreg Roach	public function getNewXref($type = 'INDI') {
669b90d8accSGreg Roach		/** @var string[] Which tree preference is used for which record type */
670b90d8accSGreg Roach		static $type_to_preference = array(
671b90d8accSGreg Roach			'INDI' => 'GEDCOM_ID_PREFIX',
672b90d8accSGreg Roach			'FAM'  => 'FAM_ID_PREFIX',
673b90d8accSGreg Roach			'OBJE' => 'MEDIA_ID_PREFIX',
674b90d8accSGreg Roach			'NOTE' => 'NOTE_ID_PREFIX',
675b90d8accSGreg Roach			'SOUR' => 'SOURCE_ID_PREFIX',
676b90d8accSGreg Roach			'REPO' => 'REPO_ID_PREFIX',
677b90d8accSGreg Roach		);
678b90d8accSGreg Roach
679b90d8accSGreg Roach		if (array_key_exists($type, $type_to_preference)) {
680b90d8accSGreg Roach			$prefix = $this->getPreference($type_to_preference[$type]);
681b90d8accSGreg Roach		} else {
682b90d8accSGreg Roach			// Use the first non-underscore character
683b90d8accSGreg Roach			$prefix = substr(trim($type, '_'), 0, 1);
684b90d8accSGreg Roach		}
685b90d8accSGreg Roach
686b90d8accSGreg Roach		do {
687b90d8accSGreg Roach			// Use LAST_INSERT_ID(expr) to provide a transaction-safe sequence.  See
688b90d8accSGreg Roach			// http://dev.mysql.com/doc/refman/5.6/en/information-functions.html#function_last-insert-id
689b90d8accSGreg Roach			$statement = Database::prepare(
690b90d8accSGreg Roach				"UPDATE `##next_id` SET next_id = LAST_INSERT_ID(next_id + 1) WHERE record_type = :record_type AND gedcom_id = :tree_id"
691b90d8accSGreg Roach			);
692b90d8accSGreg Roach			$statement->execute(array(
693b90d8accSGreg Roach				'record_type' => $type,
694bb7c2cdcSGreg Roach				'tree_id'     => $this->tree_id,
695b90d8accSGreg Roach			));
696b90d8accSGreg Roach
697b90d8accSGreg Roach			if ($statement->rowCount() === 0) {
698b90d8accSGreg Roach				// First time we've used this record type.
699b90d8accSGreg Roach				Database::prepare(
700b90d8accSGreg Roach					"INSERT INTO `##next_id` (gedcom_id, record_type, next_id) VALUES(:tree_id, :record_type, 1)"
701b90d8accSGreg Roach				)->execute(array(
702b90d8accSGreg Roach					'record_type' => $type,
703bb7c2cdcSGreg Roach					'tree_id'     => $this->tree_id,
704b90d8accSGreg Roach				));
705b90d8accSGreg Roach				$num = 1;
706b90d8accSGreg Roach			} else {
707b90d8accSGreg Roach				$num = Database::prepare("SELECT LAST_INSERT_ID()")->fetchOne();
708b90d8accSGreg Roach			}
709b90d8accSGreg Roach
710b90d8accSGreg Roach			// Records may already exist with this sequence number.
711b90d8accSGreg Roach			$already_used = Database::prepare(
712b90d8accSGreg Roach				"SELECT i_id FROM `##individuals` WHERE i_id = :i_id" .
713b90d8accSGreg Roach				" UNION ALL " .
714b90d8accSGreg Roach				"SELECT f_id FROM `##families` WHERE f_id = :f_id" .
715b90d8accSGreg Roach				" UNION ALL " .
716b90d8accSGreg Roach				"SELECT s_id FROM `##sources` WHERE s_id = :s_id" .
717b90d8accSGreg Roach				" UNION ALL " .
718b90d8accSGreg Roach				"SELECT m_id FROM `##media` WHERE m_id = :m_id" .
719b90d8accSGreg Roach				" UNION ALL " .
720b90d8accSGreg Roach				"SELECT o_id FROM `##other` WHERE o_id = :o_id" .
721b90d8accSGreg Roach				" UNION ALL " .
722b90d8accSGreg Roach				"SELECT xref FROM `##change` WHERE xref = :xref"
723b90d8accSGreg Roach			)->execute(array(
724b90d8accSGreg Roach				'i_id' => $prefix . $num,
725b90d8accSGreg Roach				'f_id' => $prefix . $num,
726b90d8accSGreg Roach				's_id' => $prefix . $num,
727b90d8accSGreg Roach				'm_id' => $prefix . $num,
728b90d8accSGreg Roach				'o_id' => $prefix . $num,
729b90d8accSGreg Roach				'xref' => $prefix . $num,
730b90d8accSGreg Roach			))->fetchOne();
731b90d8accSGreg Roach		} while ($already_used);
732b90d8accSGreg Roach
733b90d8accSGreg Roach		return $prefix . $num;
734b90d8accSGreg Roach	}
735b90d8accSGreg Roach
736b90d8accSGreg Roach	/**
737304f20d5SGreg Roach	 * Create a new record from GEDCOM data.
738304f20d5SGreg Roach	 *
739304f20d5SGreg Roach	 * @param string $gedcom
740304f20d5SGreg Roach	 *
741304f20d5SGreg Roach	 * @throws \Exception
742cbc1590aSGreg Roach	 *
743cbc1590aSGreg Roach	 * @return GedcomRecord
744304f20d5SGreg Roach	 */
745304f20d5SGreg Roach	public function createRecord($gedcom) {
746304f20d5SGreg Roach		if (preg_match('/^0 @(' . WT_REGEX_XREF . ')@ (' . WT_REGEX_TAG . ')/', $gedcom, $match)) {
747304f20d5SGreg Roach			$xref = $match[1];
748304f20d5SGreg Roach			$type = $match[2];
749304f20d5SGreg Roach		} else {
750304f20d5SGreg Roach			throw new \Exception('Invalid argument to GedcomRecord::createRecord(' . $gedcom . ')');
751304f20d5SGreg Roach		}
752304f20d5SGreg Roach		if (strpos("\r", $gedcom) !== false) {
753304f20d5SGreg Roach			// MSDOS line endings will break things in horrible ways
754304f20d5SGreg Roach			throw new \Exception('Evil line endings found in GedcomRecord::createRecord(' . $gedcom . ')');
755304f20d5SGreg Roach		}
756304f20d5SGreg Roach
757304f20d5SGreg Roach		// webtrees creates XREFs containing digits.  Anything else (e.g. “new”) is just a placeholder.
758304f20d5SGreg Roach		if (!preg_match('/\d/', $xref)) {
759b90d8accSGreg Roach			$xref   = $this->getNewXref($type);
760304f20d5SGreg Roach			$gedcom = preg_replace('/^0 @(' . WT_REGEX_XREF . ')@/', '0 @' . $xref . '@', $gedcom);
761304f20d5SGreg Roach		}
762304f20d5SGreg Roach
763304f20d5SGreg Roach		// Create a change record, if not already present
764304f20d5SGreg Roach		if (!preg_match('/\n1 CHAN/', $gedcom)) {
765304f20d5SGreg Roach			$gedcom .= "\n1 CHAN\n2 DATE " . date('d M Y') . "\n3 TIME " . date('H:i:s') . "\n2 _WT_USER " . Auth::user()->getUserName();
766304f20d5SGreg Roach		}
767304f20d5SGreg Roach
768304f20d5SGreg Roach		// Create a pending change
769304f20d5SGreg Roach		Database::prepare(
770304f20d5SGreg Roach			"INSERT INTO `##change` (gedcom_id, xref, old_gedcom, new_gedcom, user_id) VALUES (?, ?, '', ?, ?)"
771304f20d5SGreg Roach		)->execute(array(
772bb7c2cdcSGreg Roach			$this->tree_id,
773304f20d5SGreg Roach			$xref,
774304f20d5SGreg Roach			$gedcom,
775cbc1590aSGreg Roach			Auth::id(),
776304f20d5SGreg Roach		));
777304f20d5SGreg Roach
778304f20d5SGreg Roach		Log::addEditLog('Create: ' . $type . ' ' . $xref);
779304f20d5SGreg Roach
780304f20d5SGreg Roach		// Accept this pending change
781304f20d5SGreg Roach		if (Auth::user()->getPreference('auto_accept')) {
7823d7a8a4cSGreg Roach			FunctionsImport::acceptAllChanges($xref, $this->tree_id);
783304f20d5SGreg Roach		}
784bb7c2cdcSGreg Roach		// Return the newly created record.  Note that since GedcomRecord
785bb7c2cdcSGreg Roach		// has a cache of pending changes, we cannot use it to create a
786bb7c2cdcSGreg Roach		// record with a newly created pending change.
78724ec66ceSGreg Roach		return GedcomRecord::getInstance($xref, $this, $gedcom);
788304f20d5SGreg Roach	}
789a25f0a04SGreg Roach}
790