Plugin / GP routing – WP compatible REST API

Rene Manqueros

Description

Description

Allows developers to create REST-ish API’s that have access to all of WordPress and its plug-ins objects.

Usage

Install the plug-in as any other plug-in.
Project is divided in two sets of files:

* index.php - This is where you register routes and/or middleware.
* routes/ - This is where you place your routes.

Middleware

Middlewares are functions that will be executed on every call to the API, generally used to validate parameters or
transform requests before they reach routes, code for middleware is structured like this:

app::middleware(function () {
    doSomething();
});
  • Middlewares run for every Verb and do not automatically assign $_POST or $_GET to any variable

Routes

A route is where you would link a request to a function depending on its HTTP Verb.
The routing engine will prepend /api/ to all calls and will append a trailing slash to all requests.
A GET request would be matched like this:

app::get('/testget', function($req){
   return $req;
});

In which:

* app::get - This will match up a GET request.
* '/testget' - the path the routing engine will look for.
* function(){ } ... - the function to execute when the route is matched.
* $req - parameters sent to the verb.

To make a call to this route, the full path would be:

http://www.mysite.com/api/testget/
  • The trailing slash is always required.
  • Parameters for all routes will be sent as the first parameter to the callback.

A route should be registered on the index file by placing a call to app::routes with the filename of the route (without the extension) as a parameter:

app::routes('test');
  • All routes output their return value as a JSON encoded response.

Samples for all verbs

  • GET:

    app::get(‘/testget’, function($req){
    return $req;
    });

  • POST:

    app::post(‘/testpost’, function($req){
    return $req;
    });

  • DELETE:

    app::delete(‘/testdelete’, function($req){
    return $req;
    });

  • PUT:

    app::put(‘/testput’, function($req){
    return $req;
    });

Nested routes

Routes can be nested like this:

app::delete('/admin/machines', function($req){
    return $req;
});

Which could be called by issuing a DELETE to:

http://www.mysite.com/api/admin/machines/<h3>Route and middleware registration</h3>
Code for the routes should be placed on a file inside the "routes" folder and then "registered" on the index.php file like this:

function gp_registerapimethods()
{
app::middleware(function () {

});

app::routes('test');

}

Only one instance of the gp_registerapimethods should exist on the index.php file.
Middleware and Routes can have as many instances as needed.
All routes inside the routes folder can be registered by doing this call instead of the individual route registration:

  app::routes('*');
  <h3>Sample for everything</h3> The index.php file has the "test" route registered, and that test.php route a call for each verb which you could use as a starting point for your own services.

Ratings

0
0 reviews

Rating breakdown

Details Information

Version

1.0

First Released

27 Nov, 2015

Total Downloads

357

Wordpress Version

3.0.1 or higher

Tested up to:

4.3.21

Require PHP Version:

-

Tags

Contributors

Languages

The plugin hasn't been transalated in any language other than English.

DIRECTORY DISCLAIMER

The information provided in this THEME/PLUGIN DIRECTORY is made available for information purposes only, and intended to serve as a resource to enable visitors to select a relevant theme or plugin. wpSocket gives no warranty of any kind, express or implied with regard to the information, including without limitation any warranty that the particular theme or plugin that you select is qualified on your situation.

The information in the individual theme or plugin displayed in the Directory is provided by the owners and contributors themselves. wpSocket gives no warranty as to the accuracy of the information and will not be liable to you for any loss or damage suffered by you as a consequence of your reliance on the information.

Links to respective sites are offered to assist in accessing additional information. The links may be outdated or broken. Connect to outside sites at your own risk. The Theme/Plugin Directory does not endorse the content or accuracy of any listing or external website.

While information is made available, no guarantee is given that the details provided are correct, complete or up-to-date.

wpSocket is not related to the theme or plugin, and also not responsible and expressly disclaims all liability for, damages of any kind, arising out of the use, reference to, or reliance on, any information or business listed throughout our site.

Keep Leading Your Followers!
Share it for them.