This project is no longer maintained. Prefer using server-nodejs when possible.
This software is intended to provide HAPI server capabilities to a dataset stored in a MySQL database. (Other SQL databases may work, though will need some minor tinkering). The intent is that it is a generic HAPI Front End that can be configured to serve any SQL table. To use, simply edit the example configuration file to specify database credentials, columns, and server metadata (contact info, ownership, etc).
HAPI uses its own set of definitions for data and datasets. Since this software is a database-backed design, each definitions translates this way:
- catalog - Database
- dataset - Table
- record - Table row
- parameter - Table Column
- Use a config file to specify server metadata returned by
/hapi/about - Define your database details and dataset information in a config file and have it automatically served through the
catalog,info, anddataendpoints. - Easily spin up a HAPI server in front of an existing SQL database without writing any code. (Unless you count modifying an ini file as code).
- Data returned in
jsonorcsvformats. - Limiting requests per-dataset based on maxRequestDuration.
- Limit requests to a maximum number of records through the configuration file.
- Custom postprocessing through a simple interface in case you need to modify, combine, or otherwise change the data pulled from teh database before sending it to clients.
- The current implementation does not support Additional Metadata in the info endpoint.
- Arrays and bins as a data type are not supported
- Fill is currently not supported,
fill: nullis returned - Field labels are not supported in the info endpoint yet.
- If each of your data points is a scalar value (strings count as scalars in this context), then this will work for you.
- HAPI error codes are not returned in the HTTP status, only in the response body.
- No HAPI landing page
Preconditions:
- Have a database and credentials for a user with SELECT privileges.
- For security, I recommend you have a dedicated user with only SELECT privileges since that's all that's needed to run this server.
Setup Steps:
- clone the repository
- in the root directory, run
composer dump-autoload - Setup your webserver to serve
public/index.php - You need a rewrite rule so that all
/hapi/endpointsroutes get sent to index.php
Example for apache2:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php
- Copy
config.example.initoconfig.iniand enter metadata about your server. You should review every line in the config file since it all affects the behavior of your server. The configuration is meant to be self-explanatory. If it's not, please open an issue so I can clarify what to set.