41 lines
1.9 KiB
PHP
41 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Controllers;
|
|
|
|
use App\Domains\Event\Actions\ManualCertificateOfConductionCheck\ManualCertificateOfConductionCheckCommand;
|
|
use App\Domains\Event\Actions\ManualCertificateOfConductionCheck\ManualCertificateOfConductionCheckRequest;
|
|
use App\Domains\Event\Actions\ParticipantPayment\ParticipantPaymentCommand;
|
|
use App\Domains\Event\Actions\ParticipantPayment\ParticipantPaymentRequest;
|
|
use App\Models\EventParticipant;
|
|
use App\Scopes\CommonController;
|
|
use Illuminate\Support\Facades\Request;
|
|
|
|
class ParticipantController extends CommonController {
|
|
public function paymentComplete(string $participantIdentifier, Request $request) {
|
|
$participant = $this->eventParticipants->getByIdentifier($participantIdentifier, $this->events, false);
|
|
|
|
$paymentRequest = new ParticipantPaymentRequest($participant, $participant->amount);
|
|
|
|
$paymentCommand = new ParticipantPaymentCommand($paymentRequest);
|
|
$paymentResponse = $paymentCommand->execute();
|
|
|
|
return response()->json([
|
|
'status' => $paymentResponse->success ? 'success' : 'error',
|
|
'message' => $paymentResponse->success ? 'Die Zahlung wurde erfolgreich gebucht.' : 'Beim Buchen der Zahlung ist ein Fehler aufgetreten.'
|
|
]);
|
|
}
|
|
|
|
public function markCocExisting(string $participantIdentifier, Request $request) {
|
|
$participant = $this->eventParticipants->getByIdentifier($participantIdentifier, $this->events, false);
|
|
|
|
$cocRequest = new ManualCertificateOfConductionCheckRequest($participant);
|
|
$cocCommand = new ManualCertificateOfConductionCheckCommand($cocRequest);
|
|
$cocResponse = $cocCommand->execute();
|
|
|
|
return response()->json([
|
|
'status' => $cocResponse->success ? 'success' : 'error',
|
|
'message' => $cocResponse->success ? 'Das eFZ wurde als gültig hinterlegt' : 'Beim Aktualisieren des eFZ-Status ist ein Fehler aufgetreten.'
|
|
]);
|
|
}
|
|
}
|