-
Notifications
You must be signed in to change notification settings - Fork 181
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
base: master
Are you sure you want to change the base?
new ljpack encode #109
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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)) | ||
end | ||
|
||
function Response:redirect(url, code, query) | ||
if url and not code and not query then -- only one param | ||
ngx.redirect(url) | ||
|
@@ -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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto |
||
function Response:get_body() | ||
return self.body | ||
end | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since the new api |
||
|
||
local _M = {} | ||
|
||
|
@@ -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) | ||
|
@@ -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 | ||
|
There was a problem hiding this comment.
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.