Skip to content
/ tez Public

Framework agnostic, lightweight regex-based router implementation in PHP with support for reverse URL generation.

License

Notifications You must be signed in to change notification settings

pkdevboxy/tez

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vaibhavpandeyvpz/tez

Framework agnostic, lightweight regex-based router implementation in PHP with support for reverse URL generation.

Build Status

Install

composer require vaibhavpandeyvpz/tez

Routing

$router = new Vaibhav\Tez\Router();

$router->get('/', function ()
{
    return 'Home';
}, 'home');

$router->get('/hello/{name}', function ($name)
{
    return sprintf('Hello %s!', $name);
}, 'hello');

$router->get('/hi/{name}/{num:[0-9]+}', function ($name, $no)
{
    return sprintf('Hi %s. You are no. %d!', $name, $no);
}, 'hi');

$router->group('/group', function ()
{
    /**
     * Group
     *
     * @var $this Vaibhav\Tez\Router
     */
    $this->get('/', function () {}, 'g-home');

    $this->get('/one/{name}', function ($name) { ... }, 'g-one');

    $this->get('/two/{name}', function ($name) { ... }, 'g-two');

    $this->group('/sub', function ()
    {
        /**
         * Nested group
         *
         * @var $this Vaibhav\Tez\Router
         */
        $this->get('/', function () { ... }, 'sg-home');

        $this->get('/one/{name}', function ($name) { ... }, 'sg-one');

        $this->get('/two/{name}', function ($name) { ... }, 'sg-two');
    });
});

Generation

$router = new Vaibhav\Tez\Router();

// Setup routes...

$path = $router->generate('hi', [
    'name' => 'me',
    'no' => 1
]);

Dispatching

$router = new Vaibhav\Tez\Router();

// Setup routes...

$path = isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '/';

$route = $router->match($path);

if ($route !== null) {
    if ($route->allows($_SERVER['REQUEST_METHOD'])) {
        $dispatcher = new Vaibhav\Tez\Dispatcher();
        echo $dispatcher->dispatch($route);
    } else {
        header('HTTP/1.0 405 Method Not Allowed');
    }
} else {
    header('HTTP/1.0 404 Not Found');
}

Dispatching (Controller > Action)

$router = new Vaibhav\Tez\Router();

$router->get('/', 'HomeCtrl#index');

// Setup more routes ...

$path = isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '/';

$route = $router->match($path);

if ($route !== null) {
    if ($route->allows($_SERVER['REQUEST_METHOD'])) {
        $dispatcher = new Vaibhav\Tez\Dispatcher(function ($handler)
        {
            if (is_string($handler) && (strpos($handler, '#') > 0)) {
                list ($controller, $action) = explode('#', $handler);
                return [new $controller(), $action];
            }
        });
        echo $dispatcher->dispatch($route);
    } else {
        header('HTTP/1.0 405 Method Not Allowed');
    }
} else {
    header('HTTP/1.0 404 Not Found');
}

License

See LICENSE.md file.

About

Framework agnostic, lightweight regex-based router implementation in PHP with support for reverse URL generation.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages