forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_trees_download.php
139 lines (129 loc) · 5.09 KB
/
admin_trees_download.php
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
<?php
// Allow an admin user to download the entire gedcom file.
//
// webtrees: Web based Family History software
// Copyright (C) 2013 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
//
// 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
define('WT_SCRIPT_NAME', 'admin_trees_download.php');
require './includes/session.php';
require WT_ROOT.'includes/functions/functions_export.php';
$controller=new WT_Controller_Page();
$controller
->setPageTitle(WT_I18N::translate('Download GEDCOM'))
->requireManagerLogin();
// Validate user parameters
$action = WT_Filter::get('action', 'download');
$convert = WT_Filter::get('convert', 'yes|no', 'no');
$zip = WT_Filter::get('zip', 'yes|no', 'no');
$conv_path = WT_Filter::get('conv_path');
$privatize_export = WT_Filter::get('privatize_export', 'none|visitor|user|gedadmin');
if ($action == 'download') {
$exportOptions = array();
$exportOptions['privatize'] = $privatize_export;
$exportOptions['toANSI'] = $convert;
$exportOptions['path'] = $conv_path;
}
$fileName = WT_GEDCOM;
if ($action == "download" && $zip == "yes") {
require WT_ROOT.'library/pclzip.lib.php';
$temppath = WT_Site::preference('INDEX_DIRECTORY') . "tmp/";
$zipname = "dl" . date("YmdHis") . $fileName . ".zip";
$zipfile = WT_Site::preference('INDEX_DIRECTORY') . $zipname;
$gedname = $temppath . $fileName;
$removeTempDir = false;
if (!is_dir($temppath)) {
$res = mkdir($temppath);
if ($res !== true) {
echo "Error : Could not create temporary path!";
exit;
}
$removeTempDir = true;
}
$gedout = fopen($gedname, "w");
export_gedcom($GEDCOM, $gedout, $exportOptions);
fclose($gedout);
$comment = "Created by ".WT_WEBTREES." ".WT_VERSION_TEXT." on " . date("r") . ".";
$archive = new PclZip($zipfile);
$v_list = $archive->create($gedname, PCLZIP_OPT_COMMENT, $comment, PCLZIP_OPT_REMOVE_PATH, $temppath);
if ($v_list == 0) echo "Error : " . $archive->errorInfo(true);
else {
unlink($gedname);
if ($removeTempDir) rmdir($temppath);
header('Location: '.WT_SERVER_NAME.WT_SCRIPT_PATH."downloadbackup.php?fname=".$zipname);
exit;
}
exit;
}
if ($action == "download") {
Zend_Session::writeClose();
header('Content-Type: text/plain; charset=UTF-8');
// We could open "php://compress.zlib" to create a .gz file or "php://compress.bzip2" to create a .bz2 file
$gedout = fopen('php://output', 'w');
if (strtolower(substr($fileName, -4, 4))!='.ged') {
$fileName.='.ged';
}
header('Content-Disposition: attachment; filename="'.$fileName.'"');
export_gedcom(WT_GEDCOM, $gedout, $exportOptions);
fclose($gedout);
exit;
}
$controller->pageHeader();
?>
<h2><?php echo $controller->getPageTitle(); ?> - <?php echo WT_Filter::escapeHtml(WT_GEDCOM); ?></h2>
<form name="convertform" method="get">
<input type="hidden" name="action" value="download">
<input type="hidden" name="ged" value="<?php echo WT_GEDCOM; ?>">
<div id="tree-download" class="ui-helper-clearfix">
<dl>
<dt>
<?php echo WT_I18N::translate('Zip file(s)'), help_link('download_zipped'); ?>
</dt>
<dd>
<input type="checkbox" name="zip" value="yes">
</dd>
<dt>
<?php echo WT_I18N::translate('Apply privacy settings?'), help_link('apply_privacy'); ?>
</dt>
<dd>
<input type="radio" name="privatize_export" value="none" checked="checked"> <?php echo WT_I18N::translate('None'); ?>
<br>
<input type="radio" name="privatize_export" value="gedadmin"> <?php echo WT_I18N::translate('Manager'); ?>
<br>
<input type="radio" name="privatize_export" value="user"> <?php echo WT_I18N::translate('Member'); ?>
<br>
<input type="radio" name="privatize_export" value="visitor"> <?php echo WT_I18N::translate('Visitor'); ?>
</dd>
<dt>
<?php echo WT_I18N::translate('Convert from UTF-8 to ANSI (ISO-8859-1)'), help_link('utf8_ansi'); ?>
</dt>
<dd>
<input type="checkbox" name="convert" value="yes">
</dd>
<dt>
<?php echo WT_I18N::translate('Add the GEDCOM media path to filenames'), help_link('GEDCOM_MEDIA_PATH'); ?>
</dt>
<dd>
<input type="checkbox" name="conv_path" value="<?php echo WT_Filter::escapeHtml($GEDCOM_MEDIA_PATH); ?>">
<span dir="auto"><?php echo WT_Filter::escapeHtml($GEDCOM_MEDIA_PATH); ?></span>
</dd>
</dl>
</div>
<br>
<input type="submit" value="<?php echo WT_I18N::translate('continue'); ?>">
</form>