Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new ljpack encode #109

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/lor/lib/request.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ function Request:new()
body[k] = v
end
end
elseif sfind(header, "application/ljpack", 1, true) then
ngx.req.read_body()
local sb_str = ngx.req.get_body_data()
body = utils.ljpack_decode(sb_str)
elseif sfind(header, "application/json", 1, true) then
ngx.req.read_body()
local json_str = ngx.req.get_body_data()
Expand Down
18 changes: 18 additions & 0 deletions lib/lor/lib/response.lua
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,19 @@ function Response:json(data, empty_table_as_object)
self:_send(utils.json_encode(data, empty_table_as_object))
end


function Response:json_stably(data)
self:set_header('Content-Type', 'application/json; charset=utf-8')
self:_send(utils.json_stably_encode(data))
end



function Response:ljpack(data)
self:set_header('Content-Type', 'application/ljpack')
self:__send(utils.ljpack_encode(data))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's enough to call the already existing self:_send directly.

end

function Response:redirect(url, code, query)
if url and not code and not query then -- only one param
ngx.redirect(url)
Expand Down Expand Up @@ -111,6 +124,11 @@ function Response:_send(content)
ngx.say(content)
end

function Response:__send(content)
ngx.status = self.http_status or 200
ngx.print(content)
end

Comment on lines +127 to +131
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto

function Response:get_body()
return self.body
end
Expand Down
23 changes: 22 additions & 1 deletion lib/lor/lib/utils/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ local sgsub = string.gsub
local smatch = string.match
local table_insert = table.insert
local json = require("cjson")
local dkjson = require("dkjson")
local st = require("string.buffer")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since the new api string.buffer was introduced from OpenResty 1.12.4.1 onwards, it would be nice to have a fallback to be compatible with older versions of OpenResty.


local _M = {}

Expand Down Expand Up @@ -69,7 +71,7 @@ function _M.json_encode(data, empty_table_as_object)
local json_value
if json.encode_empty_table_as_object then
-- empty table encoded as array default
json.encode_empty_table_as_object(empty_table_as_object or false)
json.encode_empty_table_as_object(empty_table_as_object or false)
end
if require("ffi").os ~= "Windows" then
json.encode_sparse_array(true)
Expand All @@ -78,13 +80,32 @@ function _M.json_encode(data, empty_table_as_object)
return json_value
end

function _M.json_stably_encode(data)
local json_value
pcall(function(d) json_value = dkjson.encode(d) end, data)
return json_value
end

function _M.json_decode(str)
local ok, data = pcall(json.decode, str)
if ok then
return data
end
end

function _M.ljpack_encode(data)
local st_value
pcall(function(d) st_value = st.encode(d) end, data)
return st_value
end

function _M.ljpack_decode(str)
local ok, data = pcall(st.decode, str)
if ok then
return data
end
end

function _M.start_with(str, substr)
if str == nil or substr == nil then
return false
Expand Down