feat: distinguish error and info feedbacks

This commit is contained in:
Björn Fromme
2025-03-24 16:30:21 +01:00
parent 1498bdb53b
commit c8d8c62ff8
3 changed files with 13 additions and 14 deletions
+2 -7
View File
@@ -13,13 +13,8 @@ class Notification
public ?int $code;
public ?string $message;
public function isSuccessful(): bool
public function isError(): bool
{
// Successful responses don't carry codes and messages
if (null === $this->code && null === $this->message) {
return true;
}
return 650 === $this->code && false === stripos($this->message, 'fehler');
return 650 !== $this->code;
}
}
+7 -3
View File
@@ -94,9 +94,13 @@ class EditController extends AbstractController
'email' => $bpnUser->getEmail(),
'booking_id' => $id,
]);
if ($response instanceof Notification && false === $response->isSuccessful()) {
$this->addFlash('error', $response->message);
$this->logger->error('Error initiating booking update', [
if ($response instanceof Notification) {
if (true === $response->isError()) {
$this->addFlash('error', $response->message);
} else {
$this->addFlash('info', $response->message);
}
$this->logger->error('Booking update not successful', [
'email' => $bpnUser->getEmail(),
'booking_id' => $id,
'message' => $response->message,
+4 -4
View File
@@ -34,10 +34,10 @@ class RegistrationController extends AbstractController
if ($form->isSubmitted() && $form->isValid()) {
try {
$response = $this->apiClient->register($registrationData);
if ($response->isSuccessful()) {
$this->addFlash('success', 'Du erhältst in Kürze eine E-Mail mit einem Link zum (Zurück)setzen deines Passworts.');
} else {
if (true === $response->isError()) {
$this->addFlash('error', 'Möglicherweise bist du bereits registriert. Bitte setze dein Passwort zurück.');
} else {
$this->addFlash('success', 'Du erhältst in Kürze eine E-Mail mit einem Link zum (Zurück)setzen deines Passworts.');
}
$this->logger->info('Initiated registration', [
'email' => $registrationData->email,
@@ -57,4 +57,4 @@ class RegistrationController extends AbstractController
'form' => $form->createView(),
]);
}
}
}