summaryrefslogtreecommitdiff
path: root/includes/pages/admin_import.php
blob: e167467012d1f2fd19b78e0737e555cc564588cd (plain)
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<?php

function admin_import_title()
{
    return _("Frab import");
}

function admin_import()
{
    global $rooms_import;
    global $user;
    $html = "";
    $import_dir = __DIR__ . '/../../import';
  
    $step = "input";
    if (isset($_REQUEST['step']) && in_array($step, [
      'input',
      'check',
      'import'
  ])) {
        $step = $_REQUEST['step'];
    }
  
    if ($test_handle = @fopen($import_dir . '/tmp', 'w')) {
        fclose($test_handle);
        @unlink($import_dir . '/tmp');
    } else {
        error(_('Webserver has no write-permission on import directory.'));
    }
  
    $import_file = $import_dir . '/import_' . $user['UID'] . '.xml';
    $shifttype_id = null;
    $add_minutes_start = 15;
    $add_minutes_end = 15;
  
    $shifttypes_source = ShiftTypes();
    if ($shifttypes_source === false) {
        engelsystem_error('Unable to load shifttypes.');
    }
    $shifttypes = [];
    foreach ($shifttypes_source as $shifttype) {
        $shifttypes[$shifttype['id']] = $shifttype['name'];
    }
  
    switch ($step) {
    case 'input':
      $valid = false;
      
      if (isset($_REQUEST['submit'])) {
          $valid = true;
        
          if (isset($_REQUEST['shifttype_id']) && isset($shifttypes[$_REQUEST['shifttype_id']])) {
              $shifttype_id = $_REQUEST['shifttype_id'];
          } else {
              $valid = false;
              error(_('Please select a shift type.'));
          }
        
          if (isset($_REQUEST['add_minutes_start']) && is_numeric(trim($_REQUEST['add_minutes_start']))) {
              $add_minutes_start = trim($_REQUEST['add_minutes_start']);
          } else {
              $valid = false;
              error(_("Please enter an amount of minutes to add to a talk's begin."));
          }
        
          if (isset($_REQUEST['add_minutes_end']) && is_numeric(trim($_REQUEST['add_minutes_end']))) {
              $add_minutes_end = trim($_REQUEST['add_minutes_end']);
          } else {
              $valid = false;
              error(_("Please enter an amount of minutes to add to a talk's end."));
          }
        
          if (isset($_FILES['xcal_file']) && ($_FILES['xcal_file']['error'] == 0)) {
              if (move_uploaded_file($_FILES['xcal_file']['tmp_name'], $import_file)) {
                  libxml_use_internal_errors(true);
                  if (simplexml_load_file($import_file) === false) {
                      $valid = false;
                      error(_('No valid xml/xcal file provided.'));
                      unlink($import_file);
                  }
              } else {
                  $valid = false;
                  error(_('File upload went wrong.'));
              }
          } else {
              $valid = false;
              error(_('Please provide some data.'));
          }
      }
      
      if ($valid) {
          redirect(page_link_to('admin_import') . "&step=check&shifttype_id=" . $shifttype_id . "&add_minutes_end=" . $add_minutes_end . "&add_minutes_start=" . $add_minutes_start);
      } else {
          $html .= div('well well-sm text-center', [
            _('File Upload') . mute(glyph('arrow-right')) . mute(_('Validation')) . mute(glyph('arrow-right')) . mute(_('Import'))
        ]) . div('row', [
            div('col-md-offset-3 col-md-6', [
                form([
                    form_info('', _("This import will create/update/delete rooms and shifts by given FRAB-export file. The needed file format is xcal.")),
                    form_select('shifttype_id', _('Shifttype'), $shifttypes, $shifttype_id),
                    form_spinner('add_minutes_start', _("Add minutes to start"), $add_minutes_start),
                    form_spinner('add_minutes_end', _("Add minutes to end"), $add_minutes_end),
                    form_file('xcal_file', _("xcal-File (.xcal)")),
                    form_submit('submit', _("Import"))
                ])
            ])
        ]);
      }
      break;
    
    case 'check':
      if (! file_exists($import_file)) {
          error(_('Missing import file.'));
          redirect(page_link_to('admin_import'));
      }
      
      if (isset($_REQUEST['shifttype_id']) && isset($shifttypes[$_REQUEST['shifttype_id']])) {
          $shifttype_id = $_REQUEST['shifttype_id'];
      } else {
          error(_('Please select a shift type.'));
          redirect(page_link_to('admin_import'));
      }
      
      if (isset($_REQUEST['add_minutes_start']) && is_numeric(trim($_REQUEST['add_minutes_start']))) {
          $add_minutes_start = trim($_REQUEST['add_minutes_start']);
      } else {
          error(_("Please enter an amount of minutes to add to a talk's begin."));
          redirect(page_link_to('admin_import'));
      }
      
      if (isset($_REQUEST['add_minutes_end']) && is_numeric(trim($_REQUEST['add_minutes_end']))) {
          $add_minutes_end = trim($_REQUEST['add_minutes_end']);
      } else {
          error(_("Please enter an amount of minutes to add to a talk's end."));
          redirect(page_link_to('admin_import'));
      }
      
      list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
      list($events_new, $events_updated, $events_deleted) = prepare_events($import_file, $shifttype_id, $add_minutes_start, $add_minutes_end);
      
      $html .= div('well well-sm text-center', [
          '<span class="text-success">' . _('File Upload') . glyph('ok-circle') . '</span>' . mute(glyph('arrow-right')) . _('Validation') . mute(glyph('arrow-right')) . mute(_('Import'))
      ]) . form([
          div('row', [
              div('col-sm-6', [
                  '<h3>' . _("Rooms to create") . '</h3>',
                  table(_("Name"), $rooms_new)
              ]),
              div('col-sm-6', [
                  '<h3>' . _("Rooms to delete") . '</h3>',
                  table(_("Name"), $rooms_deleted)
              ])
          ]),
          '<h3>' . _("Shifts to create") . '</h3>',
          table([
              'day' => _("Day"),
              'start' => _("Start"),
              'end' => _("End"),
              'shifttype' => _('Shift type'),
              'title' => _("Title"),
              'room' => _("Room")
          ], shifts_printable($events_new, $shifttypes)),
          '<h3>' . _("Shifts to update") . '</h3>',
          table([
              'day' => _("Day"),
              'start' => _("Start"),
              'end' => _("End"),
              'shifttype' => _('Shift type'),
              'title' => _("Title"),
              'room' => _("Room")
          ], shifts_printable($events_updated, $shifttypes)),
          '<h3>' . _("Shifts to delete") . '</h3>',
          table([
              'day' => _("Day"),
              'start' => _("Start"),
              'end' => _("End"),
              'shifttype' => _('Shift type'),
              'title' => _("Title"),
              'room' => _("Room")
          ], shifts_printable($events_deleted, $shifttypes)),
          form_submit('submit', _("Import"))
      ], page_link_to('admin_import') . '&step=import&shifttype_id=' . $shifttype_id . "&add_minutes_end=" . $add_minutes_end . "&add_minutes_start=" . $add_minutes_start);
      break;
    
    case 'import':
      if (! file_exists($import_file)) {
          error(_('Missing import file.'));
          redirect(page_link_to('admin_import'));
      }
      
      if (! file_exists($import_file)) {
          redirect(page_link_to('admin_import'));
      }
      
      if (isset($_REQUEST['shifttype_id']) && isset($shifttypes[$_REQUEST['shifttype_id']])) {
          $shifttype_id = $_REQUEST['shifttype_id'];
      } else {
          error(_('Please select a shift type.'));
          redirect(page_link_to('admin_import'));
      }
      
      if (isset($_REQUEST['add_minutes_start']) && is_numeric(trim($_REQUEST['add_minutes_start']))) {
          $add_minutes_start = trim($_REQUEST['add_minutes_start']);
      } else {
          error(_("Please enter an amount of minutes to add to a talk's begin."));
          redirect(page_link_to('admin_import'));
      }
      
      if (isset($_REQUEST['add_minutes_end']) && is_numeric(trim($_REQUEST['add_minutes_end']))) {
          $add_minutes_end = trim($_REQUEST['add_minutes_end']);
      } else {
          error(_("Please enter an amount of minutes to add to a talk's end."));
          redirect(page_link_to('admin_import'));
      }
      
      list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
      foreach ($rooms_new as $room) {
          $result = Room_create($room, true, true);
          if ($result === false) {
              engelsystem_error('Unable to create room.');
          }
          $rooms_import[trim($room)] = sql_id();
      }
      foreach ($rooms_deleted as $room) {
          sql_query("DELETE FROM `Room` WHERE `Name`='" . sql_escape($room) . "' LIMIT 1");
      }
      
      list($events_new, $events_updated, $events_deleted) = prepare_events($import_file, $shifttype_id, $add_minutes_start, $add_minutes_end);
      foreach ($events_new as $event) {
          $result = Shift_create($event);
          if ($result === false) {
              engelsystem_error('Unable to create shift.');
          }
      }
      
      foreach ($events_updated as $event) {
          $result = Shift_update_by_psid($event);
          if ($result === false) {
              engelsystem_error('Unable to update shift.');
          }
      }
      
      foreach ($events_deleted as $event) {
          $result = Shift_delete_by_psid($event['PSID']);
          if ($result === false) {
              engelsystem_error('Unable to delete shift.');
          }
      }
      
      engelsystem_log("Frab import done");
      
      unlink($import_file);
      
      $html .= div('well well-sm text-center', [
          '<span class="text-success">' . _('File Upload') . glyph('ok-circle') . '</span>' . mute(glyph('arrow-right')) . '<span class="text-success">' . _('Validation') . glyph('ok-circle') . '</span>' . mute(glyph('arrow-right')) . '<span class="text-success">' . _('Import') . glyph('ok-circle') . '</span>'
      ]) . success(_("It's done!"), true);
      break;
    default:
      redirect(page_link_to('admin_import'));
  }
  
    return page_with_title(admin_import_title(), [
      msg(),
      $html
  ]);
}

function prepare_rooms($file)
{
    global $rooms_import;
    $data = read_xml($file);
  
  // Load rooms from db for compare with input
  $rooms = sql_select("SELECT * FROM `Room` WHERE `FromPentabarf`='Y'");
    $rooms_db = [];
    $rooms_import = [];
    foreach ($rooms as $room) {
        $rooms_db[] = (string) $room['Name'];
        $rooms_import[$room['Name']] = $room['RID'];
    }
  
    $events = $data->vcalendar->vevent;
    $rooms_pb = [];
    foreach ($events as $event) {
        $rooms_pb[] = (string) $event->location;
        if (! isset($rooms_import[trim($event->location)])) {
            $rooms_import[trim($event->location)] = trim($event->location);
        }
    }
    $rooms_pb = array_unique($rooms_pb);
  
    $rooms_new = array_diff($rooms_pb, $rooms_db);
    $rooms_deleted = array_diff($rooms_db, $rooms_pb);
  
    return [
      $rooms_new,
      $rooms_deleted
  ];
}

function prepare_events($file, $shifttype_id, $add_minutes_start, $add_minutes_end)
{
    global $rooms_import;
    $data = read_xml($file);
  
    $rooms = sql_select("SELECT * FROM `Room`");
    $rooms_db = [];
    foreach ($rooms as $room) {
        $rooms_db[$room['Name']] = $room['RID'];
    }
  
    $events = $data->vcalendar->vevent;
    $shifts_pb = [];
    foreach ($events as $event) {
        $event_pb = $event->children("http://pentabarf.org");
        $event_id = trim($event_pb->{
      'event-id' });
        $shifts_pb[$event_id] = [
        'shifttype_id' => $shifttype_id,
        'start' => parse_date("Ymd\THis", $event->dtstart) - $add_minutes_start * 60,
        'end' => parse_date("Ymd\THis", $event->dtend) + $add_minutes_end * 60,
        'RID' => $rooms_import[trim($event->location)],
        'title' => trim($event->summary),
        'URL' => trim($event->url),
        'PSID' => $event_id
    ];
    }
  
    $shifts = sql_select("SELECT * FROM `Shifts` WHERE `PSID` IS NOT NULL ORDER BY `start`");
    $shifts_db = [];
    foreach ($shifts as $shift) {
        $shifts_db[$shift['PSID']] = $shift;
    }
  
    $shifts_new = [];
    $shifts_updated = [];
    foreach ($shifts_pb as $shift) {
        if (! isset($shifts_db[$shift['PSID']])) {
            $shifts_new[] = $shift;
        } else {
            $tmp = $shifts_db[$shift['PSID']];
            if ($shift['shifttype_id'] != $tmp['shifttype_id'] || $shift['title'] != $tmp['title'] || $shift['start'] != $tmp['start'] || $shift['end'] != $tmp['end'] || $shift['RID'] != $tmp['RID'] || $shift['URL'] != $tmp['URL']) {
                $shifts_updated[] = $shift;
            }
        }
    }
  
    $shifts_deleted = [];
    foreach ($shifts_db as $shift) {
        if (! isset($shifts_pb[$shift['PSID']])) {
            $shifts_deleted[] = $shift;
        }
    }
  
    return [
      $shifts_new,
      $shifts_updated,
      $shifts_deleted
  ];
}

function read_xml($file)
{
    global $xml_import;
    if (! isset($xml_import)) {
        $xml_import = simplexml_load_file($file);
    }
    return $xml_import;
}

function shifts_printable($shifts, $shifttypes)
{
    global $rooms_import;
    $rooms = array_flip($rooms_import);
  
    uasort($shifts, 'shift_sort');
  
    $shifts_printable = [];
    foreach ($shifts as $shift) {
        $shifts_printable[] = [
        'day' => date("l, Y-m-d", $shift['start']),
        'start' => date("H:i", $shift['start']),
        'shifttype' => ShiftType_name_render([
            'id' => $shift['shifttype_id'],
            'name' => $shifttypes[$shift['shifttype_id']]
        ]),
        'title' => shorten($shift['title']),
        'end' => date("H:i", $shift['end']),
        'room' => $rooms[$shift['RID']]
    ];
    }
    return $shifts_printable;
}

function shift_sort($shift_a, $shift_b)
{
    return ($shift_a['start'] < $shift_b['start']) ? - 1 : 1;
}