Download the PHP package dilsonjlrjr/slim3-auth without Composer
On this page you can find all versions of the php package dilsonjlrjr/slim3-auth. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package slim3-auth
slim3-auth
Module Auth Slim 3
Installation:
You can install the library directly from composer / packagist:
$ composer require "dilsonjlrjr/slim3-auth"
Dependencies:
- Slim Session
- PHP 7
Usage:
The slim3 -auth uses three components in your authentication process:
- Adapter
- AuthResponse
- FacadeAuth
Adapters:
The adaptares are responsible for defining the authentication rules. Every adapter implements AuthAdapterInterface interface and uses its constructor as input. All adapter should return a type AuthResponse object. Below an adapter instance.
use SlimAuth\AuthResponse; use SlimAuth\AuthAdapterInterface; class AuthTestAdapter implements AuthAdapterInterface { private $username; private $password; /** * AuthTestAdapter constructor. * Data entry * @param string $username * @param string $password */ public function __construct(string $username, string $password) { $this->username = $username; $this->password = $password; } function authenticate() : AuthResponse { if ($this->username == 'username' && $this->password == 'password') { return new AuthResponse(AuthResponse::AUTHRESPONSE_SUCCESS, 'User auth success', 'Slim3Auth', [ 'id' => 1010 ]); } return new AuthResponse(AuthResponse::AUTHRESPONSE_FAILURE, 'Failure'); } }
Adapters - Methods
authenticate
Define:
Authenticates according to the rules defined in the implemented class
Params:
no params;
Return:
SlimAuth\AuthResponse
AuthResponse
The AuthResponse class indicates the result of the authentication process. It has constants that define states, AUTHRESPONSE_SUCCESS (Successful authentication), AUTHRESPONSE_FAILURE (Authentication failed).
AuthResponse - Methods
__construct
Define:
Set message result autenticate
Params:
$code [int] - AUTHRESPONSE_SUCCESS or AUTHRESPONSE_FAILURE;
$message [string] - Defined user. Message result authentication;
$keyAttributeSession [string] - Key used for session rescue;
$attributesSession [array] - Array with attributes session;
Return:
no returns;
setMessage
Define:
Set message result autenticate
Params:
$code [int] - AUTHRESPONSE_SUCCESS or AUTHRESPONSE_FAILURE;
$message [string] - Defined user. Message result authentication;
$keyAttributeSession [string] - Key used for session rescue;
$attributesSession [array] - Array with attributes session;
Return:
no returns;
getMessage
Define:
Get array message
Params:
no params;
Return:
no returns;
Example:
[
$code, [int]
$message, [string]
$keyAttributeSession, [string]
$attributesSession, [array]
]
FacadeAuth:
This facade runs an adapter set in advance and stored in session attributes set by the adapter.
FacadeAuth - Methods
__construct
Define:
The class constructor
Params:
$authAdapter [SlimAuth\AuthAdapterInterface] - implemented adapter interface SlimAuth\AuthAdapterInterface;
$session [RKA\Session] - Stored Session
Return:
no returns;
auth
Define:
Auth method
Params:
no params;
Return:
no returns;
isValid
Define:
It indicates whether the authentication was valid
Params:
no params;
Return:
boolean;
Contact:
Email: [email protected]