2011-06-03 16:52:57 +02:00
|
|
|
<?php
|
2014-12-07 17:34:29 +01:00
|
|
|
|
2013-11-25 21:04:58 +01:00
|
|
|
function admin_import_title() {
|
2014-08-23 19:29:12 +02:00
|
|
|
return _("Frab import");
|
2013-11-25 21:04:58 +01:00
|
|
|
}
|
|
|
|
|
2011-06-03 16:52:57 +02:00
|
|
|
function admin_import() {
|
2012-12-26 14:02:27 +01:00
|
|
|
global $rooms_import;
|
|
|
|
global $user;
|
|
|
|
$html = "";
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
$step = "input";
|
2014-12-22 20:06:37 +01:00
|
|
|
if (isset($_REQUEST['step']) && in_array($step, [
|
|
|
|
'input',
|
|
|
|
'check',
|
|
|
|
'import'
|
|
|
|
]))
|
2012-12-26 14:02:27 +01:00
|
|
|
$step = $_REQUEST['step'];
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
if ($test_handle = fopen('../import/tmp', 'w')) {
|
|
|
|
fclose($test_handle);
|
|
|
|
unlink('../import/tmp');
|
|
|
|
} else {
|
|
|
|
error(_('Webserver has no write-permission on import directory.'));
|
|
|
|
}
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
$import_file = '../import/import_' . $user['UID'] . '.xml';
|
2014-12-22 20:06:37 +01:00
|
|
|
$shifttype_id = null;
|
|
|
|
|
|
|
|
$shifttypes_source = ShiftTypes();
|
|
|
|
if ($shifttypes_source === false)
|
|
|
|
engelsystem_error('Unable to load shifttypes.');
|
|
|
|
$shifttypes = [];
|
|
|
|
foreach ($shifttypes_source as $shifttype)
|
|
|
|
$shifttypes[$shifttype['id']] = $shifttype['name'];
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
switch ($step) {
|
2014-12-22 20:06:37 +01:00
|
|
|
case 'input':
|
2012-12-26 14:02:27 +01:00
|
|
|
$ok = false;
|
2014-03-26 20:04:11 +01:00
|
|
|
|
|
|
|
if (isset($_REQUEST['submit'])) {
|
2012-12-26 14:02:27 +01:00
|
|
|
$ok = true;
|
2014-12-22 20:06:37 +01:00
|
|
|
|
|
|
|
if (isset($_REQUEST['shifttype_id']) && isset($shifttypes[$_REQUEST['shifttype_id']]))
|
|
|
|
$shifttype_id = $_REQUEST['shifttype_id'];
|
|
|
|
else {
|
|
|
|
$ok = false;
|
|
|
|
error(_('Please select a shift type.'));
|
|
|
|
}
|
|
|
|
|
2014-03-26 20:04:11 +01:00
|
|
|
if (isset($_FILES['xcal_file']) && ($_FILES['xcal_file']['error'] == 0)) {
|
2012-12-26 14:02:27 +01:00
|
|
|
if (move_uploaded_file($_FILES['xcal_file']['tmp_name'], $import_file)) {
|
|
|
|
libxml_use_internal_errors(true);
|
|
|
|
if (simplexml_load_file($import_file) === false) {
|
|
|
|
$ok = false;
|
2014-12-22 20:06:37 +01:00
|
|
|
error(_('No valid xml/xcal file provided.'));
|
2012-12-26 14:02:27 +01:00
|
|
|
unlink($import_file);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$ok = false;
|
2014-12-22 20:06:37 +01:00
|
|
|
error(_('File upload went wrong.'));
|
2012-12-26 14:02:27 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$ok = false;
|
2014-12-22 20:06:37 +01:00
|
|
|
error(_('Please provide some data.'));
|
2012-12-26 14:02:27 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
if ($ok) {
|
|
|
|
redirect(page_link_to('admin_import') . "&step=check&shifttype_id=" . $shifttype_id);
|
|
|
|
} 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(array(
|
|
|
|
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_file('xcal_file', _("xcal-File (.xcal)")),
|
|
|
|
form_submit('submit', _("Import"))
|
|
|
|
))
|
|
|
|
])
|
|
|
|
]);
|
2014-03-26 20:04:11 +01:00
|
|
|
}
|
2012-12-26 14:02:27 +01:00
|
|
|
break;
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
case 'check':
|
|
|
|
if (! file_exists($import_file)) {
|
|
|
|
error(_('Missing import file.'));
|
2012-12-30 18:27:45 +01:00
|
|
|
redirect(page_link_to('admin_import'));
|
2014-12-22 20:06:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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'));
|
|
|
|
}
|
2014-03-26 20:04:11 +01:00
|
|
|
|
|
|
|
list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
|
2014-12-22 20:06:37 +01:00
|
|
|
list($events_new, $events_updated, $events_deleted) = prepare_events($import_file, $shifttype_id);
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:30:29 +01:00
|
|
|
$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([
|
2014-12-22 20:06:37 +01:00
|
|
|
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)
|
|
|
|
])
|
|
|
|
]),
|
2014-03-26 20:04:11 +01:00
|
|
|
'<h3>' . _("Shifts to create") . '</h3>',
|
|
|
|
table(array(
|
|
|
|
'day' => _("Day"),
|
|
|
|
'start' => _("Start"),
|
|
|
|
'end' => _("End"),
|
2014-12-22 20:06:37 +01:00
|
|
|
'shifttype' => _('Shift type'),
|
|
|
|
'title' => _("Title"),
|
2014-03-26 20:04:11 +01:00
|
|
|
'room' => _("Room")
|
2014-12-22 20:06:37 +01:00
|
|
|
), shifts_printable($events_new, $shifttypes)),
|
2014-03-26 20:04:11 +01:00
|
|
|
'<h3>' . _("Shifts to update") . '</h3>',
|
|
|
|
table(array(
|
|
|
|
'day' => _("Day"),
|
|
|
|
'start' => _("Start"),
|
|
|
|
'end' => _("End"),
|
2014-12-22 20:06:37 +01:00
|
|
|
'shifttype' => _('Shift type'),
|
|
|
|
'title' => _("Title"),
|
2014-03-26 20:04:11 +01:00
|
|
|
'room' => _("Room")
|
2014-12-22 20:06:37 +01:00
|
|
|
), shifts_printable($events_updated, $shifttypes)),
|
2014-03-26 20:04:11 +01:00
|
|
|
'<h3>' . _("Shifts to delete") . '</h3>',
|
|
|
|
table(array(
|
|
|
|
'day' => _("Day"),
|
|
|
|
'start' => _("Start"),
|
|
|
|
'end' => _("End"),
|
2014-12-22 20:06:37 +01:00
|
|
|
'shifttype' => _('Shift type'),
|
|
|
|
'title' => _("Title"),
|
2014-03-26 20:04:11 +01:00
|
|
|
'room' => _("Room")
|
2014-12-22 20:06:37 +01:00
|
|
|
), shifts_printable($events_deleted, $shifttypes)),
|
2014-03-26 20:04:11 +01:00
|
|
|
form_submit('submit', _("Import"))
|
2014-12-22 20:06:37 +01:00
|
|
|
], page_link_to('admin_import') . '&step=import&shifttype_id=' . $shifttype_id);
|
2012-12-26 14:02:27 +01:00
|
|
|
break;
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
case 'import':
|
|
|
|
if (! file_exists($import_file)) {
|
|
|
|
error(_('Missing import file.'));
|
|
|
|
redirect(page_link_to('admin_import'));
|
|
|
|
}
|
|
|
|
|
2014-03-26 20:04:11 +01:00
|
|
|
if (! file_exists($import_file))
|
2012-12-30 18:27:45 +01:00
|
|
|
redirect(page_link_to('admin_import'));
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
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'));
|
|
|
|
}
|
|
|
|
|
2014-03-26 20:04:11 +01:00
|
|
|
list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
|
2012-12-26 14:02:27 +01:00
|
|
|
foreach ($rooms_new as $room) {
|
2015-08-12 20:43:22 +02:00
|
|
|
$result = Room_create($room, true, true);
|
2015-05-14 17:20:46 +02:00
|
|
|
if ($result === false)
|
|
|
|
engelsystem_error('Unable to create room.');
|
2012-12-26 14:02:27 +01:00
|
|
|
$rooms_import[trim($room)] = sql_id();
|
|
|
|
}
|
|
|
|
foreach ($rooms_deleted as $room)
|
|
|
|
sql_query("DELETE FROM `Room` WHERE `Name`='" . sql_escape($room) . "' LIMIT 1");
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
list($events_new, $events_updated, $events_deleted) = prepare_events($import_file, $shifttype_id);
|
2014-12-07 17:34:29 +01:00
|
|
|
foreach ($events_new as $event) {
|
|
|
|
$result = Shift_create($event);
|
|
|
|
if ($result === false)
|
|
|
|
engelsystem_error('Unable to create shift.');
|
|
|
|
}
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-07 17:41:40 +01:00
|
|
|
foreach ($events_updated as $event) {
|
|
|
|
$result = Shift_update_by_psid($event);
|
|
|
|
if ($result === false)
|
|
|
|
engelsystem_error('Unable to update shift.');
|
|
|
|
}
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-07 17:48:35 +01:00
|
|
|
foreach ($events_deleted as $event) {
|
|
|
|
$result = Shift_delete_by_psid($event['PSID']);
|
|
|
|
if ($result === false)
|
|
|
|
engelsystem_error('Unable to delete shift.');
|
|
|
|
}
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
engelsystem_log("Pentabarf import done");
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
unlink($import_file);
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:30:29 +01:00
|
|
|
$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);
|
2012-12-26 14:02:27 +01:00
|
|
|
break;
|
2014-03-26 20:04:11 +01:00
|
|
|
default:
|
|
|
|
redirect(page_link_to('admin_import'));
|
2012-12-26 14:02:27 +01:00
|
|
|
}
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
return page_with_title(admin_import_title(), [
|
|
|
|
msg(),
|
|
|
|
$html
|
|
|
|
]);
|
2011-06-03 16:52:57 +02:00
|
|
|
}
|
|
|
|
|
2011-07-12 16:03:07 +02:00
|
|
|
function prepare_rooms($file) {
|
2012-12-26 14:02:27 +01:00
|
|
|
global $rooms_import;
|
|
|
|
$data = read_xml($file);
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
// Load rooms from db for compare with input
|
|
|
|
$rooms = sql_select("SELECT * FROM `Room` WHERE `FromPentabarf`='Y'");
|
2014-03-26 20:04:11 +01:00
|
|
|
$rooms_db = array();
|
|
|
|
$rooms_import = array();
|
2012-12-26 14:02:27 +01:00
|
|
|
foreach ($rooms as $room) {
|
2014-03-26 20:04:11 +01:00
|
|
|
$rooms_db[] = (string) $room['Name'];
|
2012-12-26 14:02:27 +01:00
|
|
|
$rooms_import[$room['Name']] = $room['RID'];
|
|
|
|
}
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
$events = $data->vcalendar->vevent;
|
2014-03-26 20:04:11 +01:00
|
|
|
$rooms_pb = array();
|
2012-12-26 14:02:27 +01:00
|
|
|
foreach ($events as $event) {
|
2014-03-26 20:04:11 +01:00
|
|
|
$rooms_pb[] = (string) $event->location;
|
|
|
|
if (! isset($rooms_import[trim($event->location)]))
|
2012-12-26 14:02:27 +01:00
|
|
|
$rooms_import[trim($event->location)] = trim($event->location);
|
|
|
|
}
|
|
|
|
$rooms_pb = array_unique($rooms_pb);
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
$rooms_new = array_diff($rooms_pb, $rooms_db);
|
|
|
|
$rooms_deleted = array_diff($rooms_db, $rooms_pb);
|
2014-03-26 20:04:11 +01:00
|
|
|
|
|
|
|
return array(
|
|
|
|
$rooms_new,
|
2014-12-07 17:34:29 +01:00
|
|
|
$rooms_deleted
|
2012-12-26 14:02:27 +01:00
|
|
|
);
|
2011-07-11 20:40:27 +02:00
|
|
|
}
|
2011-07-11 21:58:06 +02:00
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
function prepare_events($file, $shifttype_id) {
|
2012-12-26 14:02:27 +01:00
|
|
|
global $rooms_import;
|
|
|
|
$data = read_xml($file);
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
$rooms = sql_select("SELECT * FROM `Room`");
|
2014-03-26 20:04:11 +01:00
|
|
|
$rooms_db = array();
|
2012-12-26 14:02:27 +01:00
|
|
|
foreach ($rooms as $room)
|
|
|
|
$rooms_db[$room['Name']] = $room['RID'];
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
$events = $data->vcalendar->vevent;
|
2014-03-26 20:04:11 +01:00
|
|
|
$shifts_pb = array();
|
2012-12-26 14:02:27 +01:00
|
|
|
foreach ($events as $event) {
|
|
|
|
$event_pb = $event->children("http://pentabarf.org");
|
2014-03-26 20:04:11 +01:00
|
|
|
$event_id = trim($event_pb->{
|
2012-12-26 14:02:27 +01:00
|
|
|
'event-id' });
|
2014-03-26 20:04:11 +01:00
|
|
|
$shifts_pb[$event_id] = array(
|
2014-12-22 20:06:37 +01:00
|
|
|
'shifttype_id' => $shifttype_id,
|
2014-03-26 20:04:11 +01:00
|
|
|
'start' => DateTime::createFromFormat("Ymd\THis", $event->dtstart)->getTimestamp(),
|
|
|
|
'end' => DateTime::createFromFormat("Ymd\THis", $event->dtend)->getTimestamp(),
|
2012-12-26 14:02:27 +01:00
|
|
|
'RID' => $rooms_import[trim($event->location)],
|
2014-12-22 20:06:37 +01:00
|
|
|
'title' => trim($event->summary),
|
2012-12-26 14:02:27 +01:00
|
|
|
'URL' => trim($event->url),
|
2014-03-26 20:04:11 +01:00
|
|
|
'PSID' => $event_id
|
|
|
|
);
|
2012-12-26 14:02:27 +01:00
|
|
|
}
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
$shifts = sql_select("SELECT * FROM `Shifts` WHERE `PSID` IS NOT NULL ORDER BY `start`");
|
2014-03-26 20:04:11 +01:00
|
|
|
$shifts_db = array();
|
2012-12-26 14:02:27 +01:00
|
|
|
foreach ($shifts as $shift)
|
|
|
|
$shifts_db[$shift['PSID']] = $shift;
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
$shifts_new = [];
|
|
|
|
$shifts_updated = [];
|
2012-12-26 14:02:27 +01:00
|
|
|
foreach ($shifts_pb as $shift)
|
2014-03-26 20:04:11 +01:00
|
|
|
if (! isset($shifts_db[$shift['PSID']]))
|
|
|
|
$shifts_new[] = $shift;
|
|
|
|
else {
|
|
|
|
$tmp = $shifts_db[$shift['PSID']];
|
2014-12-22 20:06:37 +01:00
|
|
|
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'])
|
2014-03-26 20:04:11 +01:00
|
|
|
$shifts_updated[] = $shift;
|
|
|
|
}
|
|
|
|
|
|
|
|
$shifts_deleted = array();
|
2012-12-26 14:02:27 +01:00
|
|
|
foreach ($shifts_db as $shift)
|
2014-03-26 20:04:11 +01:00
|
|
|
if (! isset($shifts_pb[$shift['PSID']]))
|
|
|
|
$shifts_deleted[] = $shift;
|
|
|
|
|
|
|
|
return array(
|
|
|
|
$shifts_new,
|
|
|
|
$shifts_updated,
|
|
|
|
$shifts_deleted
|
2012-12-26 14:02:27 +01:00
|
|
|
);
|
2011-07-11 21:58:06 +02:00
|
|
|
}
|
|
|
|
|
2011-07-12 16:03:07 +02:00
|
|
|
function read_xml($file) {
|
2012-12-26 14:02:27 +01:00
|
|
|
global $xml_import;
|
2014-03-26 20:04:11 +01:00
|
|
|
if (! isset($xml_import))
|
2012-12-26 14:02:27 +01:00
|
|
|
$xml_import = simplexml_load_file($file);
|
|
|
|
return $xml_import;
|
2011-07-11 21:58:06 +02:00
|
|
|
}
|
|
|
|
|
2014-12-22 20:06:37 +01:00
|
|
|
function shifts_printable($shifts, $shifttypes) {
|
2012-12-26 14:02:27 +01:00
|
|
|
global $rooms_import;
|
|
|
|
$rooms = array_flip($rooms_import);
|
2014-03-26 20:04:11 +01:00
|
|
|
|
2012-12-26 14:02:27 +01:00
|
|
|
uasort($shifts, 'shift_sort');
|
2014-03-26 20:04:11 +01:00
|
|
|
|
|
|
|
$shifts_printable = array();
|
2012-12-26 14:02:27 +01:00
|
|
|
foreach ($shifts as $shift)
|
2014-03-26 20:04:11 +01:00
|
|
|
$shifts_printable[] = array(
|
|
|
|
'day' => date("l, Y-m-d", $shift['start']),
|
|
|
|
'start' => date("H:i", $shift['start']),
|
2014-12-22 20:06:37 +01:00
|
|
|
'shifttype' => ShiftType_name_render([
|
|
|
|
'id' => $shift['shifttype_id'],
|
|
|
|
'name' => $shifttypes[$shift['shifttype_id']]
|
|
|
|
]),
|
|
|
|
'title' => shorten($shift['title']),
|
2014-03-26 20:04:11 +01:00
|
|
|
'end' => date("H:i", $shift['end']),
|
|
|
|
'room' => $rooms[$shift['RID']]
|
2012-12-26 14:02:27 +01:00
|
|
|
);
|
|
|
|
return $shifts_printable;
|
2011-07-11 21:58:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function shift_sort($a, $b) {
|
2014-03-26 20:04:11 +01:00
|
|
|
return ($a['start'] < $b['start']) ? - 1 : 1;
|
2011-07-11 21:58:06 +02:00
|
|
|
}
|
2011-06-03 16:52:57 +02:00
|
|
|
?>
|