2017 © Pedro Peláez
 

library f3-middleware

A middleware router plugin for PHP Fat-Free Framework

image

ikkez/f3-middleware

A middleware router plugin for PHP Fat-Free Framework

  • Wednesday, April 25, 2018
  • by ikkez
  • Repository
  • 3 Watchers
  • 11 Stars
  • 219 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 3 Versions
  • 14 % Grown

The README.md

Middleware, (*1)

Middleware Router

This is a middleware router for PHP Fat-Free-Framework, version 3.x, (*2)

It's based on the F3 core router, that can be called independently before or after the main routing cycle. This can be useful if you want to hook into a group of other routes and want to do something right before processing the main route handler., (*3)

Installation

  • Method 1: use composer composer require ikkez/f3-middleware, (*4)

  • Method 2: copy the middleware.php file into your F3 lib/ directory or another directory that is known to the AUTOLOADER, (*5)

Usage Samples

$f3 = require('lib/base.php');

// imagine you have some admin routes
$f3->route('GET|POST /admin','Controller\Admin->login');
// and these actions should be protected
$f3->route('GET|POST /admin/@action','Controller\Admin->@action');
$f3->route('GET|POST /admin/@action/@type','Controller\Admin->@action');
$f3->route('PUT /admin/upload','Controller\Files->upload');

// so just add a global pre-route to all at once
\Middleware::instance()->before('GET|POST /admin/*', function(\Base $f3, $params, $alias) {
    // do auth checks
});

\Middleware::instance()->run();
$f3->run();

Of course you could also use the beforeroute and afterroute events in your controller to add that auth check functionality. But in case your controller structure isn't ready yet for easy implementation or you have things you strictly want to separate from your controllers, like settings. Here the Middleware Router will aid you., (*6)

// enable the CORS settings only for your API routes:
\Middleware::instance()->before('GET|HEAD|POST|PUT|OPTIONS /api/*', function(\Base $f3) {
    $f3->set('CORS.origin','*');
});

You can also create additional middleware wrappers on other events:, (*7)

$mw = \Middleware::instance();
$mw->on('limit',['GET @v1: /api/v1/*','GET @v2: /api/v2/*'], function($f3,$args,$alias) {
    // do api usage limit checks
    return false;
});

if ($mw->run('limit')) {
    // all good, continue
}else{
    // API limit reached
}

Notice

Although you can probably use the middleware router as a completely stand alone router, it is not a full replacement of the frameworks integrated router. The middleware router does not include handling of route caching, header management or automated CORS support, so use it as an additional component for settings, checks and workload before/after the main routing cycle., (*8)

License

You are allowed to use this plugin under the terms of the GNU General Public License version 3 or later., (*9)

Copyright (C) 2019 Christian Knuth (ikkez), (*10)

The Versions

25/04 2018

dev-master

9999999-dev https://github.com/ikkez/f3-middleware

A middleware router plugin for PHP Fat-Free Framework

  Sources   Download

GPL-3.0

f3 middleware fatfree router

23/04 2017

v1.1.2

1.1.2.0 https://github.com/ikkez/f3-middleware

A middleware router plugin for PHP Fat-Free Framework

  Sources   Download

GPL-3.0

f3 middleware fatfree router

24/01 2017

v1.1.1

1.1.1.0 https://github.com/ikkez/f3-middleware

A middleware router plugin for PHP Fat-Free Framework

  Sources   Download

GPL-3.0

f3 middleware fatfree router