Initialer Laravel Commit für BetiX
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

This commit is contained in:
2026-04-04 18:01:50 +02:00
commit 0280278978
374 changed files with 65210 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Concerns\ProxiesBackend;
use App\Http\Controllers\Controller;
use App\Services\BackendHttpClient;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class AvailabilityController extends Controller
{
use ProxiesBackend;
public function __construct(private readonly BackendHttpClient $client)
{
}
/**
* Check availability for username or email during registration via upstream API.
*/
public function __invoke(Request $request): JsonResponse
{
$field = $request->query('field');
$value = (string) $request->query('value', '');
if (!in_array($field, ['username', 'email'], true)) {
return response()->json([
'ok' => false,
'error' => 'Unsupported field',
], 422);
}
// Basic format checks to reduce unnecessary upstream calls
if ($field === 'username' && mb_strlen($value) < 3) {
return response()->json(['ok' => true, 'available' => false, 'reason' => 'too_short']);
}
if ($field === 'email' && !filter_var($value, FILTER_VALIDATE_EMAIL)) {
return response()->json(['ok' => true, 'available' => false, 'reason' => 'invalid_format']);
}
try {
$res = $this->client->get($request, '/api/auth/availability', [
'field' => $field,
'value' => $value,
], retry: true);
if ($res->successful()) {
$j = $res->json() ?: [];
// Normalize to { ok: true, available: bool, reason? }
$available = $j['available'] ?? $j['is_available'] ?? null;
if ($available !== null) {
$out = ['ok' => true, 'available' => (bool) $available];
if (isset($j['reason'])) {
$out['reason'] = $j['reason'];
}
return response()->json($out, 200);
}
// Fallback: pass-through
return response()->json($j, 200);
}
if ($res->clientError()) return $this->mapClientError($res);
if ($res->serverError()) return $this->mapServiceUnavailable($res);
return $this->mapBadGateway();
} catch (\Throwable $e) {
return $this->mapBadGateway('API server not reachable');
}
}
}

View File

@@ -0,0 +1,49 @@
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Cache;
use Illuminate\Auth\Events\Verified;
class EmailVerificationCodeController extends Controller
{
/**
* Handle email verification via short code.
*/
public function __invoke(Request $request)
{
$request->validate([
'code' => ['required','string','regex:/^\d{6}$/'],
]);
$user = $request->user();
if (!$user) {
return redirect()->route('login');
}
if ($user->hasVerifiedEmail()) {
return redirect()->route('dashboard')->with('status', 'Email already verified.');
}
$cacheKey = 'email_verify_code:'.$user->getKey();
$expected = Cache::get($cacheKey);
// Normalize submitted code to digits-only string
$submitted = (string) $request->input('code', '');
$submitted = preg_replace('/\D+/', '', $submitted ?? '');
if (!$expected || $expected !== $submitted) {
return back()->withErrors(['code' => 'Invalid or expired verification code.']);
}
// Mark as verified and clear the code
if ($user->markEmailAsVerified()) {
event(new Verified($user));
}
Cache::forget($cacheKey);
return redirect()->route('dashboard')->with('status', 'Email verified successfully.');
}
}