-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathActionInterface.php
More file actions
72 lines (62 loc) · 1.85 KB
/
ActionInterface.php
File metadata and controls
72 lines (62 loc) · 1.85 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
<?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\Authentication\Actions;
use CodeIgniter\HTTP\IncomingRequest;
use CodeIgniter\HTTP\Response;
use CodeIgniter\Shield\Entities\User;
/**
* Interface ActionInterface
*
* Authentication Actions are steps that can happen after
* the main authentication steps, like registration and login.
* They can be email activation steps, SMS-based 2FA, etc.
*/
interface ActionInterface
{
/**
* 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();
/**
* Processes the form that was displayed in the previous form.
*
* @return Response|string
*/
public function handle(IncomingRequest $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(IncomingRequest $request);
/**
* Returns the string type of the action class.
* E.g., 'email_2fa', 'email_activate'.
*/
public function getType(): string;
/**
* Creates an identity for the action of the user.
*
* @return string secret
*/
public function createIdentity(User $user): string;
/**
* Retrieves the action message for the user (e.g. extra)
*/
public function getActionMessage(): string;
}