Merge pull request #8 from mrvdb/removetmp
Remove temporary file after configurable delay
This commit is contained in:
commit
fce0bd550d
12
bot/bot.lua
12
bot/bot.lua
@ -29,6 +29,11 @@
|
|||||||
function ok_cb(extra, success, result)
|
function ok_cb(extra, success, result)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Callback to remove tmp files
|
||||||
|
function rmtmp_cb(file_path, success, result)
|
||||||
|
os.remove(file_path)
|
||||||
|
end
|
||||||
|
|
||||||
function msg_valid(msg)
|
function msg_valid(msg)
|
||||||
if msg.text == nil then
|
if msg.text == nil then
|
||||||
return false
|
return false
|
||||||
@ -145,7 +150,7 @@
|
|||||||
return result
|
return result
|
||||||
end
|
end
|
||||||
|
|
||||||
function download_to_file( url )
|
function download_to_file( url , noremove )
|
||||||
print("url to download: "..url)
|
print("url to download: "..url)
|
||||||
req, c, h = http.request(url)
|
req, c, h = http.request(url)
|
||||||
htype = h["content-type"]
|
htype = h["content-type"]
|
||||||
@ -171,6 +176,11 @@
|
|||||||
file = io.open(file_path, "w+")
|
file = io.open(file_path, "w+")
|
||||||
file:write(req)
|
file:write(req)
|
||||||
file:close()
|
file:close()
|
||||||
|
|
||||||
|
if noremove == nil then
|
||||||
|
postpone(rmtmp_cb, file_path, config.rmtmp_delay)
|
||||||
|
end
|
||||||
|
|
||||||
return file_path
|
return file_path
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"rmtmp_delay": 20,
|
||||||
"google_api_key": "",
|
"google_api_key": "",
|
||||||
"log_file": "/var/www/html/log.txt",
|
"log_file": "/var/www/html/log.txt",
|
||||||
"sh_enabled": false,
|
"sh_enabled": false,
|
||||||
|
Reference in New Issue
Block a user