forked from craigk5n/webcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
import.php
182 lines (168 loc) · 5.81 KB
/
import.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
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
<?php
/**
* Page Description:
* This page will present the user with forms for submitting a data file to import.
*
* Input Parameters:
* None
*
* Comments:
* Might be nice to allow user to set the category for all imported events.
* So, a user could easily export events from the work calendar and import them
* into WebCalendar with a category "work".
*/
require_once 'includes/init.php';
/**
* Generate the selection list for calendar user selection.
* Only ask for calendar user if user is an administrator.
*
* We may enhance this in the future to allow:
* - selection of more than one user
* - non-admin users this functionality
*/
function print_user_list() {
global $is_admin, $is_assistant, $is_nonuser_admin,
$login, $NONUSER_AT_TOP, $NONUSER_ENABLED, $single_user;
if ( $single_user == 'N' && $is_admin ) {
$userlist = user_get_users();
if ( $NONUSER_ENABLED == 'Y' ) {
$nonusers = get_nonuser_cals();
$userlist = ( ! empty ( $NONUSER_AT_TOP ) && $NONUSER_AT_TOP == 'Y' )
? array_merge ( $nonusers, $userlist ) : array_merge ( $userlist, $nonusers );
}
$num_users = $size = 0;
$users = '';
for ( $i = 0, $cnt = count ( $userlist ); $i < $cnt; $i++ ) {
$l = $userlist[$i]['cal_login'];
$size++;
$users .= '
<option value="' . $l . '"'
. ( $l == $login && ! $is_assistant && ! $is_nonuser_admin
? ' selected' : '' )
. '>' . $userlist[$i]['cal_fullname'] . '</option>';
}
if ( $size > 50 )
$size = 15;
elseif ( $size > 5 )
$size = 5;
echo '
<tr>
<td class="aligntop"><label for="caluser">' . translate ( 'Calendar' )
. ':</label></td>
<td>
<select name="calUser" id="caluser" size="' . $size . '">' . $users . '
</select>
</td>
</tr>';
}
}
function print_categories() {
global $categories, $CATEGORIES_ENABLED;
if ( $CATEGORIES_ENABLED = 'Y' ) {
$cat_options = '
<option value="__import" selected>'
. translate('import from file') . '</option>';
load_user_categories();
$size = 0;
foreach ( $categories as $i => $value ) {
if ( $i != 0 ) {
$l = $categories[$i]['cat_name'];
$size++;
$cat_options .= '
<option value="' . $l . '">' . $l . '</option>';
}
}
if ( $size > 50 )
$size = 15;
elseif ( $size > 5 )
$size = 5;
echo '
<tr>
<td class="aligntop"><label for="importcat">'
. translate( 'Category' ) . ':</label></td>
<td>
<select name="importcat" id="importcat" size="' . $size . '">'
. $cat_options . '
</select>
</td>
</tr>';
}
}
$upload = ini_get ( 'file_uploads' );
$upload_enabled = ( ! empty( $upload )
&& preg_match( '/(On|1|true|yes)/i', $upload ) );
print_header ( ['js/import.php'], '', 'onload="toggle_import();"' );
echo '<h2>' . translate ( 'Import' ) . ' <img src="images/bootstrap-icons/question-circle-fill.svg" alt="'
. translate ( 'Help' ) . '" class="help" onclick="window.open( '
. "'help_import.php', 'cal_help', '"
. 'dependent,menubar,scrollbars,height=400,width=400\' );"></h2>';
if ( ! $upload_enabled )
// The php.ini file does not have file_uploads enabled,
// so we will not receive the uploaded import file.
// Note: do not translate "php.ini file_uploads"
// since these are the filename and config name.
echo '
<p>' . translate ( 'Disabled' ) . ' (php.ini file_uploads)</p>';
else {
// File uploads enabled.
$noStr = translate ( 'No' );
$yesStr = translate ( 'Yes' );
echo '
<form action="import_handler.php" method="post" name="importform" '
. 'enctype="multipart/form-data" onsubmit="return checkExtension()">'
. csrf_form_key() . '
<table class="table table-responsive">
<tr>
<td><label for="importtype">' . translate ( 'Import format' ) . ':</label></td>
<td>
<select name="ImportType" id="importtype" onchange="toggle_import()">
<option value="ICAL">iCalendar/ICS</option>
<option value="PALMDESKTOP">Palm Desktop</option>
<option value="VCAL">vCalendar</option>
<option value="OUTLOOKCSV">Outlook (CSV)</option>
<option value="GITLOG">Git Log</option>
</select>
</td>
</tr>
<!-- Valid only for Palm Desktop import. -->
<tr id="palm">
<td><label>' . translate ( 'Exclude private records' ) . ':</label></td>
<td>
<label><input type="radio" name="exc_private" value="1" checked>'
. $yesStr . '</label>
<label><input type="radio" name="exc_private" value="0">'
. $noStr . '</label>
</td>
</tr>
<!-- /PALM -->
<!-- Not valid for Outlook CSV as it doesn\'t generate UID for import tracking. -->
<tr id="ivcal">
<td><label>' . translate ( 'Overwrite Prior Import' ) . ':</label></td>
<td>
<label><input type="radio" name="overwrite" value="Y" checked> '
. $yesStr . '</label>
<label><input type="radio" name="overwrite" value="N"> '
. $noStr . '</label>
</td>
</tr>
<!-- /IVCAL -->
<tr id="outlookcsv">
<td colspan="2"><label>'
. translate ( 'Repeated items are imported separately. Prior imports are not overwritten.' )
. '</label></td>
</tr>
<tr class="browse">
<td><label for="fileupload">' . translate ( 'Upload file' ) . ':</label></td>
<td><input type="file" name="FileName" id="fileupload" size="45" '
. 'maxlength="50"></td>
</tr>';
print_user_list();
print_categories();
echo '
</table><br>
<button class="btn btn-primary" type="submit">'
. translate ( 'Import' ) . '</button>
</form>';
}
echo print_trailer();
?>