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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
|
<?php
// Functions for exporting data
//
// webtrees: Web based Family History software
// Copyright (C) 2011 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
//
// Modifications Copyright (c) 2010 Greg Roach
//
// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// $Id$
if (!defined('WT_WEBTREES')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
// Tidy up a gedcom record on export, for compatibility/portability
function reformat_record_export($rec) {
global $WORD_WRAPPED_NOTES;
$newrec='';
foreach (preg_split('/[\r\n]+/', $rec, -1, PREG_SPLIT_NO_EMPTY) as $line) {
// Escape @ characters
// TODO:
// Need to replace '@' with '@@', unless it is either
// a) an xref, such as @I123@
// b) an escape, such as @#D FRENCH R@
if (false) {
$line=str_replace('@', '@@', $line);
}
// Split long lines
// The total length of a GEDCOM line, including level number, cross-reference number,
// tag, value, delimiters, and terminator, must not exceed 255 (wide) characters.
// Use quick strlen() check before using slower utf8_strlen() check
if (strlen($line)>WT_GEDCOM_LINE_LENGTH && utf8_strlen($line)>WT_GEDCOM_LINE_LENGTH) {
list($level, $tag)=explode(' ', $line, 3);
if ($tag!='CONT' && $tag!='CONC') {
$level++;
}
do {
// Split after $pos chars
$pos=WT_GEDCOM_LINE_LENGTH;
if ($WORD_WRAPPED_NOTES) {
// Split on a space, and remove it (for compatibility with some desktop apps)
while ($pos && utf8_substr($line, $pos-1, 1)!=' ') {
--$pos;
}
if ($pos==strpos($line, ' ', 3)+1) {
// No spaces in the data! Can't split it :-(
break;
} else {
$newrec.=utf8_substr($line, 0, $pos-1).WT_EOL;
$line=$level.' CONC '.utf8_substr($line, $pos);
}
} else {
// Split on a non-space (standard gedcom behaviour)
while ($pos && utf8_substr($line, $pos-1, 1)==' ') {
--$pos;
}
if ($pos==strpos($line, ' ', 3)) {
// No non-spaces in the data! Can't split it :-(
break;
}
$newrec.=utf8_substr($line, 0, $pos).WT_EOL;
$line=$level.' CONC '.utf8_substr($line, $pos);
}
} while (utf8_strlen($line)>WT_GEDCOM_LINE_LENGTH);
}
$newrec.=$line.WT_EOL;
}
return $newrec;
}
/*
* Create a header for a (newly-created or already-imported) gedcom file.
*/
function gedcom_header($gedfile) {
$ged_id=get_id_from_gedcom($gedfile);
// Default values for a new header
$HEAD="0 HEAD";
$SOUR="\n1 SOUR ".WT_WEBTREES."\n2 NAME ".WT_WEBTREES."\n2 VERS ".WT_VERSION_TEXT;
$DEST="\n1 DEST DISKETTE";
$DATE="\n1 DATE ".strtoupper(date("d M Y"))."\n2 TIME ".date("H:i:s");
$GEDC="\n1 GEDC\n2 VERS 5.5.1\n2 FORM Lineage-Linked";
$CHAR="\n1 CHAR UTF-8";
$FILE="\n1 FILE {$gedfile}";
$LANG="";
$PLAC="\n1 PLAC\n2 FORM City, County, State/Province, Country";
$COPR="";
$SUBN="";
$SUBM="\n1 SUBM @SUBM@\n0 @SUBM@ SUBM\n1 NAME ".WT_USER_NAME; // The SUBM record is mandatory
// Preserve some values from the original header
if (get_gedcom_setting($ged_id, 'imported')) {
$head=find_gedcom_record("HEAD", $ged_id);
if (preg_match("/\n1 PLAC\n2 FORM .+/", $head, $match)) {
$PLAC=$match[0];
}
if (preg_match("/\n1 LANG .+/", $head, $match)) {
$LANG=$match[0];
}
if (preg_match("/\n1 SUBN .+/", $head, $match)) {
$SUBN=$match[0];
}
if (preg_match("/\n1 COPR .+/", $head, $match)) {
$COPR=$match[0];
}
// Link to SUBM/SUBN records, if they exist
$subn=
WT_DB::prepare("SELECT o_id FROM `##other` WHERE o_type=? AND o_file=?")
->execute(array('SUBN', $ged_id))
->fetchOne();
if ($subn) {
$SUBN="\n1 SUBN @{$subn}@";
}
$subm=
WT_DB::prepare("SELECT o_id FROM `##other` WHERE o_type=? AND o_file=?")
->execute(array('SUBM', $ged_id))
->fetchOne();
if ($subm) {
$SUBM="\n1 SUBM @{$subm}@";
}
}
return $HEAD.$SOUR.$DEST.$DATE.$GEDC.$CHAR.$FILE.$COPR.$LANG.$PLAC.$SUBN.$SUBM."\n";
}
// Remove cuustom webtrees tags from the record.
// _WT*
// _THUM
function remove_custom_tags($gedrec) {
return preg_replace('/\n\d _(WT|THUM ).*/', '', $gedrec);
}
/**
* Convert media path by:
* - removing current media directory
* - adding a new prefix
* - making directory name separators consistent
*/
function convert_media_path($rec, $path, $slashes) {
global $MEDIA_DIRECTORY;
$file = get_gedcom_value("FILE", 1, $rec);
if (preg_match("~^https?://~i", $file)) return $rec; // don't modify URLs
$rec = str_replace('FILE '.$MEDIA_DIRECTORY, 'FILE '.trim($path).'/', $rec);
$rec = str_replace('\\', '/', $rec);
$rec = str_replace('//', '/', $rec);
if ($slashes=='backward') $rec = str_replace('/', '\\', $rec);
return $rec;
}
/*
* Export the database in GEDCOM format
*
* input parameters:
* $gedcom: GEDCOM to be exported
* $gedout: Handle of output file
* $exportOptions: array of options for this Export operation as follows:
* 'privatize': which Privacy rules apply? (none, visitor, user, manager)
* 'toANSI': should the output be produced in ANSI instead of UTF-8? (yes, no)
* 'noCustomTags': should custom tags be removed? (yes, no)
* 'path': what constant should prefix all media file paths? (eg: media/ or c:\my pictures\my family
* 'slashes': what folder separators apply to media file paths? (forward, backward)
*/
function export_gedcom($gedcom, $gedout, $exportOptions) {
global $GEDCOM;
// Temporarily switch to the specified GEDCOM
$oldGEDCOM = $GEDCOM;
$GEDCOM = $gedcom;
$ged_id=get_id_from_gedcom($gedcom);
switch($exportOptions['privatize']) {
case 'gedadmin':
$access_level=WT_PRIV_NONE;
break;
case 'user':
$access_level=WT_PRIV_USER;
break;
case 'visitor':
$access_level=WT_PRIV_PUBLIC;
break;
case 'none':
$access_level=WT_PRIV_HIDE;
break;
}
$head=gedcom_header($gedcom);
if ($exportOptions['toANSI']=="yes") {
$head=str_replace("UTF-8", "ANSI", $head);
$head=utf8_decode($head);
}
// Buffer the output. Lots of small fwrite() calls can be very slow when writing large gedcoms.
$buffer=reformat_record_export($head);
$rows=WT_DB::prepare(
"SELECT 'INDI' AS type, i_id AS xref, i_file AS ged_id, i_gedcom AS gedrec".
" FROM `##individuals` WHERE i_file=? ORDER BY i_id"
)->execute(array($ged_id))->fetchAll(PDO::FETCH_ASSOC);
foreach ($rows as $row) {
list($rec)=WT_Person::getInstance($row)->privatizeGedcom($access_level);
if ($exportOptions['noCustomTags']=='yes') {
$rec=remove_custom_tags($rec);
}
if ($exportOptions['toANSI']=="yes") {
$rec=utf8_decode($rec);
}
$buffer.=reformat_record_export($rec);
if (strlen($buffer)>65536) {
fwrite($gedout, $buffer);
$buffer='';
}
}
$rows=WT_DB::prepare(
"SELECT 'FAM' AS type, f_id AS xref, f_file AS ged_id, f_gedcom AS gedrec".
" FROM `##families` WHERE f_file=? ORDER BY f_id"
)->execute(array($ged_id))->fetchAll(PDO::FETCH_ASSOC);
foreach ($rows as $row) {
list($rec)=WT_Family::getInstance($row)->privatizeGedcom($access_level);
if ($exportOptions['noCustomTags']=='yes') {
$rec=remove_custom_tags($rec);
}
if ($exportOptions['toANSI']=="yes") {
$rec=utf8_decode($rec);
}
$buffer.=reformat_record_export($rec);
if (strlen($buffer)>65536) {
fwrite($gedout, $buffer);
$buffer='';
}
}
$rows=WT_DB::prepare(
"SELECT 'SOUR' AS type, s_id AS xref, s_file AS ged_id, s_gedcom AS gedrec".
" FROM `##sources` WHERE s_file=? ORDER BY s_id"
)->execute(array($ged_id))->fetchAll(PDO::FETCH_ASSOC);
foreach ($rows as $row) {
list($rec)=WT_Source::getInstance($row)->privatizeGedcom($access_level);
if ($exportOptions['noCustomTags']=='yes') {
$rec=remove_custom_tags($rec);
}
if ($exportOptions['toANSI']=="yes") {
$rec=utf8_decode($rec);
}
$buffer.=reformat_record_export($rec);
if (strlen($buffer)>65536) {
fwrite($gedout, $buffer);
$buffer='';
}
}
$rows=WT_DB::prepare(
"SELECT o_type AS type, o_id AS xref, o_file AS ged_id, o_gedcom AS gedrec".
" FROM `##other` WHERE o_file=? AND o_type!=? AND o_type!=? ORDER BY o_id"
)->execute(array($ged_id, 'HEAD', 'TRLR'))->fetchAll(PDO::FETCH_ASSOC);
foreach ($rows as $row) {
list($rec)=WT_GedcomRecord::getInstance($row)->privatizeGedcom($access_level);
if ($exportOptions['noCustomTags']=='yes') {
$rec=remove_custom_tags($rec);
}
if ($exportOptions['toANSI']=="yes") {
$rec=utf8_decode($rec);
}
$buffer.=reformat_record_export($rec);
if (strlen($buffer)>65536) {
fwrite($gedout, $buffer);
$buffer='';
}
}
$rows=WT_DB::prepare(
"SELECT 'OBJE' AS type, m_media AS xref, m_gedfile AS ged_id, m_gedrec AS gedrec, m_titl, m_file".
" FROM `##media` WHERE m_gedfile=? ORDER BY m_media"
)->execute(array($ged_id))->fetchAll(PDO::FETCH_ASSOC);
foreach ($rows as $row) {
list($rec)=WT_Media::getInstance($row)->privatizeGedcom($access_level);
$rec = convert_media_path($rec, $exportOptions['path'], $exportOptions['slashes']);
if ($exportOptions['noCustomTags']=='yes') {
$rec=remove_custom_tags($rec);
}
if ($exportOptions['toANSI']=="yes") {
$rec=utf8_decode($rec);
}
$buffer.=reformat_record_export($rec);
if (strlen($buffer)>65536) {
fwrite($gedout, $buffer);
$buffer='';
}
}
fwrite($gedout, $buffer."0 TRLR".WT_EOL);
$GEDCOM = $oldGEDCOM;
}
|