SQLer:无需编程语言即可将 SQL 查询转换为 RESTful API 的工具

栏目: 数据库 · 发布时间: 5年前

内容简介:SQLer 是一个微型 http 服务器,用 Go 语言编写,将旧的 CGI 概念应用于 SQL 查询。SQLer 允许编写端点并分配一个 SQL 查询,以便任何人点击它时能执行查询。此外 SQLer 还允许自定义验证规则,可验证请求正文或查询参数。SQLer 使用 nginx 样式配置语言(HCL)。SQLer 遵循 Apache 2.0 协议。

SQLer 是一个微型 http 服务器,用 Go 语言编写,将旧的 CGI 概念应用于 SQL 查询。SQLer 允许编写端点并分配一个 SQL 查询,以便任何人点击它时能执行查询。此外 SQLer 还允许自定义验证规则,可验证请求正文或查询参数。SQLer 使用 nginx 样式配置语言(HCL)。

SQLer 功能

  • 无需依赖,可独立使用;
  • 支持多种数据可类型,包括:SQL Server, MYSQL, SQLITE, PostgreSQL, Cockroachdb 等;
  • 内置 RESTful 服务器;
  • 内置 RESP Redis 协议,可以使用任何 redis 客户端连接到 SQLer;
  • 内置 Javascript 解释器,可轻松转换结果;
  • 内置验证器;
  • 自动使用预备语句;
  • 使用(HCL)配置语言;
  • 可基于 unix glob 模式加载多个配置文件;
  • 每条 SQL 查询可被命名为宏;
  • 在每个宏内可使用 Go text/template
  • 每个宏都有自己的 Context(查询参数 + 正文参数)作为 .Input (map [string] interface{}),而 .Utils 是辅助函数列表,目前它只包含 SQLEscape;
  • 可自定义授权程序,授权程序只是一个简单的 webhook,sqler 使用这个 webhook 验证是否应该完成某请求。

下载

配置概况

复制代码

// create a macro/endpoint called "_boot",
// this macro is private "used within other macros"
// because it starts with "_".
// this rule only used within `RESTful` context.
_boot{
// the query we want to execute
exec= <<SQL
CREATE TABLEIFNOTEXISTS `users` (
`ID` INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
`name` VARCHAR(30)DEFAULT"@anonymous",
`email` VARCHAR(30)DEFAULT"@anonymous",
`password` VARCHAR(200)DEFAULT"",
`time` INT UNSIGNED
);
SQL
}

// adduser macro/endpoint, just hit `/adduser` with
// a `?user_name=&user_email=` or json `POST` request
// with the same fields.
adduser {
// what request method will this macro be called
// default: ["ANY"]
// this only used within `RESTful` context.
methods = ["POST"]

// authorizers,
// sqler will attempt to send the incoming authorization header
// to the provided endpoint(s) as `Authorization`,
// each endpoint MUST return `200 OK` so sqler can continue, other wise,
// sqler will break the request and return back the client with the error occurred.
// each authorizer has a method and a url.
// this only used within `RESTful` context.
authorizers = ["GET http://web.hook/api/authorize","GET http://web.hook/api/allowed?roles=admin,root,super_admin"]

// the validation rules
// you can specify separated rules for each request method!
rules {
user_name = ["required"]
user_email = ["required","email"]
user_password = ["required","stringlength: 5,50"]
}

// the query to be executed
exec= <<SQL
{{ template"_boot"}}

/* let's bind a vars to be used within our internal prepared statement */
{{ .BindVar"name".Input.user_name }}
{{ .BindVar"email".Input.user_email }}
{{ .BindVar"emailx".Input.user_email }}

INSERT INTO users(name, email, password,time) VALUES(
/* we added it above */
:name,

/* we added it above */
:email,

/* it will be secured anyway because it is encoded */
'{{ .Input.user_password | .Hash "bcrypt" }}',

/* generate a unix timestamp "seconds" */
{{ .UnixTime }}
);

SELECT*FROMusers WHERE id = LAST_INSERT_ID();
SQL
}

// list all databases, and run a transformer function
databases {
exec="SHOW DATABASES"

transformer = <<JS
// there is a global variable called `$result`,
// `$result` holds the result of the sql execution.
(function(){
newResult = []

for( iin$result ) {
newResult.push($result[i].Database)
}

return newResult
})()
JS
}

支持的 SQL 引擎

  • sqlite3
  • mysql
  • postgresql
  • cockroachdb
  • sqlserver

支持的 Util

  • .Hash <method> - 使用指定的方法 [md5,sha1,sha256,sha512,bcrypt] 散列指定的输入, {{ "data" | .Hash "md5" }}
  • ·.UnixTime - 以秒为单位返回 unit 时间, {{ .UnixTime }}
  • .UnixNanoTime - 以纳秒为单位返回 unix 时间, {{ .UnixNanoTime }}
  • .Uniqid - 返回唯一 ID, {{ .Uniqid }}

协议

SQLer 遵循 Apache 2.0 协议。


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

极简算法史:从数学到机器的故事

极简算法史:从数学到机器的故事

[法] 吕克•德•布拉班迪尔 / 任轶 / 人民邮电出版社 / 2019-1 / 39.00元

数学、逻辑学、计算机科学三大领域实属一家,彼此成就,彼此影响。从古希腊哲学到“无所不能”的计算机,数字、计算、推理这些貌似简单的概念在三千年里融汇、碰撞。如何将逻辑赋予数学意义?如何从简单运算走向复杂智慧?这背后充满了人类智慧的闪光:从柏拉图、莱布尼茨、罗素、香农到图灵都试图从数学公式中证明推理的合理性,缔造完美的思维体系。他们是凭天赋制胜,还是鲁莽地大胆一搏?本书描绘了一场人类探索数学、算法与逻......一起来看看 《极简算法史:从数学到机器的故事》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具