2022-07-31 19:17:44 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Engelsystem\Events\Listener;
|
|
|
|
|
2023-01-03 22:19:03 +01:00
|
|
|
use Carbon\Carbon;
|
2022-07-31 19:17:44 +02:00
|
|
|
use Engelsystem\Helpers\Shifts;
|
|
|
|
use Engelsystem\Mail\EngelsystemMailer;
|
|
|
|
use Engelsystem\Models\Room;
|
|
|
|
use Engelsystem\Models\User\User;
|
|
|
|
use Engelsystem\Models\Worklog;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
use Symfony\Component\Mailer\Exception\TransportException;
|
|
|
|
|
|
|
|
class Shift
|
|
|
|
{
|
|
|
|
public function __construct(
|
2022-12-15 19:57:02 +01:00
|
|
|
protected LoggerInterface $log,
|
|
|
|
protected EngelsystemMailer $mailer
|
2022-07-31 19:17:44 +02:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deletedEntryCreateWorklog(
|
|
|
|
User $user,
|
|
|
|
Carbon $start,
|
|
|
|
Carbon $end,
|
|
|
|
string $name,
|
|
|
|
string $title,
|
|
|
|
string $type,
|
|
|
|
Room $room,
|
|
|
|
bool $freeloaded
|
|
|
|
): void {
|
|
|
|
if ($freeloaded || $start > Carbon::now()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$workLog = new Worklog();
|
|
|
|
$workLog->user()->associate($user);
|
|
|
|
$workLog->creator()->associate(auth()->user());
|
|
|
|
$workLog->worked_at = $start->copy()->startOfDay();
|
|
|
|
$workLog->hours =
|
|
|
|
(($end->timestamp - $start->timestamp) / 60 / 60)
|
|
|
|
* Shifts::getNightShiftMultiplier($start, $end);
|
|
|
|
$workLog->comment = sprintf(
|
2023-02-04 02:43:47 +01:00
|
|
|
__('%s (%s as %s) in %s, %s - %s'),
|
2022-07-31 19:17:44 +02:00
|
|
|
$name,
|
|
|
|
$title,
|
|
|
|
$type,
|
|
|
|
$room->name,
|
2023-02-04 02:43:47 +01:00
|
|
|
$start->format(__('Y-m-d H:i')),
|
|
|
|
$end->format(__('Y-m-d H:i'))
|
2022-07-31 19:17:44 +02:00
|
|
|
);
|
|
|
|
$workLog->save();
|
|
|
|
|
|
|
|
$this->log->info(
|
|
|
|
'Created worklog entry from shift for {user} ({uid}): {worklog})',
|
|
|
|
['user' => $workLog->user->name, 'uid' => $workLog->user->id, 'worklog' => $workLog->comment]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deletedEntrySendEmail(
|
|
|
|
User $user,
|
|
|
|
Carbon $start,
|
|
|
|
Carbon $end,
|
|
|
|
string $name,
|
|
|
|
string $title,
|
|
|
|
string $type,
|
|
|
|
Room $room,
|
|
|
|
bool $freeloaded
|
|
|
|
): void {
|
|
|
|
if (!$user->settings->email_shiftinfo) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$subject = 'notification.shift.deleted';
|
|
|
|
try {
|
|
|
|
$this->mailer->sendViewTranslated(
|
|
|
|
$user,
|
|
|
|
$subject,
|
|
|
|
'emails/worklog-from-shift',
|
|
|
|
[
|
|
|
|
'name' => $name,
|
|
|
|
'title' => $title,
|
|
|
|
'start' => $start,
|
|
|
|
'end' => $end,
|
|
|
|
'room' => $room,
|
|
|
|
'freeloaded' => $freeloaded,
|
|
|
|
'username' => $user->name,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransportException $e) {
|
|
|
|
$this->log->error(
|
|
|
|
'Unable to send email "{title}" to user {user} with {exception}',
|
|
|
|
['title' => $subject, 'user' => $user->name, 'exception' => $e]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|