-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathActionController.php
More file actions
91 lines (78 loc) · 2.33 KB
/
ActionController.php
File metadata and controls
91 lines (78 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter Shield.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Shield\Controllers;
use App\Controllers\BaseController;
use CodeIgniter\Exceptions\PageNotFoundException;
use CodeIgniter\HTTP\Response;
use CodeIgniter\Shield\Authentication\Actions\ActionInterface;
use CodeIgniter\Shield\Authentication\Authenticators\Session;
/**
* Class ActionController
*
* A generic controller to handle Authentication Actions.
*/
class ActionController extends BaseController
{
protected ?ActionInterface $action = null;
/**
* Perform an initial check if we have a valid action or not.
*
* @param list<string> $params
*
* @return Response|string
*/
public function _remap(string $method, ...$params)
{
/** @var Session $authenticator */
$authenticator = auth('session')->getAuthenticator();
// Grab our action instance if one has been set.
$this->action = $authenticator->getAction();
if (! $this->action instanceof ActionInterface) {
throw new PageNotFoundException();
}
return $this->{$method}(...$params);
}
/**
* Shows the initial screen to the user to start the flow.
* This might be asking for the user's email to reset a password,
* or asking for a cell-number for a 2FA.
*
* @return Response|string
*/
public function show()
{
return $this->action->show();
}
/**
* Processes the form that was displayed in the previous form.
*
* @return Response|string
*/
public function handle()
{
return $this->action->handle($this->request);
}
/**
* This handles the response after the user takes action
* in response to the show/handle flow. This might be
* from clicking the 'confirm my email' action or
* following entering a code sent in an SMS.
*
* @return Response|string
*/
public function verify()
{
if ($this->request->getUserAgent()->isRobot()) {
throw PageNotFoundException::forPageNotFound();
}
return $this->action->verify($this->request);
}
}