pgator ~improved_errors
Server that transforms JSON-RPC calls into SQL queries for PostgreSQL
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
pgator
<img align="right" src="pgator.png" />
Server that transforms JSON-RPC calls into SQL queries for PostgreSQL.
Technical documentation (ongoing)
###Quick start guide
####Dlang stuff installation (Debian example)
Since pgator written in the Dlang you will need to install the DMD compiler and the DUB builder packages:
$ cat /etc/apt/sources.list.d/d-apt.list
deb http://netcologne.dl.sourceforge.net/project/d-apt dmd main #APT repository for D
$ sudo aptitude update
$ sudo aptitude install -t unstable dub dmd
####pgator downloading and building
$ git clone https://github.com/DSoftOut/pgator.git
Cloning into 'pgator'...
remote: Counting objects: 2946, done.
remote: Total 2946 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (2946/2946), 1.53 MiB | 271.00 KiB/s, done.
Resolving deltas: 100% (2087/2087), done.
Checking connectivity... done.
$ cd pgator
$ dub build
####Example config
# cat /opt/pgator/etc/pgator.conf
{
"sqlServers": [
{
"maxConn": 5,
"connString": "dbname=exampledb user=worker"
}
],
"sqlAuth": [
"pgator.username",
"pgator.password"
],
"maxConn": 10,
"port": 8080,
"sqlTimeout": 1000,
"logname": "/var/log/pgator/pgator.txt",
"vibelog": "/var/log/pgator/http.log",
"logSqlTransactions": true,
"logJsonQueries": true,
"sqlJsonTable": "public.json_rpc",
"userid_disabled": 105,
"groupid_disabled": 108
}
####How to run pgator as daemon
supervisor script example:
$ cat /etc/supervisor.d/pgator.ini
[program:pgator]
command=/opt/pgator/bin/pgator
directory=/opt/pgator
user=pgator
redirect_stderr=true
stdout_logfile=/var/log/supervisor/pgator.log
stdout_logfile_maxbytes=1MB
stdout_logfile_backups=3
autorestart=true
exitcodes=2
stopasgroup=true
####RPC calls table example
Simple method code that just returns one passed argument:
=> SELECT * FROM json_rpc WHERE method = 'test.echo';
method | sql_queries | arg_nums | one_row_flags | set_username | need_cache | read_only | reset_caches | reset_by | commentary
-----------+-------------------------------------+----------+---------------+--------------+------------+-----------+--------------+----------+---------------
test.echo | {"select $1::text as passed_value"} | {1} | {t} | f | f | f | {} | {} | Echo testing +
| | | | | | | | | +
| | | | | | | | | @Params: +
| | | | | | | | | $1 - value +
| | | | | | | | | +
| | | | | | | | | @Returns: +
| | | | | | | | | value
(1 row)
JSON-RPC 2.0 methods calling:
Calling a test method described in the previous table:
$ curl -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' --data '
{
"jsonrpc": "2.0",
"method": "test.echo",
"params": [ "Hello, world!" ],
"id": 1
}' http://pgator-test-server.com:8080/
Response:
{
"id": 1,
"result": {
"passed_value": "Hello, world!"
},
"jsonrpc": "2.0"
}
- Registered by Denis Feklushkin
- ~improved_errors released 8 years ago
- DSoftOut/pgator
- MIT
- Copyright © 2014, DSoftOut
- Authors:
- Dependencies:
- vibe-d, dlogg, pgator-backend
- Versions:
-
0.3.18 2024-Feb-08 0.3.17 2020-Sep-16 0.3.16 2018-Dec-17 0.3.15 2018-Feb-27 0.3.14 2018-Feb-25 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
180 downloads total
-
- Score:
- 0.0
- Short URL:
- pgator.dub.pm