button/button

Fast and lightweight router for PHP

dev-master 2014-09-29 18:53 UTC

This package is not auto-updated.

Last update: 2024-05-21 00:56:14 UTC


README

A fast and lightweight PHP 5.4+ nano router. Build API's and RESTful applications with ease. With Button, you can get one or more JSON responses on the same request.

The hello world!

$btn = new Button();
$btn->hook('GET', '/say/hello/:name', function($name){
	return array("greeting" => "Hello ". $name ."!");
});

In the previous example, when you access to /say/hello/john, Button will run the anonymous function and will return the next JSON object:

[
    {"greeting" : "Hello john!"}
]
  1. Requirements
  2. Installation
    1. Composer install
    2. Clone Repo
    3. Download Copy
  3. Usage
    1. Parameters
  4. Features
    1. The routes
      1. Simple routing
      2. Routing parameters
      3. Optional parameters
    2. Callbacks
    3. Anonymous functions
    4. Normal functions
    5. Array of functions

Requirements

Button requires PHP 5.4+ to run

Installation

There are a few ways to install Button in your project.

Composer install

Create a composer.json file in your project root directory

{
    "require": {
        "button/button": "dev-master"
    }
}

and make the command composer install. Make sure to have installed composer

Clone repository

If you don't use composer, you can clone the repository by doing

cd to-your-project-lib-directory
git clone https://github.com/rogelio-meza-t/button.git button

Download a copy

Download a copy of Button.php to your project.

Usage

// first create the Button object
$btn = new Button();

//then, make the hook
$btn->hook($http_method, $pattern, $callback [, $ajax]);

Parameters

$http_method
A string indicating HTTP method. Possible options are GET, POST, PUT and DELETE (lower case is allowed).
$pattern
The route that matches the requests. Learn more about patterns.
$callback
Function or array of functions to be run. Learn more about callbacks.
$ajax
Optional. true runs the callback when the request is an ajax request. false runs when the request is not an ajax call. Otherwise, if it is skipped or a non-boolean value is passed, the callback runs always.

Features

The routes

With Button you can map an URI to callback one function or an array of functions. You can define the same route for different HTTP method and Button will execute only the respective callback.

Simple routing

The basic way to make a route is write a simple URI

$btn = new Button();
$btn->hook('GET', '/say/hello/', function(){
	return "Hello world!";
});

Route parameters

To create a parameter you need to append a colon to the parameter name in the route. You can define as many parameters as you need.

$btn = new Button();
$btn->hook('GET', '/say/hello/:name/:surname', function($name, $surname){
  return "Hello ". $name . " " . $surname ;
});

The values are extracted from the URI and are passed as arguments to the function in order of occurrence. Isn't important the parameter name in the function, if the route is defined as /foo/:some/:thing and the function is defined as function($a, $b) the value of :some will be passed to $a and :thing to $b.

Optional parameters

The optional parameters are defined within parentheses. If you use one or more optional parameters you can declare the parameter in the function with a value by default or not.

$btn = new Button();
$btn->hook('GET', '/hello(/:name(/:surname))', function($name='John', $surname='Doe'){
  return "Hello ". $name . " " . $surname ;
});

This route can accepts requests for:

/hello
/hello/Jane
/hello/Jane/Roe

Callbacks

Callbacks are the way to run code when you define a route. You can invoke one or more functions and get multiple JSON responses at the same time.

Anonymous functions

The basic way is define the $callback parameter as an anonymous function.

$btn = new Button();
$btn->hook('GET', '/foo/bar', function(){
  return "Hello World!";
});

Even if you have defined an object, you can use it inside the anonymous function using a closure.

$btn = new Button();
$foo = new FooClass();
$btn->hook('GET', '/foo/bar/:param', function($param) use ($foo){
  return $foo->someMethod($param);
});

Of course, you can store the anonymous function in a variable and use this later as the $callback parameter.

$callback_function = function($param){
    //some code ...
    return $param;
};
$btn = new Button();
$btn->hook('GET', '/foo/bar/:param', $callback_function);

Normal functions

This doesn't need much explanations.

function callback_function($param){
    //some code ...
    return $param;
}
$btn = new Button();
$btn->hook('GET', '/foo/bar/:param', 'callback_function');

Or you can invoke a static method from some class:

class SomeClass{
    public static function callback_function($param){
        //some code ...
        return $param;
    }
}
$btn = new Button();
$btn->hook('GET', '/foo/bar/:param', 'SomeClass::callback_function');

Array of functions

When you need to get more than one response, you can pass an array of functions to the $callback parameter. The result is a JSON array the same size as the $callback array.

function a($param){
  //some code ...
  $return array("name" => $param);
}
function b($param){
  //some code ...
  $return array("user" => $param);
}

$btn = new Button();
$btn->hook('GET', '/foo/bar/:param', ['a', 'b']);

The previous example returns the next JSON object

[
    {"name" : "rogelio"},
    {"user" : "rogelio"}
]

Hint: You can mix anonymous functions, normal functions or static methods inside the array.