1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
<?php
// Gedcom Place functionality.
//
// webtrees: Web based Family History software
// Copyright (C) 2014 webtrees development team.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
class WT_Place {
const GEDCOM_SEPARATOR = ', ';
private $gedcom_place; // e.g. array("Westminster", "London", "England")
private $gedcom_id; // We may have the same place in different trees
public function __construct($gedcom_place, $gedcom_id) {
if ($gedcom_place) {
$this->gedcom_place=explode(self::GEDCOM_SEPARATOR, $gedcom_place);
} else {
// Empty => "Top level"
$this->gedcom_place=array();
}
$this->gedcom_id=$gedcom_id;
}
public function getPlaceId() {
$place_id=0;
foreach (array_reverse($this->gedcom_place) as $place) {
$place_id=
WT_DB::prepare("SELECT SQL_CACHE p_id FROM `##places` WHERE p_parent_id=? AND p_place=? AND p_file=?")
->execute(array($place_id, $place, $this->gedcom_id))
->fetchOne();
}
return $place_id;
}
public function getParentPlace() {
return new WT_Place(implode(self::GEDCOM_SEPARATOR, array_slice($this->gedcom_place, 1)), $this->gedcom_id);
}
public function getChildPlaces() {
$children=array();
if ($this->getPlaceId()) {
$parent_text=self::GEDCOM_SEPARATOR . $this->getGedcomName();
} else {
$parent_text='';
}
$rows=
WT_DB::prepare("SELECT SQL_CACHE p_place FROM `##places` WHERE p_parent_id=? AND p_file=? ORDER BY p_place COLLATE '".WT_I18N::$collation."'")
->execute(array($this->getPlaceId(), $this->gedcom_id))
->fetchOneColumn();
foreach ($rows as $row) {
$children[]=new WT_Place($row . $parent_text, $this->gedcom_id);
}
return $children;
}
public function getURL() {
$url='placelist.php';
foreach (array_reverse($this->gedcom_place) as $n=>$place) {
$url.=$n ? '&' : '?';
$url.='parent%5B%5D='.rawurlencode($place);
}
$url.='&ged='.rawurlencode(get_gedcom_from_id($this->gedcom_id));
return $url;
}
public function getGedcomName() {
return implode(self::GEDCOM_SEPARATOR, $this->gedcom_place);
}
public function getPlaceName() {
$place=reset($this->gedcom_place);
return $place ? '<span dir="auto">'.WT_Filter::escapeHtml($place).'</span>' : WT_I18N::translate('unknown');
}
public function isEmpty() {
return empty($this->gedcom_place);
}
public function getFullName() {
if (true) {
// If a place hierarchy is a single entity
return '<span dir="auto">' . WT_Filter::escapeHtml(implode(WT_I18N::$list_separator, $this->gedcom_place)) . '</span>';
} else {
// If a place hierarchy is a list of distinct items
$tmp = array();
foreach ($this->gedcom_place as $place) {
$tmp[] = '<span dir="auto">' . WT_Filter::escapeHtml($place) . '</span>';
}
return implode(WT_I18N::$list_separator, $tmp);
}
}
// For lists and charts, where the full name won’t fit.
public function getShortName() {
global $SHOW_PEDIGREE_PLACES, $SHOW_PEDIGREE_PLACES_SUFFIX;
if ($SHOW_PEDIGREE_PLACES >= count($this->gedcom_place)) {
// A short place name - no need to abbreviate
return $this->getFullName();
} else {
// Abbreviate the place name, for lists
if ($SHOW_PEDIGREE_PLACES_SUFFIX) {
// The *last* $SHOW_PEDIGREE_PLACES components
$short_name=implode(self::GEDCOM_SEPARATOR, array_slice($this->gedcom_place, -$SHOW_PEDIGREE_PLACES));
} else {
// The *first* $SHOW_PEDIGREE_PLACES components
$short_name=implode(self::GEDCOM_SEPARATOR, array_slice($this->gedcom_place, 0, $SHOW_PEDIGREE_PLACES));
}
// Add a tool-tip showing the full name
return '<span title="'.WT_Filter::escapeHtml($this->getGedcomName()).'" dir="auto">'.WT_Filter::escapeHtml($short_name).'</span>';
}
}
// For the "view all" option of placelist.php and find.php
public function getReverseName() {
$tmp=array();
foreach (array_reverse($this->gedcom_place) as $place) {
$tmp[]='<span dir="auto">' . WT_Filter::escapeHtml($place) . '</span>';
}
return implode(WT_I18N::$list_separator, $tmp);
}
public static function allPlaces($gedcom_id) {
$places=array();
$rows=
WT_DB::prepare(
"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)".
" FROM `##places` AS p1".
" LEFT JOIN `##places` AS p2 ON (p1.p_parent_id=p2.p_id)".
" LEFT JOIN `##places` AS p3 ON (p2.p_parent_id=p3.p_id)".
" LEFT JOIN `##places` AS p4 ON (p3.p_parent_id=p4.p_id)".
" LEFT JOIN `##places` AS p5 ON (p4.p_parent_id=p5.p_id)".
" LEFT JOIN `##places` AS p6 ON (p5.p_parent_id=p6.p_id)".
" LEFT JOIN `##places` AS p7 ON (p6.p_parent_id=p7.p_id)".
" LEFT JOIN `##places` AS p8 ON (p7.p_parent_id=p8.p_id)".
" LEFT JOIN `##places` AS p9 ON (p8.p_parent_id=p9.p_id)".
" WHERE p1.p_file=?".
" 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 '".WT_I18N::$collation."'"
)
->execute(array($gedcom_id))
->fetchOneColumn();
foreach ($rows as $row) {
$places[]=new WT_Place($row, $gedcom_id);
}
return $places;
}
public static function findPlaces($filter, $gedcom_id) {
$places=array();
$rows=
WT_DB::prepare(
"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)".
" FROM `##places` AS p1".
" LEFT JOIN `##places` AS p2 ON (p1.p_parent_id=p2.p_id)".
" LEFT JOIN `##places` AS p3 ON (p2.p_parent_id=p3.p_id)".
" LEFT JOIN `##places` AS p4 ON (p3.p_parent_id=p4.p_id)".
" LEFT JOIN `##places` AS p5 ON (p4.p_parent_id=p5.p_id)".
" LEFT JOIN `##places` AS p6 ON (p5.p_parent_id=p6.p_id)".
" LEFT JOIN `##places` AS p7 ON (p6.p_parent_id=p7.p_id)".
" LEFT JOIN `##places` AS p8 ON (p7.p_parent_id=p8.p_id)".
" LEFT JOIN `##places` AS p9 ON (p8.p_parent_id=p9.p_id)".
" 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('%', ?, '%') 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('%,%', ?, '%') AND p1.p_file=?".
" 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 '".WT_I18N::$collation."'"
)
->execute(array($filter, preg_quote($filter), $gedcom_id))
->fetchOneColumn();
foreach ($rows as $row) {
$places[]=new WT_Place($row, $gedcom_id);
}
return $places;
}
}
|