2017 © Pedro Peláez
 

project rapid-rest

Rapid prototyping and development of CRUD REST API's for personal use.

image

andrew-natoli/rapid-rest

Rapid prototyping and development of CRUD REST API's for personal use.

  • Monday, February 27, 2017
  • by AndrewNatoli
  • Repository
  • 6 Watchers
  • 5 Stars
  • 37 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 4 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

#PHP-RapidREST

RapidREST allows you to have a working CRUD API in sixty seconds!, (*1)

# Background

First I had a problem...

I've been looking build simple test applications that implement API's as a learning experience but dreaded the time commitment for designing databases and doing the actual programming for an application I'd abandon after three days. Architecting a clever, re-usable way to handle database access was my main problem so I started PHP Model Buddy. Months have gone by and my dwindling free time to experiment has left me with a half-finished database access framework., (*2)

...then came RedBeanPHP...

I recently discovered RedBeanPHP and my problem was solved. If you're not familiar with it, RedBeanPHP is an on-the-fly ORM for PHP. Want to create a record in a table that doesn't exist? Boom, the table and columns are made. It's absolutely perfect if you want to get up and running quickly., (*3)

...and the Slim Framework. Problem solved!

Rather than re-inventing the wheel I decided to use Slim Framework in RapidREST to handle the API routes. Check /config/routes.php and you'll thank me for doing so., (*4)

#Installation

Requirements...

You'll need an apache server with mod_rewrite and PHP >= 5.3.0, (*5)

Composer is needed to install the dependencies., (*6)

Install with Composer

php composer.phar create-project andrew-natoli/rapid-rest -sdev

OR... Use git & composer

Clone the Repo!

git clone https://github.com/AndrewNatoli/PHP-RapidREST.git

Install the dependencies!

Now use composer to install Slim Framework and RedBeanPHP., (*7)

sudo php composer.phar update

Once installed... connect to the database!

Open /config/rapidrest-config.php to configure your database connection., (*8)

All Done!

Enjoy your CRUD API!, (*9)

# Base Wildcard Endpoints

There are five base universal routes in RapidREST. They're perfect for prototyping small applications but I suggest removing and re-writing their controllers before moving your app to production if it's going to be public., (*10)

ReadBeanPHP will automatically build the table schema for you based on the information you send., (*11)

GET list - yourapi.com/:table/

Returns all of the records and their contents in the specified table., (*12)

{
  "statuscode": 200,
  "data": [{
    "id": "1",
    "title": "Important Message",
    "text": "Hello, world!"
  }, {
    "id": "2",
    "title": "Also important",
    "text": "This is a message"
  }],
  "count": 2
}

GET record - yourapi.com/:table/:id

Returns the specified record from a table., (*13)

{
  "statuscode": 200,
  "data": [{
    "id": "1",
    "text": "Bacon!",
    "title": "Important Message"
  }]
}

POST record - yourapi.com/:table/

Creates a new record in the table., (*14)

{
  "statuscode": 200,
  "data": {
    "id": 3
  }
}

PUT record - yourapi.com/:table/:id

Updates an existing record in the table., (*15)

{
  "statuscode": 200,
  "data": {
    "id": 2
  }
}

DELETE record - yourapi.com/:table/:id

Deletes a record from the table., (*16)

{
    "statuscode": 200,
    "deleted": true
}

# Response Formats

These return a JSON response by the way. If a record can't be found, updated, created, etc. the program will spit out a JSON error message., (*17)

GET requests will list the found record(s) within the "data" array:, (*18)

POST and PUT will return the ID of the created (or updated) record:, (*19)

DELETE will response with whether not a record was deleted., (*20)

Exceptions look like this:, (*21)

{"message":"Record not found.","statusCode":404}

# Making Changes...

As mentioned earlier, you'll probably want to remove the stock API routes and controllers when you take your application public. This is a quick guide to where everything is so you can evolve your RapidREST Prototype API into a production-worthy API., (*22)

Where everything is...

  • Configure your database connection in /config/rapidrest-config.php
  • Define your custom routes in /config/routes.php
  • Include custom classes in /config/loader.php
  • The stock API controllers are found in /lib/RapidRest/RapidRest.php
  • You can also find the APIException and JSON Response classes within /lib/RapidRest/

Namespaces...

  • RedBeanPHP operates in the root namespace.
  • APIException() is in API\Exceptions
  • JSON() is in API\Response

How to...

Throw an exception:

Kill the process and return a JSON-encoded error message!, (*23)

use API\Exceptions\APIException
throw new APIException("Record not found!",404);
Output data to the client

It's reccomended you use the Response classes rather than simply using json_encode() to allow for easy changes to your code in the future. You can extend the base JSON or abstract Response class and define your own methods to whitelist values or output additional data., (*24)

use API\Response\JSON
$response = array();
$response['data'] = $array_or_object;
return new JSON($response);

What else you'll need to know for production...

  • While /config/routes.php shows you basically everything you need to know for creating custom routes, do a little research about Slim Framework to make yourself comfy.
  • Learn how to use RedBeanPHP4 for building your custom controllers. Be sure you understand its strict database conventions.

# Contributing...

Pull requests welcome :), (*25)

# Acknowledgements...

Cheers to necenzurat for devising a way of installing RedBeanPHP through composer., (*26)

https://github.com/necenzurat/redbeanphp-composer, (*27)

And of course, Cheers to the developers of Slim Framework and RedBeanPHP., (*28)

# License

The MIT License (MIT)

Copyright (c) 2014 Andrew Natoli, (*29)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:, (*30)

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software., (*31)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE., (*32)

The Versions

27/02 2017

dev-master

9999999-dev http://andrewnatoli.com/portfolio/php-rapidrest/

Rapid prototyping and development of CRUD REST API's for personal use.

  Sources   Download

MIT

The Requires

 

17/12 2015

1.0.1

1.0.1.0 http://andrewnatoli.com/portfolio/php-rapidrest/

Rapid prototyping and development of CRUD REST API's for personal use.

  Sources   Download

MIT

The Requires

 

15/10 2014

1.0.0

1.0.0.0 http://andrewnatoli.com/portfolio/php-rapidrest/

Rapid prototyping and development of CRUD REST API's for personal use.

  Sources   Download

MIT

The Requires