parent
33a23ef20c
commit
fdf0b67f3a
|
@ -13,7 +13,6 @@ local function paste_get(req)
|
||||||
http_response(req,303,"")
|
http_response(req,303,"")
|
||||||
return
|
return
|
||||||
elseif host == config.domain and author == nil then
|
elseif host == config.domain and author == nil then
|
||||||
print("doing anon paste")
|
|
||||||
text = cache.render(string.format("%s/_paste",host),function()
|
text = cache.render(string.format("%s/_paste",host),function()
|
||||||
log(LOG_DEBUG, "Cache missing, rendering post page")
|
log(LOG_DEBUG, "Cache missing, rendering post page")
|
||||||
return assert(pages.paste{
|
return assert(pages.paste{
|
||||||
|
@ -26,7 +25,6 @@ local function paste_get(req)
|
||||||
end)
|
end)
|
||||||
http_response(req,200,text)
|
http_response(req,200,text)
|
||||||
elseif host ~= config.domain and author then
|
elseif host ~= config.domain and author then
|
||||||
print("doing author paste")
|
|
||||||
text = assert(pages.author_paste{
|
text = assert(pages.author_paste{
|
||||||
domain = config.domain,
|
domain = config.domain,
|
||||||
user = author,
|
user = author,
|
||||||
|
|
|
@ -43,7 +43,6 @@ local function anon_paste(req,ps)
|
||||||
--with a more elegent solution.
|
--with a more elegent solution.
|
||||||
|
|
||||||
log(LOG_DEBUG,string.format("new story: %q, length: %d",ps.title,string.len(ps.text)))
|
log(LOG_DEBUG,string.format("new story: %q, length: %d",ps.title,string.len(ps.text)))
|
||||||
print("Unlisted:",ps.unlisted)
|
|
||||||
local textsha3 = sha3(ps.text .. get_random_bytes(32))
|
local textsha3 = sha3(ps.text .. get_random_bytes(32))
|
||||||
util.sqlbind(stmnt_paste,"bind_blob",1,ps.text)
|
util.sqlbind(stmnt_paste,"bind_blob",1,ps.text)
|
||||||
util.sqlbind(stmnt_paste,"bind",2,ps.title)
|
util.sqlbind(stmnt_paste,"bind",2,ps.title)
|
||||||
|
|
Loading…
Reference in New Issue