engelsystem/includes/view/User_view.php

971 lines
32 KiB
PHP
Raw Normal View History

<?php
use Carbon\Carbon;
use Engelsystem\Config\GoodieType;
2022-11-09 00:02:30 +01:00
use Engelsystem\Models\AngelType;
use Engelsystem\Models\Group;
2023-01-03 22:19:03 +01:00
use Engelsystem\Models\Shifts\Shift;
2023-01-18 13:02:11 +01:00
use Engelsystem\Models\Shifts\ShiftEntry;
use Engelsystem\Models\User\User;
2020-09-12 19:45:25 +02:00
use Engelsystem\Models\Worklog;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
2016-11-11 16:34:23 +01:00
/**
* Gui for deleting user with password field.
2017-01-03 03:22:48 +01:00
*
2018-10-09 21:47:31 +02:00
* @param User $user
2017-01-03 03:22:48 +01:00
* @return string
*/
2017-01-02 03:57:23 +01:00
function User_delete_view($user)
{
return page_with_title(sprintf(__('Delete %s'), User_Nick_render($user)), [
2017-01-02 15:43:36 +01:00
msg(),
buttons([
button(user_edit_link($user->id), icon('chevron-left') . __('back')),
2017-01-02 15:43:36 +01:00
]),
error(
__('Do you really want to delete the user including all his shifts and every other piece of his data?'),
2017-01-02 15:43:36 +01:00
true
),
form([
form_password('password', __('Your password'), 'current-password'),
form_submit('submit', __('Delete')),
]),
2017-01-02 15:43:36 +01:00
]);
}
2015-08-12 23:44:39 +02:00
/**
* View for editing the number of given vouchers
2017-01-03 03:22:48 +01:00
*
2018-10-10 03:10:28 +02:00
* @param User $user
2017-01-03 03:22:48 +01:00
* @return string
2015-08-12 23:44:39 +02:00
*/
2017-01-02 03:57:23 +01:00
function User_edit_vouchers_view($user)
{
return page_with_title(sprintf(__('%s\'s vouchers'), User_Nick_render($user)), [
2017-01-02 15:43:36 +01:00
msg(),
buttons([
button(user_link($user->id), icon('chevron-left') . __('back')),
2017-01-02 15:43:36 +01:00
]),
2017-12-25 23:12:52 +01:00
info(sprintf(
2022-07-20 18:15:18 +02:00
$user->state->force_active
2022-07-23 21:40:17 +02:00
? __('Angel can receive another %d vouchers and is FA.')
: __('Angel can receive another %d vouchers.'),
2017-12-25 23:12:52 +01:00
User_get_eligable_voucher_count($user)
), true),
2017-08-28 16:21:10 +02:00
form(
[
2018-10-10 03:10:28 +02:00
form_spinner('vouchers', __('Number of vouchers given out'), $user->state->got_voucher),
form_submit('submit', __('Save')),
2017-08-28 16:21:10 +02:00
],
2018-10-10 03:10:28 +02:00
page_link_to('users', ['action' => 'edit_vouchers', 'user_id' => $user->id])
),
2017-01-02 15:43:36 +01:00
]);
2015-08-12 23:44:39 +02:00
}
2017-01-03 03:22:48 +01:00
/**
* @param User[] $users
* @param string $order_by
* @param int $arrived_count
* @param int $active_count
* @param int $force_active_count
* @param int $freeloads_count
* @param int $tshirts_count
* @param int $voucher_count
2017-01-03 03:22:48 +01:00
* @return string
*/
2017-01-02 15:43:36 +01:00
function Users_view(
$users,
$order_by,
$arrived_count,
$active_count,
$force_active_count,
$freeloads_count,
$tshirts_count,
$voucher_count
) {
$goodie = GoodieType::from(config('goodie_type'));
$goodie_enabled = $goodie !== GoodieType::None;
$goodie_tshirt = $goodie === GoodieType::Tshirt;
$usersList = [];
foreach ($users as $user) {
$u = [];
2019-12-26 19:07:51 +01:00
$u['name'] = User_Nick_render($user) . User_Pronoun_render($user);
2018-10-17 01:30:10 +02:00
$u['first_name'] = $user->personalData->first_name;
$u['last_name'] = $user->personalData->last_name;
2021-01-12 14:19:24 +01:00
$u['dect'] = sprintf('<a href="tel:%s">%1$s</a>', $user->contact->dect);
$u['arrived'] = icon_bool($user->state->arrived);
if (config('enable_voucher')) {
$u['got_voucher'] = $user->state->got_voucher;
}
$u['freeloads'] = $user->getAttribute('freeloads');
$u['active'] = icon_bool($user->state->active);
$u['force_active'] = icon_bool($user->state->force_active);
if ($goodie_enabled) {
$u['got_shirt'] = icon_bool($user->state->got_shirt);
if ($goodie_tshirt) {
2023-01-27 21:01:23 +01:00
$u['shirt_size'] = $user->personalData->shirt_size;
}
}
$u['arrival_date'] = $user->personalData->planned_arrival_date
2019-07-25 18:53:27 +02:00
? $user->personalData->planned_arrival_date->format(__('Y-m-d')) : '';
$u['departure_date'] = $user->personalData->planned_departure_date
2019-07-25 18:53:27 +02:00
? $user->personalData->planned_departure_date->format(__('Y-m-d')) : '';
2018-10-17 01:30:10 +02:00
$u['last_login_at'] = $user->last_login_at ? $user->last_login_at->format(__('m/d/Y h:i a')) : '';
$u['actions'] = table_buttons([
button_icon(page_link_to('admin_user', ['id' => $user->id]), 'pencil', 'btn-sm'),
2017-01-02 15:43:36 +01:00
]);
$usersList[] = $u;
2017-01-02 03:57:23 +01:00
}
$usersList[] = [
2018-10-17 01:30:10 +02:00
'name' => '<strong>' . __('Sum') . '</strong>',
'arrived' => $arrived_count,
2017-01-02 15:43:36 +01:00
'got_voucher' => $voucher_count,
2018-10-17 01:30:10 +02:00
'active' => $active_count,
2017-01-02 15:43:36 +01:00
'force_active' => $force_active_count,
'freeloads' => $freeloads_count,
2018-10-17 01:30:10 +02:00
'got_shirt' => $tshirts_count,
'actions' => '<strong>' . count($usersList) . '</strong>',
2017-01-02 15:43:36 +01:00
];
$user_table_headers = [];
if (!config('display_full_name')) {
$user_table_headers['name'] = Users_table_header_link('name', __('Nick'), $order_by);
}
if (config('enable_user_name')) {
$user_table_headers['first_name'] = Users_table_header_link('first_name', __('Prename'), $order_by);
$user_table_headers['last_name'] = Users_table_header_link('last_name', __('Name'), $order_by);
}
if (config('enable_dect')) {
$user_table_headers['dect'] = Users_table_header_link('dect', __('DECT'), $order_by);
}
$user_table_headers['arrived'] = Users_table_header_link('arrived', __('Arrived'), $order_by);
if (config('enable_voucher')) {
$user_table_headers['got_voucher'] = Users_table_header_link('got_voucher', __('Voucher'), $order_by);
}
2020-04-24 20:01:26 +02:00
$user_table_headers['freeloads'] = Users_table_header_link('freeloads', __('Freeloads'), $order_by);
$user_table_headers['active'] = Users_table_header_link('active', __('Active'), $order_by);
$user_table_headers['force_active'] = Users_table_header_link('force_active', __('Forced'), $order_by);
if ($goodie_enabled) {
if ($goodie_tshirt) {
2023-01-27 21:01:23 +01:00
$user_table_headers['got_shirt'] = Users_table_header_link('got_shirt', __('T-Shirt'), $order_by);
$user_table_headers['shirt_size'] = Users_table_header_link('shirt_size', __('Size'), $order_by);
} else {
$user_table_headers['got_shirt'] = Users_table_header_link('got_shirt', __('Goodie'), $order_by);
2023-01-27 21:01:23 +01:00
}
}
$user_table_headers['arrival_date'] = Users_table_header_link(
'planned_arrival_date',
__('Planned arrival'),
$order_by
);
$user_table_headers['departure_date'] = Users_table_header_link(
'planned_departure_date',
__('Planned departure'),
$order_by
);
$user_table_headers['last_login_at'] = Users_table_header_link('last_login_at', __('Last login'), $order_by);
$user_table_headers['actions'] = '';
foreach (config('disabled_user_view_columns') ?? [] as $key) {
unset($user_table_headers[$key]);
}
return page_with_title(__('All users'), [
2017-01-02 15:43:36 +01:00
msg(),
buttons([
button(page_link_to('register'), icon('plus-lg') . __('New user')),
2017-01-02 15:43:36 +01:00
]),
table($user_table_headers, $usersList),
2017-01-02 15:43:36 +01:00
]);
2014-09-28 14:50:08 +02:00
}
2017-01-03 03:22:48 +01:00
/**
* @param string $column
* @param string $label
* @param string $order_by
* @return string
*/
2017-01-02 03:57:23 +01:00
function Users_table_header_link($column, $label, $order_by)
{
2017-08-28 16:21:10 +02:00
return '<a href="'
. page_link_to('users', ['OrderBy' => $column])
. '">'
. $label . ($order_by == $column ? ' <span class="caret"></span>' : '')
. '</a>';
2014-09-28 14:50:08 +02:00
}
2017-01-03 03:22:48 +01:00
/**
2018-10-17 01:30:10 +02:00
* @param User $user
2017-01-03 03:22:48 +01:00
* @return string|false
*/
2017-01-02 03:57:23 +01:00
function User_shift_state_render($user)
{
2018-10-17 01:30:10 +02:00
if (!$user->state->arrived) {
2017-12-24 10:21:52 +01:00
return '';
}
2017-12-25 23:12:52 +01:00
2023-01-03 22:19:03 +01:00
$upcoming_shifts = ShiftEntries_upcoming_for_user($user);
2023-01-18 13:02:11 +01:00
if ($upcoming_shifts->isEmpty()) {
return '<span class="text-success">' . __('Free') . '</span>';
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2023-01-18 13:02:11 +01:00
/** @var ShiftEntry $nextShiftEntry */
$nextShiftEntry = $upcoming_shifts->first();
2023-01-18 13:02:11 +01:00
$start = $nextShiftEntry->shift->start;
$end = $nextShiftEntry->shift->end;
2023-01-03 22:19:03 +01:00
$startFormat = $start->format(__('Y-m-d H:i'));
$endFormat = $end->format(__('Y-m-d H:i'));
$startTimestamp = $start->timestamp;
$endTimestamp = $end->timestamp;
2023-01-03 22:19:03 +01:00
if ($startTimestamp > time()) {
if ($startTimestamp - time() > 3600) {
return '<span class="text-success" title="' . $startFormat . '" data-countdown-ts="' . $startTimestamp . '">'
. __('Next shift %c')
2017-12-25 23:12:52 +01:00
. '</span>';
2017-01-02 03:57:23 +01:00
}
2023-01-03 22:19:03 +01:00
return '<span class="text-warning" title="' . $startFormat . '" data-countdown-ts="' . $startTimestamp . '">'
. __('Next shift %c')
2017-12-25 23:12:52 +01:00
. '</span>';
}
2017-01-02 15:43:36 +01:00
2023-01-03 22:19:03 +01:00
$halfway = ($startTimestamp + $endTimestamp) / 2;
2017-01-02 03:57:23 +01:00
if (time() < $halfway) {
2023-01-03 22:19:03 +01:00
return '<span class="text-danger" title="' . $startFormat . '" data-countdown-ts="' . $startTimestamp . '">'
. __('Shift started %c')
2017-12-25 23:12:52 +01:00
. '</span>';
2017-01-02 03:57:23 +01:00
}
2017-12-25 23:12:52 +01:00
2023-01-03 22:19:03 +01:00
return '<span class="text-danger" title="' . $endFormat . '" data-countdown-ts="' . $endTimestamp . '">'
. __('Shift ends %c')
2017-12-25 23:12:52 +01:00
. '</span>';
2014-08-23 01:55:18 +02:00
}
function User_last_shift_render($user)
{
if (!$user->state->arrived) {
return '';
}
2023-01-03 22:19:03 +01:00
$last_shifts = ShiftEntries_finished_by_user($user);
2023-01-24 17:40:20 +01:00
if ($last_shifts->isEmpty()) {
return '';
}
2023-01-18 13:02:11 +01:00
/** @var ShiftEntry $lastShiftEntry */
$lastShiftEntry = $last_shifts->first();
$end = $lastShiftEntry->shift->end;
2023-01-03 22:19:03 +01:00
return '<span title="' . $end->format(__('Y-m-d H:i')) . '" data-countdown-ts="' . $end->timestamp . '">'
. __('Shift ended %c')
. '</span>';
}
2017-01-03 03:22:48 +01:00
/**
* @param array $needed_angel_type
* @return string
*/
2017-01-02 03:57:23 +01:00
function User_view_shiftentries($needed_angel_type)
{
2022-12-08 13:25:13 +01:00
$shift_info = '<br><b><a href="'
. page_link_to('angeltypes', ['action' => 'view', 'angeltype_id' => $needed_angel_type['id']])
2022-12-08 13:25:13 +01:00
. '">' . $needed_angel_type['name'] . '</a>:</b> ';
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$shift_entries = [];
foreach ($needed_angel_type['users'] as $user_shift) {
$member = User_Nick_render($user_shift);
if ($user_shift['freeloaded']) {
2017-01-03 03:22:48 +01:00
$member = '<del>' . $member . '</del>';
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$shift_entries[] = $member;
}
2017-01-21 19:37:42 +01:00
$shift_info .= join(', ', $shift_entries);
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return $shift_info;
2016-11-18 08:47:52 +01:00
}
/**
* Helper that renders a shift line for user view
2017-01-03 03:22:48 +01:00
*
2023-01-03 22:19:03 +01:00
* @param Shift $shift
2018-10-10 03:10:28 +02:00
* @param User $user_source
2017-01-03 03:22:48 +01:00
* @param bool $its_me
* @return array
2016-11-18 08:47:52 +01:00
*/
2023-01-03 22:19:03 +01:00
function User_view_myshift(Shift $shift, $user_source, $its_me)
2017-01-02 03:57:23 +01:00
{
2023-01-03 22:19:03 +01:00
$shift_info = '<a href="' . shift_link($shift) . '">' . $shift->shiftType->name . '</a>';
if ($shift->title) {
$shift_info .= '<br /><a href="' . shift_link($shift) . '">' . $shift->title . '</a>';
2017-01-02 03:57:23 +01:00
}
2023-01-03 22:19:03 +01:00
foreach ($shift->needed_angeltypes as $needed_angel_type) {
2017-01-02 03:57:23 +01:00
$shift_info .= User_view_shiftentries($needed_angel_type);
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$myshift = [
2022-12-02 23:03:23 +01:00
'date' => icon('calendar-event')
2023-02-04 02:43:47 +01:00
. $shift->start->format(__('Y-m-d')) . '<br>'
2023-01-03 22:19:03 +01:00
. icon('clock-history') . $shift->start->format('H:i')
2017-12-27 13:50:53 +01:00
. ' - '
2023-02-04 02:43:47 +01:00
. $shift->end->format(__('H:i')),
2023-01-03 22:19:03 +01:00
'duration' => sprintf('%.2f', ($shift->end->timestamp - $shift->start->timestamp) / 3600) . '&nbsp;h',
'room' => Room_name_render($shift->room),
2017-01-02 15:43:36 +01:00
'shift_info' => $shift_info,
'comment' => '',
2017-01-02 15:43:36 +01:00
];
2017-12-25 23:12:52 +01:00
if ($its_me) {
2023-01-18 13:02:11 +01:00
$myshift['comment'] = $shift->user_comment;
2017-12-18 11:25:26 +01:00
}
2017-01-02 15:43:36 +01:00
2023-01-03 22:19:03 +01:00
if ($shift->freeloaded) {
2017-12-27 13:50:53 +01:00
$myshift['duration'] = '<p class="text-danger">'
2023-01-03 22:19:03 +01:00
. sprintf('%.2f', -($shift->end->timestamp - $shift->start->timestamp) / 3600 * 2) . '&nbsp;h'
2017-12-27 13:50:53 +01:00
. '</p>';
if (auth()->can('user_shifts_admin')) {
2017-12-25 23:12:52 +01:00
$myshift['comment'] .= '<br />'
2023-01-18 13:02:11 +01:00
. '<p class="text-danger">' . __('Freeloaded') . ': ' . $shift->freeloaded_comment . '</p>';
2017-01-02 03:57:23 +01:00
} else {
$myshift['comment'] .= '<br /><p class="text-danger">' . __('Freeloaded') . '</p>';
2017-01-02 03:57:23 +01:00
}
2016-11-18 08:47:52 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$myshift['actions'] = [
button(shift_link($shift), icon('eye') . __('view'), 'btn-sm'),
2017-01-02 15:43:36 +01:00
];
if ($its_me || auth()->can('user_shifts_admin')) {
2017-01-02 15:43:36 +01:00
$myshift['actions'][] = button(
2023-01-03 22:19:03 +01:00
page_link_to('user_myshifts', ['edit' => $shift->shift_entry_id, 'id' => $user_source->id]),
2022-12-02 23:03:23 +01:00
icon('pencil') . __('edit'),
2021-07-23 01:52:19 +02:00
'btn-sm'
2017-01-02 15:43:36 +01:00
);
2017-01-02 03:57:23 +01:00
}
2023-01-18 13:02:11 +01:00
if (Shift_signout_allowed($shift, (new AngelType())->forceFill(['id' => $shift->angel_type_id]), $user_source->id)) {
2017-01-02 15:43:36 +01:00
$myshift['actions'][] = button(
shift_entry_delete_link($shift),
icon('trash') . __('sign off'),
2021-07-23 01:52:19 +02:00
'btn-sm'
2017-01-02 15:43:36 +01:00
);
2017-01-02 03:57:23 +01:00
}
$myshift['actions'] = table_buttons($myshift['actions']);
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return $myshift;
2016-11-18 08:47:52 +01:00
}
/**
* Helper that prepares the shift table for user view
2017-01-03 03:22:48 +01:00
*
2023-01-03 22:19:03 +01:00
* @param Shift[]|Collection $shifts
2020-09-12 19:45:25 +02:00
* @param User $user_source
* @param bool $its_me
* @param int $tshirt_score
* @param bool $tshirt_admin
* @param Worklog[]|Collection $user_worklogs
* @param bool $admin_user_worklog_privilege
*
2017-01-03 03:22:48 +01:00
* @return array
2016-11-18 08:47:52 +01:00
*/
2018-01-14 18:09:34 +01:00
function User_view_myshifts(
$shifts,
$user_source,
$its_me,
$tshirt_score,
$tshirt_admin,
$user_worklogs,
$admin_user_worklog_privilege
) {
$goodie = GoodieType::from(config('goodie_type'));
$goodie_enabled = $goodie !== GoodieType::None;
$goodie_tshirt = $goodie === GoodieType::Tshirt;
2017-01-02 03:57:23 +01:00
$myshifts_table = [];
$timeSum = 0;
2017-01-02 03:57:23 +01:00
foreach ($shifts as $shift) {
2023-01-03 22:19:03 +01:00
$key = $shift->start->timestamp . '-shift-' . $shift->shift_entry_id . $shift->id;
$myshifts_table[$key] = User_view_myshift($shift, $user_source, $its_me);
2017-01-02 15:43:36 +01:00
2023-01-03 22:19:03 +01:00
if (!$shift->freeloaded) {
$timeSum += ($shift->end->timestamp - $shift->start->timestamp);
2017-01-02 03:57:23 +01:00
}
}
2017-01-02 15:43:36 +01:00
2018-01-14 18:09:34 +01:00
if ($its_me || $admin_user_worklog_privilege) {
foreach ($user_worklogs as $worklog) {
2020-09-12 19:45:25 +02:00
$key = $worklog->worked_at->timestamp . '-worklog-' . $worklog->id;
$myshifts_table[$key] = User_view_worklog($worklog, $admin_user_worklog_privilege);
2020-09-12 19:45:25 +02:00
$timeSum += $worklog->hours * 3600;
2017-12-29 17:19:27 +01:00
}
}
2017-01-02 03:57:23 +01:00
if (count($myshifts_table) > 0) {
2017-12-29 18:57:11 +01:00
ksort($myshifts_table);
2017-01-02 03:57:23 +01:00
$myshifts_table[] = [
'date' => '<b>' . __('Sum:') . '</b>',
'duration' => '<b>' . sprintf('%.2f', round($timeSum / 3600, 2)) . '&nbsp;h</b>',
2017-01-03 14:12:17 +01:00
'room' => '',
'shift_info' => '',
'comment' => '',
'actions' => '',
2017-01-02 15:43:36 +01:00
];
if ($goodie_enabled && ($its_me || $tshirt_admin)) {
$myshifts_table[] = [
'date' => '<b>' . ($goodie_tshirt ? __('Your t-shirt score') : __('Your goodie score')) . '&trade;:</b>',
2017-12-30 12:07:10 +01:00
'duration' => '<b>' . $tshirt_score . '</b>',
'room' => '',
'shift_info' => '',
'comment' => '',
'actions' => '',
];
}
2017-01-02 03:57:23 +01:00
}
return $myshifts_table;
2016-11-18 08:47:52 +01:00
}
2017-12-29 17:19:27 +01:00
/**
* Renders table entry for user work log
2018-01-14 18:09:34 +01:00
*
2020-09-12 19:45:25 +02:00
* @param Worklog $worklog
* @param bool $admin_user_worklog_privilege
2018-01-14 18:09:34 +01:00
* @return array
2017-12-29 17:19:27 +01:00
*/
2020-09-12 19:45:25 +02:00
function User_view_worklog(Worklog $worklog, $admin_user_worklog_privilege)
2018-01-14 18:09:34 +01:00
{
2017-12-29 17:19:27 +01:00
$actions = '';
2018-01-14 18:09:34 +01:00
if ($admin_user_worklog_privilege) {
2017-12-29 17:19:27 +01:00
$actions = table_buttons([
button(
2022-12-08 17:40:24 +01:00
url('/admin/user/' . $worklog->user->id . '/worklog/' . $worklog->id),
2022-12-02 23:03:23 +01:00
icon('pencil') . __('edit'),
2021-07-23 01:52:19 +02:00
'btn-sm'
2017-12-29 17:19:27 +01:00
),
button(
2022-12-08 17:40:24 +01:00
url('/admin/user/' . $worklog->user->id . '/worklog/' . $worklog->id . '/delete'),
icon('trash') . __('delete'),
2021-07-23 01:52:19 +02:00
'btn-sm'
),
2017-12-29 17:19:27 +01:00
]);
}
2018-01-14 17:47:26 +01:00
2017-12-29 17:19:27 +01:00
return [
2023-02-04 02:43:47 +01:00
'date' => icon('calendar-event') . date(__('Y-m-d'), $worklog->worked_at->timestamp),
2020-09-12 19:45:25 +02:00
'duration' => sprintf('%.2f', $worklog->hours) . ' h',
2017-12-29 17:19:27 +01:00
'room' => '',
'shift_info' => __('Work log entry'),
2020-09-12 19:45:25 +02:00
'comment' => $worklog->comment . '<br>'
2018-01-14 18:09:34 +01:00
. sprintf(
__('Added by %s at %s'),
2020-09-12 19:45:25 +02:00
User_Nick_render($worklog->creator),
2023-02-04 02:43:47 +01:00
$worklog->created_at->format(__('Y-m-d H:i'))
2018-01-14 18:09:34 +01:00
),
'actions' => $actions,
2017-12-29 17:19:27 +01:00
];
}
2016-11-18 08:47:52 +01:00
/**
* Renders view for a single user
2017-01-03 03:22:48 +01:00
*
2020-09-12 19:45:25 +02:00
* @param User $user_source
* @param bool $admin_user_privilege
* @param bool $freeloader
2022-12-03 00:57:04 +01:00
* @param AngelType[] $user_angeltypes
* @param Group[] $user_groups
2023-01-03 22:19:03 +01:00
* @param Shift[]|Collection $shifts
2020-09-12 19:45:25 +02:00
* @param bool $its_me
* @param int $tshirt_score
* @param bool $tshirt_admin
* @param bool $admin_user_worklog_privilege
* @param Worklog[]|Collection $user_worklogs
*
2017-01-03 03:22:48 +01:00
* @return string
2016-11-18 08:47:52 +01:00
*/
2017-12-27 13:50:53 +01:00
function User_view(
$user_source,
$admin_user_privilege,
$freeloader,
$user_angeltypes,
$user_groups,
$shifts,
$its_me,
$tshirt_score,
2017-12-29 17:19:27 +01:00
$tshirt_admin,
$admin_user_worklog_privilege,
$user_worklogs
2017-12-27 13:50:53 +01:00
) {
$goodie = GoodieType::from(config('goodie_type'));
$goodie_enabled = $goodie !== GoodieType::None;
$goodie_tshirt = $goodie === GoodieType::Tshirt;
$auth = auth();
2018-09-17 12:33:15 +02:00
$nightShiftsConfig = config('night_shifts');
2018-10-10 03:10:28 +02:00
$user_name = htmlspecialchars(
$user_source->personalData->first_name
) . ' ' . htmlspecialchars($user_source->personalData->last_name);
2017-12-29 13:18:28 +01:00
$myshifts_table = '';
2018-01-14 18:09:34 +01:00
if ($its_me || $admin_user_privilege) {
$my_shifts = User_view_myshifts(
$shifts,
$user_source,
$its_me,
$tshirt_score,
$tshirt_admin,
$user_worklogs,
$admin_user_worklog_privilege
);
if (count($my_shifts) > 0) {
$myshifts_table = div('table-responsive', table([
'date' => __('Day &amp; time'),
'duration' => __('Duration'),
'room' => __('Location'),
'shift_info' => __('Name &amp; workmates'),
'comment' => __('Comment'),
'actions' => __('Action'),
], $my_shifts));
2018-10-10 03:10:28 +02:00
} elseif ($user_source->state->force_active) {
2021-12-30 20:26:46 +01:00
$myshifts_table = success(__('You have done enough.'), true);
2017-12-29 13:18:28 +01:00
}
}
2017-01-02 15:43:36 +01:00
$needs_drivers_license = false;
foreach ($user_angeltypes as $angeltype) {
2022-12-03 00:57:04 +01:00
$needs_drivers_license = $needs_drivers_license || $angeltype->requires_driver_license;
}
2017-01-02 15:43:36 +01:00
return page_with_title(
2017-12-25 23:12:52 +01:00
'<span class="icon-icon_angel"></span> '
2019-12-26 19:07:51 +01:00
. (
2023-01-18 13:02:11 +01:00
(config('enable_pronoun') && $user_source->personalData->pronoun)
2019-12-26 19:07:51 +01:00
? '<small>' . htmlspecialchars($user_source->personalData->pronoun) . '</small> '
: ''
2020-05-13 18:26:32 +02:00
)
2018-10-10 03:10:28 +02:00
. htmlspecialchars($user_source->name)
. (config('enable_user_name') ? ' <small>' . $user_name . '</small>' : ''),
2017-01-02 15:43:36 +01:00
[
2023-02-02 22:53:51 +01:00
msg(),
2021-09-10 14:30:16 +02:00
div('row', [
2017-01-02 15:43:36 +01:00
div('col-md-12', [
table_buttons([
$auth->can('user.edit.shirt') && $goodie_enabled ? button(
url('/admin/user/' . $user_source->id . '/goodie'),
icon('person') . ($goodie_tshirt ? __('Shirt') : __('Goodie'))
2021-09-24 20:28:51 +02:00
) : '',
2017-01-02 15:43:36 +01:00
$admin_user_privilege ? button(
2018-10-10 03:10:28 +02:00
page_link_to('admin_user', ['id' => $user_source->id]),
2022-12-02 23:03:23 +01:00
icon('pencil') . __('edit')
2017-01-02 15:43:36 +01:00
) : '',
$admin_user_privilege || ($its_me && $needs_drivers_license) ? button(
2017-01-02 15:43:36 +01:00
user_driver_license_edit_link($user_source),
2022-12-02 23:03:23 +01:00
icon('person-vcard') . __('driving license')
2017-01-02 15:43:36 +01:00
) : '',
(($admin_user_privilege || $auth->can('admin_arrive')) && !$user_source->state->arrived) ?
form([
form_hidden('action', 'arrived'),
form_hidden('user', $user_source->id),
form_submit('submit', __('arrived'), '', false),
], page_link_to('admin_arrive'), true) : '',
($admin_user_privilege || $auth->can('voucher.edit')) && config('enable_voucher') ?
button(
page_link_to(
'users',
['action' => 'edit_vouchers', 'user_id' => $user_source->id]
),
2022-12-02 23:03:23 +01:00
icon('valentine') . __('Vouchers')
)
2023-01-18 13:02:11 +01:00
: '',
2017-12-29 17:19:27 +01:00
$admin_user_worklog_privilege ? button(
2022-12-08 17:40:24 +01:00
url('/admin/user/' . $user_source->id . '/worklog'),
2022-12-02 23:03:23 +01:00
icon('clock-history') . __('worklog.add')
2017-12-29 17:19:27 +01:00
) : '',
], 'mb-2'),
$its_me ? table_buttons([
button(
page_link_to('settings/profile'),
2022-12-02 23:03:23 +01:00
icon('person-fill-gear') . __('Settings')
),
$auth->can('ical') ? button(
2018-10-10 03:10:28 +02:00
page_link_to('ical', ['key' => $user_source->api_key]),
2022-12-02 23:03:23 +01:00
icon('calendar-week') . __('iCal Export')
2017-01-02 15:43:36 +01:00
) : '',
$auth->can('shifts_json_export') ? button(
2018-10-10 03:10:28 +02:00
page_link_to('shifts_json_export', ['key' => $user_source->api_key]),
2022-12-02 23:03:23 +01:00
icon('braces') . __('JSON Export')
2017-01-02 15:43:36 +01:00
) : '',
(
$auth->can('shifts_json_export')
|| $auth->can('ical')
|| $auth->can('atom')
) ? button(
page_link_to('user_myshifts', ['reset' => 1]),
icon('arrow-repeat') . __('Reset API key')
) : '',
], 'mb-2') : '',
]),
2017-01-02 15:43:36 +01:00
]),
2021-12-27 21:49:07 +01:00
div('row user-info', [
div('col-md-2', [
config('enable_dect') && $user_source->contact->dect ?
2022-06-10 19:11:33 +02:00
heading(
icon('phone')
. ' <a href="tel:' . $user_source->contact->dect . '">'
. $user_source->contact->dect
. '</a>'
2022-06-10 19:11:33 +02:00
)
2023-01-18 13:02:11 +01:00
: '',
config('enable_mobile_show') && $user_source->contact->mobile ?
$user_source->settings->mobile_show ?
heading(
icon('phone')
. ' <a href="tel:' . $user_source->contact->mobile . '">'
. $user_source->contact->mobile
. '</a>'
)
2023-01-18 13:02:11 +01:00
: ''
: '',
2022-06-10 19:11:33 +02:00
$auth->can('user_messages') ?
heading(
'<a href="' . page_link_to('/messages/' . $user_source->id) . '">'
. icon('envelope')
. '</a>'
2022-06-10 19:11:33 +02:00
)
2023-01-18 13:02:11 +01:00
: '',
]),
2017-12-24 10:48:04 +01:00
User_view_state($admin_user_privilege, $freeloader, $user_source),
User_angeltypes_render($user_angeltypes),
User_groups_render($user_groups),
$admin_user_privilege ? User_oauth_render($user_source) : '',
2017-01-02 15:43:36 +01:00
]),
($its_me || $admin_user_privilege) ? '<h2>' . __('Shifts') . '</h2>' : '',
2017-12-29 13:18:28 +01:00
$myshifts_table,
($its_me && $nightShiftsConfig['enabled'] && $goodie_enabled) ? info(
2021-07-24 21:08:04 +02:00
icon('info-circle') . sprintf(
2018-09-17 12:33:15 +02:00
__('Your night shifts between %d and %d am count twice.'),
$nightShiftsConfig['start'],
$nightShiftsConfig['end']
),
2017-12-25 23:12:52 +01:00
true
) : '',
2017-01-02 15:43:36 +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)
2017-12-26 20:41:35 +01:00
: '',
$its_me ? ical_hint() : '',
2017-01-03 03:22:48 +01:00
]
);
2014-08-22 22:34:13 +02:00
}
2017-12-24 10:21:52 +01:00
/**
2017-12-25 23:12:52 +01:00
* Render the state section of user view
*
2018-10-10 03:10:28 +02:00
* @param bool $admin_user_privilege
* @param bool $freeloader
* @param User $user_source
2017-12-25 23:12:52 +01:00
* @return string
2017-12-24 10:21:52 +01:00
*/
2017-12-25 23:12:52 +01:00
function User_view_state($admin_user_privilege, $freeloader, $user_source)
{
if ($admin_user_privilege) {
2017-12-24 10:48:04 +01:00
$state = User_view_state_admin($freeloader, $user_source);
} else {
$state = User_view_state_user($user_source);
}
return div('col-md-2', [
heading(__('User state'), 4),
join('<br>', $state),
2017-12-24 10:48:04 +01:00
]);
}
/**
* Render the state section of user view for users.
2017-12-25 23:12:52 +01:00
*
2018-10-10 03:10:28 +02:00
* @param User $user_source
2017-12-25 23:12:52 +01:00
* @return array
2017-12-24 10:48:04 +01:00
*/
2017-12-25 23:12:52 +01:00
function User_view_state_user($user_source)
{
2017-12-24 10:21:52 +01:00
$state = [
User_shift_state_render($user_source),
2017-12-24 10:21:52 +01:00
];
2017-12-25 23:12:52 +01:00
2018-10-10 03:10:28 +02:00
if ($user_source->state->arrived) {
$state[] = '<span class="text-success">' . icon('house') . __('Arrived') . '</span>';
2017-12-24 10:48:04 +01:00
} else {
$state[] = '<span class="text-danger">' . __('Not arrived') . '</span>';
2017-12-24 10:48:04 +01:00
}
2017-12-25 23:12:52 +01:00
2017-12-24 10:48:04 +01:00
return $state;
}
/**
* Render the state section of user view for admins.
2017-12-25 23:12:52 +01:00
*
2018-10-10 03:10:28 +02:00
* @param bool $freeloader
* @param User $user_source
2017-12-25 23:12:52 +01:00
* @return array
2017-12-24 10:48:04 +01:00
*/
2017-12-25 23:12:52 +01:00
function User_view_state_admin($freeloader, $user_source)
{
2017-12-24 10:48:04 +01:00
$state = [];
$goodie = GoodieType::from(config('goodie_type'));
$goodie_enabled = $goodie !== GoodieType::None;
$goodie_tshirt = $goodie === GoodieType::Tshirt;
2017-12-25 23:12:52 +01:00
if ($freeloader) {
$state[] = '<span class="text-danger">' . icon('exclamation-circle') . __('Freeloader') . '</span>';
2017-12-24 10:21:52 +01:00
}
2017-12-25 23:12:52 +01:00
2017-12-24 10:21:52 +01:00
$state[] = User_shift_state_render($user_source);
2017-12-25 23:12:52 +01:00
2018-10-10 03:10:28 +02:00
if ($user_source->state->arrived) {
$state[] = '<span class="text-success">' . icon('house')
2018-10-10 03:10:28 +02:00
. sprintf(
__('Arrived at %s'),
2023-02-04 02:43:47 +01:00
$user_source->state->arrival_date ? $user_source->state->arrival_date->format(__('Y-m-d')) : ''
2018-10-10 03:10:28 +02:00
)
2017-12-24 10:48:04 +01:00
. '</span>';
2018-10-10 03:10:28 +02:00
if ($user_source->state->force_active) {
$state[] = '<span class="text-success">' . __('Active (forced)') . '</span>';
2018-10-10 03:10:28 +02:00
} elseif ($user_source->state->active) {
$state[] = '<span class="text-success">' . __('Active') . '</span>';
2017-12-24 10:21:52 +01:00
}
if ($user_source->state->got_shirt && $goodie_enabled) {
$state[] = '<span class="text-success">' . ($goodie_tshirt ? __('T-Shirt') : __('Goodie')) . '</span>';
2017-12-24 10:21:52 +01:00
}
2017-12-24 10:48:04 +01:00
} else {
2018-10-10 03:10:28 +02:00
$arrivalDate = $user_source->personalData->planned_arrival_date;
2017-12-24 10:48:04 +01:00
$state[] = '<span class="text-danger">'
2020-09-21 22:47:14 +02:00
. ($arrivalDate ? sprintf(
2018-10-10 03:10:28 +02:00
__('Not arrived (Planned: %s)'),
2023-02-04 02:43:47 +01:00
$arrivalDate->format(__('Y-m-d'))
2020-09-21 22:47:14 +02:00
) : __('Not arrived'))
2017-12-24 10:48:04 +01:00
. '</span>';
2017-12-24 10:21:52 +01:00
}
2017-12-25 23:12:52 +01:00
if (config('enable_voucher')) {
$voucherCount = $user_source->state->got_voucher;
$availableCount = $voucherCount + User_get_eligable_voucher_count($user_source);
$availableCount = max($voucherCount, $availableCount);
if ($user_source->state->got_voucher > 0) {
$state[] = '<span class="text-success">'
. icon('valentine')
. __('Got %s of %s vouchers', [$voucherCount, $availableCount])
. '</span>';
} else {
$state[] = '<span class="text-danger">'
. __('Got no vouchers')
. ($availableCount ? ' (' . __('out of %s', [$availableCount]) . ')' : '')
. '</span>';
}
2017-12-24 10:21:52 +01:00
}
2017-12-24 10:48:04 +01:00
return $state;
2017-12-24 10:21:52 +01:00
}
2017-01-03 03:22:48 +01:00
/**
2022-12-03 00:57:04 +01:00
* @param AngelType[] $user_angeltypes
2017-01-03 03:22:48 +01:00
* @return string
*/
2017-01-02 03:57:23 +01:00
function User_angeltypes_render($user_angeltypes)
{
$output = [];
foreach ($user_angeltypes as $angeltype) {
2017-01-03 03:22:48 +01:00
$class = 'text-success';
2022-12-03 00:57:04 +01:00
if ($angeltype->restricted && !$angeltype->pivot->confirm_user_id) {
2017-01-03 03:22:48 +01:00
$class = 'text-warning';
2017-01-02 03:57:23 +01:00
}
2022-12-03 00:57:04 +01:00
$output[] = '<a href="' . angeltype_link($angeltype->id) . '" class="' . $class . '">'
. ($angeltype->pivot->supporter ? icon('patch-check') : '') . $angeltype->name
2017-01-03 14:12:17 +01:00
. '</a>';
}
return div('col-md-2', [
heading(__('Angeltypes'), 4),
join('<br>', $output),
2017-12-24 10:48:04 +01:00
]);
2014-08-23 01:55:18 +02:00
}
2017-01-03 03:22:48 +01:00
/**
* @param Group[] $user_groups
2017-01-03 03:22:48 +01:00
* @return string
*/
2017-01-02 03:57:23 +01:00
function User_groups_render($user_groups)
{
$output = [];
foreach ($user_groups as $group) {
$output[] = __($group->name);
2017-01-02 03:57:23 +01:00
}
2017-12-24 10:48:04 +01:00
return div('col-md-2', [
'<h4>' . __('Rights') . '</h4>',
join('<br>', $output),
2017-12-24 10:48:04 +01:00
]);
2014-08-23 01:55:18 +02:00
}
/**
* @param User $user
* @return string
*/
function User_oauth_render(User $user)
{
$config = config('oauth');
$output = [];
foreach ($user->oauth as $oauth) {
$output[] = __(
isset($config[$oauth->provider]['name'])
2023-01-18 13:02:11 +01:00
? $config[$oauth->provider]['name']
: Str::ucfirst($oauth->provider)
);
}
if (!$output) {
return '';
}
return div('col-md-2', [
heading(__('OAuth'), 4),
join('<br>', $output),
]);
}
/**
* Render a user nickname.
2013-12-26 13:34:48 +01:00
*
2018-10-09 21:47:31 +02:00
* @param array|User $user
2019-05-31 04:03:19 +02:00
* @param bool $plain
* @return string
*/
2019-05-31 04:03:19 +02:00
function User_Nick_render($user, $plain = false)
2017-01-02 03:57:23 +01:00
{
2018-10-17 01:30:10 +02:00
if (is_array($user)) {
$user = (new User())->forceFill($user);
2018-10-09 21:47:31 +02:00
}
2019-05-31 04:03:19 +02:00
if ($plain) {
return sprintf('%s (%u)', $user->displayName, $user->id);
2019-05-31 04:03:19 +02:00
}
return render_profile_link(
'<span class="icon-icon_angel"></span> ' . htmlspecialchars($user->displayName) . '</a>',
2018-10-17 01:30:10 +02:00
$user->id,
($user->state->arrived ? '' : 'text-muted')
);
}
2019-12-26 19:07:51 +01:00
/**
* Format the user pronoun
*
* @param User $user
* @return string
*/
function User_Pronoun_render(User $user): string
{
if (!config('enable_pronoun') || !$user->personalData->pronoun) {
return '';
}
return ' (' . htmlspecialchars($user->personalData->pronoun) . ')';
}
/**
* @param string $text
* @param int $user_id
* @param string $class
* @return string
*/
function render_profile_link($text, $user_id = null, $class = '')
{
$profile_link = page_link_to('settings/profile');
if (!is_null($user_id)) {
$profile_link = page_link_to('users', ['action' => 'view', 'user_id' => $user_id]);
}
return sprintf(
'<a class="%s" href="%s">%s</a>',
$class,
$profile_link,
$text
);
}
2017-01-03 03:22:48 +01:00
/**
* @return string|null
*/
2017-01-02 03:57:23 +01:00
function render_user_departure_date_hint()
{
if (config('enable_planned_arrival') && !auth()->user()->personalData->planned_departure_date) {
$text = __('Please enter your planned date of departure on your settings page to give us a feeling for teardown capacities.');
2021-07-24 12:38:23 +02:00
return render_profile_link($text, null, 'text-danger');
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return null;
2016-11-15 16:28:20 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* @return string|null
*/
2017-01-02 03:57:23 +01:00
function render_user_freeloader_hint()
{
2023-01-18 13:02:11 +01:00
if (auth()->user()->isFreeloader()) {
2017-01-02 15:43:36 +01:00
return sprintf(
__('You freeloaded at least %s shifts. Shift signup is locked. Please go to heavens desk to be unlocked again.'),
config('max_freeloadable_shifts')
2017-01-02 15:43:36 +01:00
);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return null;
2016-11-15 16:28:20 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* Hinweis für Engel, die noch nicht angekommen sind
*
* @return string|null
*/
2017-01-02 03:57:23 +01:00
function render_user_arrived_hint()
{
2018-10-17 01:30:10 +02:00
if (!auth()->user()->state->arrived) {
/** @var Carbon $buildup */
$buildup = config('buildup_start');
if (!empty($buildup) && $buildup->lessThan(new Carbon())) {
return __('You are not marked as arrived. Please go to heaven\'s desk, get your angel badge and/or tell them that you arrived already.');
}
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return null;
2016-11-15 16:28:20 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* @return string|null
*/
2017-01-02 03:57:23 +01:00
function render_user_tshirt_hint()
{
$goodie = GoodieType::from(config('goodie_type'));
$goodie_tshirt = $goodie === GoodieType::Tshirt;
if ($goodie_tshirt && !auth()->user()->personalData->shirt_size) {
$text = __('You need to specify a tshirt size in your settings!');
2021-07-24 12:38:23 +02:00
return render_profile_link($text, null, 'text-danger');
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return null;
2016-11-15 16:28:20 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* @return string|null
*/
2017-01-02 03:57:23 +01:00
function render_user_dect_hint()
{
2018-10-09 21:47:31 +02:00
$user = auth()->user();
if ($user->state->arrived && config('enable_dect') && !$user->contact->dect) {
$text = __('You need to specify a DECT phone number in your settings! If you don\'t have a DECT phone, just enter \'-\'.');
2021-07-24 12:38:23 +02:00
return render_profile_link($text, null, 'text-danger');
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return null;
2016-11-15 16:28:20 +01:00
}