michalsn / codeigniter-auth0

Basic integration for Auth0 authentication

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CodeIgniter Auth0

Basic integration for Auth0 authentication.

PHPStan PHPCPD Psalm Rector Deptrac

PHP CodeIgniter

Installation

Composer

composer require michalsn/codeigniter-auth0

composer require guzzlehttp/guzzle guzzlehttp/psr7 http-interop/http-factory-guzzle

Manually

In the example below we will assume, that files from this project will be located in app/ThirdParty/auth0 directory.

Download this project and then enable it by editing the app/Config/Autoload.php file and adding the Michalsn\CodeIgniterAuth0 namespace to the $psr4 array, like in the below example:

<?php

namespace Config;

use CodeIgniter\Config\AutoloadConfig;

class Autoload extends AutoloadConfig
{
    // ...
    public $psr4 = [
        APP_NAMESPACE => APPPATH, // For custom app namespace
        'Config'      => APPPATH . 'Config',
        'Michalsn\CodeIgniterAuth0' => APPPATH . 'ThirdParty/auth0/src',
    ];

    // ...

Also add the required helper to the same file under $files array:

    // ...
    public $files = [
        APPPATH . 'ThirdParty/auth0/src/Common.php',
    ];

    // ...

You will still need to install some dependencies:

composer require guzzlehttp/guzzle guzzlehttp/psr7 http-interop/http-factory-guzzle

Database

php spark migrate --all

Config

See what configuration variables can be set by looking at the src/Config/Auth0.php file and use the .env file to set them.

See the getting started article for reference.

Routes

  • login
  • logout
  • callback

Filters

  • auth0Stateful

Commands

To copy config file to the application namespace.

php spark auth0:publish

Helper functions

  • authenticated() will check if current user is authenticated
  • user_id() will return current user ID (database)
  • user() will return current user info (database)
  • auth0_user() will return the Auth0 user array or null

Example

<?php

namespace App\Controllers;

class Home extends BaseController
{
    public function index()
    {
        if (! service('auth0')->isAuthenticated()) {
            return $this->response->setHeader(401)->setBody('401 Unauthorized');
        }

        return view('home/index', $data);
    }
}

About

Basic integration for Auth0 authentication

License:MIT License


Languages

Language:PHP 100.0%