engelsystem/includes/view/User_view.php

294 lines
13 KiB
PHP
Raw Normal View History

<?php
2014-08-23 02:47:06 +02:00
/**
* Available T-Shirt sizes
*/
$tshirt_sizes = array(
'' => _("Please select..."),
'S' => "S",
'M' => "M",
'L' => "L",
'XL' => "XL",
'2XL' => "2XL",
'3XL' => "3XL",
'4XL' => "4XL",
'5XL' => "5XL",
'S-G' => "S Girl",
'M-G' => "M Girl",
'L-G' => "L Girl",
2014-12-19 22:41:55 +01:00
'XL-G' => "XL Girl"
2014-08-23 02:47:06 +02:00
);
2015-08-12 23:44:39 +02:00
/**
* View for editing the number of given vouchers
*/
function User_edit_vouchers_view($user) {
return page_with_title(sprintf(_("%s's vouchers"), User_Nick_render($user)), [
msg(),
buttons([
button(user_link($user), glyph('chevron-left') . _("back"))
]),
form([
form_spinner('vouchers', _("Number of vouchers"), $user['got_voucher']),
form_submit('submit', _("Save"))
], page_link_to('users') . '&action=edit_vouchers&user_id=' . $user['UID'])
]);
}
2014-12-26 01:49:59 +01:00
function Users_view($users, $order_by, $arrived_count, $active_count, $force_active_count, $freeloads_count, $tshirts_count, $voucher_count) {
2014-09-28 14:50:08 +02:00
foreach ($users as &$user) {
2014-09-28 15:01:02 +02:00
$user['Nick'] = User_Nick_render($user);
2014-09-28 14:50:08 +02:00
$user['Gekommen'] = glyph_bool($user['Gekommen']);
2015-08-12 23:47:06 +02:00
$user['got_voucher'] = $user['got_voucher'];
2014-09-28 14:50:08 +02:00
$user['Aktiv'] = glyph_bool($user['Aktiv']);
$user['force_active'] = glyph_bool($user['force_active']);
$user['Tshirt'] = glyph_bool($user['Tshirt']);
$user['lastLogIn'] = date(_('m/d/Y h:i a'), $user['lastLogIn']);
$user['actions'] = table_buttons(array(
2014-12-19 22:41:55 +01:00
button_glyph(page_link_to('admin_user') . '&id=' . $user['UID'], 'edit', 'btn-xs')
2014-09-28 14:50:08 +02:00
));
}
$users[] = array(
'Nick' => '<strong>' . _('Sum') . '</strong>',
'Gekommen' => $arrived_count,
2014-12-26 01:49:59 +01:00
'got_voucher' => $voucher_count,
2014-09-28 14:50:08 +02:00
'Aktiv' => $active_count,
'force_active' => $force_active_count,
'freeloads' => $freeloads_count,
'Tshirt' => $tshirts_count,
2014-12-19 22:41:55 +01:00
'actions' => '<strong>' . count($users) . '</strong>'
2014-09-28 14:50:08 +02:00
);
2014-12-19 22:41:55 +01:00
2014-09-28 14:50:08 +02:00
return page_with_title(_('All users'), array(
msg(),
buttons(array(
2014-12-19 22:41:55 +01:00
button(page_link_to('register'), glyph('plus') . _('New user'))
2014-09-28 14:50:08 +02:00
)),
table(array(
'Nick' => Users_table_header_link('Nick', _('Nick'), $order_by),
'Vorname' => Users_table_header_link('Vorname', _('Prename'), $order_by),
'Name' => Users_table_header_link('Name', _('Name'), $order_by),
'DECT' => Users_table_header_link('DECT', _('DECT'), $order_by),
'Gekommen' => Users_table_header_link('Gekommen', _('Arrived'), $order_by),
2014-12-26 01:49:59 +01:00
'got_voucher' => Users_table_header_link('got_voucher', _('Voucher'), $order_by),
2014-09-28 14:50:08 +02:00
'freeloads' => _('Freeloads'),
'Aktiv' => Users_table_header_link('Aktiv', _('Active'), $order_by),
'force_active' => Users_table_header_link('force_active', _('Forced'), $order_by),
'Tshirt' => Users_table_header_link('Tshirt', _('T-Shirt'), $order_by),
'Size' => Users_table_header_link('Size', _('Size'), $order_by),
'lastLogIn' => Users_table_header_link('lastLogIn', _('Last login'), $order_by),
2014-12-19 22:41:55 +01:00
'actions' => ''
), $users)
2014-09-28 14:50:08 +02:00
));
}
function Users_table_header_link($column, $label, $order_by) {
return '<a href="' . page_link_to('users') . '&OrderBy=' . $column . '">' . $label . ($order_by == $column ? ' <span class="caret"></span>' : '') . '</a>';
}
2014-08-24 15:49:46 +02:00
function User_shift_state_render($user) {
2014-08-24 16:08:12 +02:00
$upcoming_shifts = ShiftEntries_upcoming_for_user($user);
if ($upcoming_shifts === false)
return false;
2014-12-19 22:41:55 +01:00
2014-08-24 16:08:12 +02:00
if (count($upcoming_shifts) == 0)
2014-08-23 01:55:18 +02:00
return '<span class="text-success">' . _("Free") . '</span>';
2014-12-19 22:41:55 +01:00
2014-08-24 16:08:12 +02:00
if ($upcoming_shifts[0]['start'] > time())
if ($upcoming_shifts[0]['start'] - time() > 3600)
2014-08-24 16:22:43 +02:00
return '<span class="text-success moment-countdown" data-timestamp="' . $upcoming_shifts[0]['start'] . '">' . _("Next shift %c") . '</span>';
2014-08-24 16:08:12 +02:00
else
2014-08-24 16:22:43 +02:00
return '<span class="text-warning moment-countdown" data-timestamp="' . $upcoming_shifts[0]['start'] . '">' . _("Next shift %c") . '</span>';
2014-12-19 22:41:55 +01:00
2014-08-24 16:08:12 +02:00
$halfway = ($upcoming_shifts[0]['start'] + $upcoming_shifts[0]['end']) / 2;
2014-12-19 22:41:55 +01:00
2014-08-24 16:08:12 +02:00
if (time() < $halfway)
2014-08-24 16:48:12 +02:00
return '<span class="text-danger moment-countdown" data-timestamp="' . $upcoming_shifts[0]['start'] . '">' . _("Shift starts %c") . '</span>';
2014-08-24 16:08:12 +02:00
else
2014-08-24 16:48:12 +02:00
return '<span class="text-danger moment-countdown" data-timestamp="' . $upcoming_shifts[0]['end'] . '">' . _("Shift ends %c") . '</span>';
2014-08-23 01:55:18 +02:00
}
2014-08-24 15:49:46 +02:00
function User_view($user_source, $admin_user_privilege, $freeloader, $user_angeltypes, $user_groups, $shifts, $its_me) {
2014-08-23 01:55:18 +02:00
global $LETZTES_AUSTRAGEN, $privileges;
2014-12-19 22:41:55 +01:00
2014-08-22 22:34:13 +02:00
$user_name = htmlspecialchars($user_source['Vorname']) . " " . htmlspecialchars($user_source['Name']);
2014-12-19 22:41:55 +01:00
2014-08-23 01:55:18 +02:00
$myshifts_table = array();
$html = "";
$timesum = 0;
foreach ($shifts as $shift) {
2014-12-19 22:41:55 +01:00
$shift_info = '<a href="' . shift_link($shift) . '">' . $shift['name'] . '</a>';
2014-12-22 20:18:34 +01:00
if ($shift['title'])
$shift_info .= '<br /><a href="' . shift_link($shift) . '">' . $shift['title'] . '</a>';
2014-08-23 01:55:18 +02:00
foreach ($shift['needed_angeltypes'] as $needed_angel_type) {
$shift_info .= '<br><b>' . $needed_angel_type['name'] . ':</b> ';
2014-12-19 22:41:55 +01:00
2014-08-23 01:55:18 +02:00
$shift_entries = array();
foreach ($needed_angel_type['users'] as $user_shift) {
2014-12-27 21:32:02 +01:00
$member = User_Nick_render($user_shift);
if ($user_shift['freeloaded'])
2014-08-23 01:55:18 +02:00
$member = '<strike>' . $member . '</strike>';
2014-12-19 22:41:55 +01:00
2014-08-23 01:55:18 +02:00
$shift_entries[] = $member;
}
$shift_info .= join(", ", $shift_entries);
}
2014-12-19 22:41:55 +01:00
2014-08-23 01:55:18 +02:00
$myshift = array(
'date' => date("Y-m-d", $shift['start']),
'time' => date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']),
'room' => $shift['Name'],
'shift_info' => $shift_info,
2014-12-19 22:41:55 +01:00
'comment' => $shift['Comment']
2014-08-23 01:55:18 +02:00
);
2014-12-19 22:41:55 +01:00
2014-08-23 01:55:18 +02:00
if ($shift['freeloaded']) {
if (in_array("user_shifts_admin", $privileges))
$myshift['comment'] .= '<br /><p class="error">' . _("Freeloaded") . ': ' . $shift['freeload_comment'] . '</p>';
else
$myshift['comment'] .= '<br /><p class="error">' . _("Freeloaded") . '</p>';
}
2014-12-19 22:41:55 +01:00
$myshift['actions'] = [
button(shift_link($shift), glyph('eye-open') . _('view'), 'btn-xs')
];
2014-08-23 01:55:18 +02:00
if ($its_me || in_array('user_shifts_admin', $privileges))
2014-09-28 19:44:53 +02:00
$myshift['actions'][] = button(page_link_to('user_myshifts') . '&edit=' . $shift['id'] . '&id=' . $user_source['UID'], glyph('edit') . _('edit'), 'btn-xs');
2014-08-23 01:55:18 +02:00
if (($shift['start'] > time() + $LETZTES_AUSTRAGEN * 3600) || in_array('user_shifts_admin', $privileges))
2014-09-28 19:44:53 +02:00
$myshift['actions'][] = button(page_link_to('user_myshifts') . ((! $its_me) ? '&id=' . $user_source['UID'] : '') . '&cancel=' . $shift['id'], glyph('trash') . _('sign off'), 'btn-xs');
$myshift['actions'] = table_buttons($myshift['actions']);
2014-12-19 22:41:55 +01:00
2014-08-23 01:55:18 +02:00
if ($shift['freeloaded'])
$timesum += - 2 * ($shift['end'] - $shift['start']);
else
$timesum += $shift['end'] - $shift['start'];
$myshifts_table[] = $myshift;
}
if (count($myshifts_table) > 0)
$myshifts_table[] = array(
'date' => '<b>' . _("Sum:") . '</b>',
'time' => "<b>" . round($timesum / (60 * 60), 1) . " h</b>",
'room' => "",
'shift_info' => "",
'comment' => "",
2014-12-19 22:41:55 +01:00
'actions' => ""
2014-08-23 01:55:18 +02:00
);
2014-12-19 22:41:55 +01:00
2014-08-23 01:55:18 +02:00
return page_with_title('<span class="icon-icon_angel"></span> ' . htmlspecialchars($user_source['Nick']) . ' <small>' . $user_name . '</small>', array(
msg(),
div('row', array(
div('col-md-3', array(
'<h1>',
'<span class="glyphicon glyphicon-phone"></span>',
$user_source['DECT'],
2014-12-19 22:41:55 +01:00
'</h1>'
2014-08-23 01:55:18 +02:00
)),
div('col-md-3', array(
'<h4>' . _("User state") . '</h4>',
($admin_user_privilege && $freeloader) ? '<span class="text-danger"><span class="glyphicon glyphicon-exclamation-sign"></span> ' . _("Freeloader") . '</span><br />' : '',
2014-08-24 15:49:46 +02:00
$user_source['Gekommen'] ? User_shift_state_render($user_source) . '<br />' : '',
2015-08-12 23:44:39 +02:00
$admin_user_privilege || $its_me ? ($user_source['Gekommen'] ? '<span class="text-success"><span class="glyphicon glyphicon-home"></span> ' . sprintf(_("Arrived at %s"), date('Y-m-d', $user_source['arrival_date'])) . '</span>' : '<span class="text-danger">' . sprintf(_("Not arrived (Planned: %s)"), date('Y-m-d', $user_source['planned_arrival_date'])) . '</span>') : ($user_source['Gekommen'] ? '<span class="text-success"><span class="glyphicon glyphicon-home"></span> ' . _("Arrived") . '</span>' : '<span class="text-danger">' . _("Not arrived") . '</span>'),
$admin_user_privilege ? ($user_source['got_voucher'] > 0 ? '<br /><span class="text-success">' . glyph('cutlery') . sprintf(ngettext("Got %s voucher", "Got %s vouchers", $user_source['got_voucher']), $user_source['got_voucher']) . '</span>' : '<br /><span class="text-danger">' . _("Got no vouchers") . '</span>') : '',
2014-08-23 01:55:18 +02:00
($user_source['Gekommen'] && $admin_user_privilege && $user_source['Aktiv']) ? ' <span class="text-success">' . _("Active") . '</span>' : '',
2014-12-19 22:41:55 +01:00
($user_source['Gekommen'] && $admin_user_privilege && $user_source['Tshirt']) ? ' <span class="text-success">' . _("T-Shirt") . '</span>' : ''
2014-08-23 01:55:18 +02:00
)),
div('col-md-3', array(
'<h4>' . _("Angeltypes") . '</h4>',
2014-12-19 22:41:55 +01:00
User_angeltypes_render($user_angeltypes)
2014-08-23 01:55:18 +02:00
)),
div('col-md-3', array(
'<h4>' . _("Rights") . '</h4>',
2014-12-19 22:41:55 +01:00
User_groups_render($user_groups)
))
2014-08-23 01:55:18 +02:00
)),
2014-12-06 19:02:02 +01:00
div('row space-top', array(
div('col-md-12', array(
buttons(array(
$admin_user_privilege ? button(page_link_to('admin_user') . '&id=' . $user_source['UID'], glyph("edit") . _("edit")) : '',
2014-12-19 22:41:55 +01:00
($admin_user_privilege && ! $user_source['Gekommen']) ? button(page_link_to('admin_arrive') . '&arrived=' . $user_source['UID'], _("arrived")) : '',
2015-08-12 23:44:39 +02:00
$admin_user_privilege ? button(page_link_to('users') . '&action=edit_vouchers&user_id=' . $user_source['UID'], glyph('cutlery') . _('Edit vouchers')) : '',
2014-12-07 16:15:16 +01:00
$its_me ? button(page_link_to('user_settings'), glyph('list-alt') . _("Settings")) : '',
$its_me ? button(page_link_to('ical') . '&key=' . $user_source['api_key'], glyph('calendar') . _("iCal Export")) : '',
$its_me ? button(page_link_to('shifts_json_export') . '&key=' . $user_source['api_key'], glyph('export') . _("JSON Export")) : '',
2014-12-19 22:41:55 +01:00
$its_me ? button(page_link_to('user_myshifts') . '&reset', glyph('repeat') . _('Reset API key')) : ''
))
))
2014-08-24 16:22:43 +02:00
)),
2014-08-23 01:55:18 +02:00
($its_me || $admin_user_privilege) ? '<h2>' . _("Shifts") . '</h2>' : '',
($its_me || $admin_user_privilege) ? table(array(
'date' => _("Day"),
'time' => _("Time"),
'room' => _("Location"),
'shift_info' => _("Name &amp; workmates"),
'comment' => _("Comment"),
2014-12-19 22:41:55 +01:00
'actions' => _("Action")
2014-08-23 01:55:18 +02:00
), $myshifts_table) : '',
2014-12-19 22:41:55 +01:00
$its_me && count($shifts) == 0 ? error(sprintf(_("Go to the <a href=\"%s\">shifts table</a> to sign yourself up for some shifts."), page_link_to('user_shifts')), true) : ''
2014-08-23 01:55:18 +02:00
));
2014-08-22 22:34:13 +02:00
}
2013-12-26 13:34:48 +01:00
/**
* View for password recovery step 1: E-Mail
*/
function User_password_recovery_view() {
2014-08-22 22:34:13 +02:00
return page_with_title(user_password_recovery_title(), array(
2013-12-26 13:34:48 +01:00
msg(),
_("We will send you an e-mail with a password recovery link. Please use the email address you used for registration."),
form(array(
form_text('email', _("E-Mail"), ""),
2014-12-19 22:41:55 +01:00
form_submit('submit', _("Recover"))
))
2013-12-26 13:34:48 +01:00
));
}
/**
* View for password recovery step 2: New password
*/
function User_password_set_view() {
2014-08-22 22:34:13 +02:00
return page_with_title(user_password_recovery_title(), array(
2013-12-26 13:34:48 +01:00
msg(),
_("Please enter a new password."),
form(array(
form_password('password', _("Password")),
form_password('password2', _("Confirm password")),
2014-12-19 22:41:55 +01:00
form_submit('submit', _("Save"))
))
2013-12-26 13:34:48 +01:00
));
}
2014-08-23 01:55:18 +02:00
function User_angeltypes_render($user_angeltypes) {
$output = array();
foreach ($user_angeltypes as $angeltype) {
$class = "";
if ($angeltype['restricted'] == 1)
if ($angeltype['confirm_user_id'] != null)
$class = 'text-success';
else
$class = 'text-warning';
else
$class = 'text-success';
$output[] = '<span class="' . $class . '">' . ($angeltype['coordinator'] ? '<span class="glyphicon glyphicon-certificate"></span> ' : '') . $angeltype['name'] . '</span>';
}
return join('<br />', $output);
}
function User_groups_render($user_groups) {
$output = array();
foreach ($user_groups as $group) {
$output[] = substr($group['Name'], 2);
}
return join('<br />', $output);
}
/**
* Render a user nickname.
2013-12-26 13:34:48 +01:00
*
2014-12-19 22:41:55 +01:00
* @param User $user_source
* @return string
*/
function User_Nick_render($user_source) {
2014-12-26 18:59:32 +01:00
return '<a class="' . ($user_source['Gekommen'] ? '' : 'text-muted') . '" href="' . page_link_to('users') . '&amp;action=view&amp;user_id=' . $user_source['UID'] . '"><span class="icon-icon_angel"></span> ' . htmlspecialchars($user_source['Nick']) . '</a>';
}
?>