ikkez / f3-middleware
A middleware router plugin for PHP Fat-Free Framework
Installs: 8 803
Dependents: 3
Suggesters: 2
Security: 0
Stars: 23
Watchers: 5
Forks: 4
Open Issues: 0
This package is auto-updated.
Last update: 2024-11-12 04:33:13 UTC
README
Middleware Router
This is a middleware router for PHP Fat-Free-Framework, version 3.x
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.
Installation
-
Method 1: use composer composer require ikkez/f3-middleware
-
Method 2: copy the
middleware.php
file into your F3lib/
directory or another directory that is known to the AUTOLOADER
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.
// 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:
$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.
License
You are allowed to use this plugin under the terms of the GNU General Public License version 3 or later.
Copyright (C) 2019 Christian Knuth (ikkez)