I have been looking at APIs and developing a REST API for a project that we are working on.

The API only accepts connections from one source in JSON format, I understand that bit fine.

I have been learning the majority of it from http://www.gen-x-design.com/archives/create-a-rest-api-with-php/ after seeing 5+ recommendations on SO.

If understand the majority of what is being said, however I don't understand the 3rd code example down and where the routing information would go.

The example they have provided is:

$data = RestUtils::processRequest();

switch($data->getMethod)
{
    case 'get':
        // retrieve a list of users
        break;
    case 'post':
        $user = new User();
        $user->setFirstName($data->getData()->first_name);  // just for example, this should be done cleaner
        // and so on...
        $user->save();
        break;
    // etc, etc, etc...
}

The part I am unsure on is how to accept the original request i.e. /get/user/1 - how do you route that to the correct part of the script.

If there has been another SO question (I have searched for quite some time) or any further educational examples please do point me in the right direction.

Update

I have found a few routing PHP classes out there, but nothing thats just small and does what it says on the tin, everything seems to do routing + 2000 other things on top.

I now have all the classes I need for this project named as I wish to access them from the URI i.e.:

/data/users /data/users/1 /hash/users /hash/users/1 /put/users/1?json={data}

So all of these should use the users class, then one of the data, hash or put methods passing anything additional after that into the method as arguments.

If anyone could just explain how that bit works that would be a huge help!

Thanks :)

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Take a look at a framework I made called Alloy. It was designed for REST from the beginning, with each controller designed to represent a REST resource. It has a built-in URL router that is not tied into the core framework in any way that you might want to take a look at using. It even has a section on using the router outside the framework. All it does is match against an HTTP method and URL string, and return an array of params in key => value pairs.

The syntax is like this:

// RESTful resource route
// 'action' will be overridden depending on matched HTTP method
$router->route('module_item', '/<:module>/<#item>')
    ->defaults(array('action' => 'view'))
    ->get(array('action' => 'view'))
    ->post(array('action' => 'post'))
    ->put(array('action' => 'put'))
    ->delete(array('action' => 'delete'));

And then matching to get the params:

$params = $router->match('GET', '/users/1');

Would return the following array:

array('module' => 'users', 'item' => '1', 'action' => 'view');
link|improve this answer
Looks perfect mate, will check it out! – lethalMango Apr 28 '11 at 15:43
feedback

From the outset it looks like the website you've pointed out does not include a router or a dispatcher. There are plenty of PHP5 frameworks around which include a route and/or a dispatch or some description. (http://en.wikipedia.org/wiki/Comparison_of_Web_application_frameworks#PHP)

A router would be a class which have a list of predefined routes these could be really basic or quite complex, all depends on want you want to do. A good REST router IMO would look something like this:

:module/:controller/:params

And then the router would then router to the correct action based on the HTTP request (GET, POST, PUT, DELETE, OPTIONS)

public function getAction($id) {
    // Load item $id
}
link|improve this answer
thanks mate, that gave me a bit of a heads up on what I needed to look into. I've added an update to the original, not sure if you could add any light on that part? – lethalMango Apr 14 '11 at 18:00
feedback

In your case, you will need a redirect rule that will send the request to something like this index.php?user=id. Then you can process the get request.

The best solution I found for php REST architecture (including routing) is:

http://peej.github.com/tonic/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.