Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
36.36% covered (danger)
36.36%
4 / 11
25.00% covered (danger)
25.00%
1 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
Authentication
36.36% covered (danger)
36.36%
4 / 11
25.00% covered (danger)
25.00%
1 / 4
19.63
0.00% covered (danger)
0.00%
0 / 1
 verifyAuthentication
60.00% covered (warning)
60.00%
3 / 5
0.00% covered (danger)
0.00%
0 / 1
3.58
 currentUser
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 currentSession
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 isThisMe
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2namespace Apie\IntegrationTests\Apie\TypeDemo\Actions;
3
4use Apie\Core\Attributes\Context;
5use Apie\Core\Attributes\Route;
6use Apie\Core\BoundedContext\BoundedContext;
7use Apie\Core\Context\ApieContext;
8use Apie\Core\ContextConstants;
9use Apie\Core\Datalayers\ApieDatalayer;
10use Apie\Core\Entities\EntityInterface;
11use Apie\IntegrationTests\Apie\TypeDemo\Identifiers\UserIdentifier;
12use Apie\IntegrationTests\Apie\TypeDemo\Resources\User;
13use Exception;
14use Symfony\Component\HttpFoundation\Session\SessionInterface;
15
16class 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}