An open API service indexing awesome lists of open source software.

https://github.com/workofstan/seablast-auth

Seablast-Auth is a no-password authentication and authorization library for Seablast for PHP apps. It ensures secure user verification and access control, with optional HybridAuth integration for social media sign-ins. Installable via Composer, it activates as needed, equipping your app with essential security features effortlessly.
https://github.com/workofstan/seablast-auth

Last synced: 3 months ago
JSON representation

Seablast-Auth is a no-password authentication and authorization library for Seablast for PHP apps. It ensures secure user verification and access control, with optional HybridAuth integration for social media sign-ins. Installable via Composer, it activates as needed, equipping your app with essential security features effortlessly.

Awesome Lists containing this project

README

        

# `Seablast\Auth`

A no-password authentication and authorization extension for [Seablast for PHP](https://github.com/WorkOfStan/seablast) apps.
This extension facilitates secure user verification and efficient access control.

Optionally, `Seablast\Auth` integrates with the HybridAuth library (actually it's not maintained so other venues must be explored) to support social authentication, allowing seamless sign-in through various social media platforms.
Integrable via Composer, it activates only when required, equipping your app with essential security features effortlessly.
If your Seablast-based application necessitates user authentication or resource authorization, incorporating `Seablast\Auth` will equip it with these capabilities instantly.
(For applications that do not require these features, `Seablast\Auth` can simple be not included to maintain a lighter application footprint.)

## User management

- user MUST have one role (admin, editor, ordinary user)
- user MAY belong to various groups (based on subscription tariff, a promotion, etc.)

## Usage

When just getting the identity of a logged-in user is needed:

```php
// Instantiate the IdentityManager class with `\mysqli`
$identity = new IdentityManager($this->configuration->dbms());
// If prefix is used, inject it
$identity->setTablePrefix($this->configuration->dbmsTablePrefix());
```

To create the expected database table structure, just add the seablast/auth migration path to the phinx.php configuration, e.g.

```php
'paths' => [
'migrations' => [
'%%PHINX_CONFIG_DIR%%/db/migrations',
'%%PHINX_CONFIG_DIR%%/../vendor/seablast/auth/conf/db/migrations',
],
'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds'
],
```

### Routing

`/user` is the default route to the user log-in/log-out page, so configure it within your `conf/app.conf.php` like this:

```php
//->setString(AuthConstant::USER_ROUTE, '/user') // can be changed
->setArrayArrayString(
SeablastConstant::APP_MAPPING,
'/user',
[
'template' => 'user', // your latte template including login-form.latte
'model' => '\Seablast\Auth\UserModel',
]
)
```

Note: already Seablast::v0.2.5 is using the default settings in the [conf/app.conf.php](conf/app.conf.php).

### View

`\Seablast\Auth\UserModel` returns arguments ($configuration, $csrfToken, $message, $showLogin, $showLogout) for the user.latte template:

```latte
{include '../vendor/seablast/auth/views/login-form.latte'}
```

## Testing

Run [./test.sh](./test.sh) for essential PHPUnit tests:

- create token and use it,
- check its disapperance as it's valid only once,
- invalid emails is not accepted,
- SQL injection attempts is not accepted.