Skip to content
/ SimpJ2J Public

Single entry point PHP api, JSON request and respond

License

Notifications You must be signed in to change notification settings

ristep/SimpJ2J

Repository files navigation

SimpJ2J GitHub tag (latest SemVer) GitHub

Simple JSON to SQL to JSON single point DB access API writhen with PHP and PDO

I started this project some time ago just for testing purposes. It was meant to be used in my ReactJS experiments. But I think is quite useful for small projects and not so small project.

Do it simple bro, is the main motto in this project. All other API for remote db access are to complex for my taste.

Anyway now is completely open an anyone can use it as he whish.

Actually this is only a JSON wrapper for SQL, or transformer, transforms JSON to SQL statement then execute that statement and return result in JSON encoded object.

Getting Started

Just download or clone this repo on jour LAMP server and compose :)

Write on command prompt

composer install

composer will download "firebase/php-jwt" in /vendor folder.

Prerequisites

MySQL, PHP with PDO enabled on an apache2 webserver. Probably will work on eny http sever with PHP but is not tested, yet.

Full source code for testing app can be found here ong github ristep/SimpJ2J-react-test

Using

Just send post request whit JSON encoded Data

// Example request JSON
{
  sqlStatement: 'select',
  table: 'foods',
  fields: [
    'id',
    'name'
  ],
  keyData: {
    id: 980
  }
}

this will be transformed in to SQL statement:

SELECT id,name FROM foods WHERE id='980' ;

and if everything is OK service will return something like this

{
  "OK": true,
  "error": false,
  "message": " successfully!",
  "SQL": "SELECT id,name FROM foods WHERE id='980'  ;",
  "count": 1,
  "data": [
    {
      "id": 980,
      "name": "Updated food name"
    }
  ]
}

Examples

For live example go to this link:

llc-test.sman.cloud

Built With

  • PHP - PHP is a popular general-purpose scripting language that is especially suited to web development.
  • PDO - PHP Data Objects
  • php-jwt - A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to RFC 7519.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Author

Riste Panovski