Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
36.36% |
4 / 11 |
|
25.00% |
1 / 4 |
CRAP | |
0.00% |
0 / 1 |
Authentication | |
36.36% |
4 / 11 |
|
25.00% |
1 / 4 |
19.63 | |
0.00% |
0 / 1 |
verifyAuthentication | |
60.00% |
3 / 5 |
|
0.00% |
0 / 1 |
3.58 | |||
currentUser | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
currentSession | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
isThisMe | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
6 |
1 | <?php |
2 | namespace Apie\IntegrationTests\Apie\TypeDemo\Actions; |
3 | |
4 | use Apie\Core\Attributes\Context; |
5 | use Apie\Core\Attributes\Route; |
6 | use Apie\Core\BoundedContext\BoundedContext; |
7 | use Apie\Core\Context\ApieContext; |
8 | use Apie\Core\ContextConstants; |
9 | use Apie\Core\Datalayers\ApieDatalayer; |
10 | use Apie\Core\Entities\EntityInterface; |
11 | use Apie\IntegrationTests\Apie\TypeDemo\Identifiers\UserIdentifier; |
12 | use Apie\IntegrationTests\Apie\TypeDemo\Resources\User; |
13 | use Exception; |
14 | use Symfony\Component\HttpFoundation\Session\SessionInterface; |
15 | |
16 | class Authentication |
17 | { |
18 | public function verifyAuthentication( |
19 | #[Context()] ApieDatalayer $apieDatalayer, |
20 | #[Context()] BoundedContext $boundedContext, |
21 | string $username, |
22 | string $password |
23 | ): ?User { |
24 | try { |
25 | /** @var UserIdentifier @userId */ |
26 | $userId = UserIdentifier::fromNative($username); |
27 | $user = $apieDatalayer->find($userId, $boundedContext->getId()); |
28 | } catch (Exception) { |
29 | return null; |
30 | } |
31 | return $user->verify($password) ? $user : null; |
32 | } |
33 | |
34 | #[Route('/me')] |
35 | #[Route('/profile', target: Route::CMS)] |
36 | public function currentUser(#[Context('authenticated')] ?EntityInterface $currentUser = null): ?EntityInterface |
37 | { |
38 | return $currentUser; |
39 | } |
40 | |
41 | /** |
42 | * @return array<string|int, mixed> |
43 | */ |
44 | public function currentSession(#[Context] SessionInterface $sessionInterface): array |
45 | { |
46 | return $sessionInterface->all(); |
47 | } |
48 | |
49 | public function isThisMe(#[Context] ApieContext $apieContext, UserIdentifier $userId): bool |
50 | { |
51 | $authenticated = $apieContext->getContext(ContextConstants::AUTHENTICATED_USER, false); |
52 | if (!$authenticated) { |
53 | return false; |
54 | } |
55 | return $authenticated->getId()->toNative() === $userId->toNative(); |
56 | } |
57 | } |