Common functions moved to utils.lua. Indentation ...
This commit is contained in:
parent
495bad27ee
commit
fe05645a39
126
bot/bot.lua
126
bot/bot.lua
@ -2,18 +2,9 @@
|
|||||||
https = require("ssl.https")
|
https = require("ssl.https")
|
||||||
URL = require("socket.url")
|
URL = require("socket.url")
|
||||||
json = (loadfile "./bot/JSON.lua")()
|
json = (loadfile "./bot/JSON.lua")()
|
||||||
|
require("./bot/utils")
|
||||||
|
|
||||||
VERSION = 'v0.7.4'
|
VERSION = 'v0.7.6'
|
||||||
|
|
||||||
-- taken from http://stackoverflow.com/a/11130774/3163199
|
|
||||||
function scandir(directory)
|
|
||||||
local i, t, popen = 0, {}, io.popen
|
|
||||||
for filename in popen('ls -a "'..directory..'"'):lines() do
|
|
||||||
i = i + 1
|
|
||||||
t[i] = filename
|
|
||||||
end
|
|
||||||
return t
|
|
||||||
end
|
|
||||||
|
|
||||||
function on_msg_receive (msg)
|
function on_msg_receive (msg)
|
||||||
vardump(msg)
|
vardump(msg)
|
||||||
@ -131,117 +122,6 @@
|
|||||||
return name
|
return name
|
||||||
end
|
end
|
||||||
|
|
||||||
function run_sh(msg)
|
|
||||||
name = get_name(msg)
|
|
||||||
text = ''
|
|
||||||
if config.sh_enabled == false then
|
|
||||||
text = '!sh command is disabled'
|
|
||||||
else
|
|
||||||
if is_sudo(msg) then
|
|
||||||
bash = msg.text:sub(4,-1)
|
|
||||||
text = run_bash(bash)
|
|
||||||
else
|
|
||||||
text = name .. ' you have no power here!'
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return text
|
|
||||||
end
|
|
||||||
|
|
||||||
function run_bash(str)
|
|
||||||
local cmd = io.popen(str)
|
|
||||||
local result = cmd:read('*all')
|
|
||||||
cmd:close()
|
|
||||||
return result
|
|
||||||
end
|
|
||||||
|
|
||||||
function download_to_file( url , noremove )
|
|
||||||
print("url to download: "..url)
|
|
||||||
req, c, h = http.request(url)
|
|
||||||
htype = h["content-type"]
|
|
||||||
vardump(c)
|
|
||||||
print("content-type: "..htype)
|
|
||||||
if htype == "image/jpeg" then
|
|
||||||
file_name = string.random(5)..".jpg"
|
|
||||||
file_path = "/tmp/"..file_name
|
|
||||||
else
|
|
||||||
if htype == "image/gif" then
|
|
||||||
file_name = string.random(5)..".gif"
|
|
||||||
file_path = "/tmp/"..file_name
|
|
||||||
else
|
|
||||||
if htype == "image/png" then
|
|
||||||
file_name = string.random(5)..".png"
|
|
||||||
file_path = "/tmp/"..file_name
|
|
||||||
else
|
|
||||||
file_name = url:match("([^/]+)$")
|
|
||||||
file_path = "/tmp/"..file_name
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
file = io.open(file_path, "w+")
|
|
||||||
file:write(req)
|
|
||||||
file:close()
|
|
||||||
|
|
||||||
if noremove == nil then
|
|
||||||
postpone(rmtmp_cb, file_path, config.rmtmp_delay)
|
|
||||||
end
|
|
||||||
|
|
||||||
return file_path
|
|
||||||
end
|
|
||||||
|
|
||||||
function string.random(length)
|
|
||||||
math.randomseed(os.time())
|
|
||||||
local str = "";
|
|
||||||
for i = 1, length do
|
|
||||||
math.random(97, 122)
|
|
||||||
str = str..string.char(math.random(97, 122));
|
|
||||||
end
|
|
||||||
return str;
|
|
||||||
end
|
|
||||||
|
|
||||||
function string:split(sep)
|
|
||||||
local sep, fields = sep or ":", {}
|
|
||||||
local pattern = string.format("([^%s]+)", sep)
|
|
||||||
self:gsub(pattern, function(c) fields[#fields+1] = c end)
|
|
||||||
return fields
|
|
||||||
end
|
|
||||||
|
|
||||||
function vardump(value, depth, key)
|
|
||||||
local linePrefix = ""
|
|
||||||
local spaces = ""
|
|
||||||
|
|
||||||
if key ~= nil then
|
|
||||||
linePrefix = "["..key.."] = "
|
|
||||||
end
|
|
||||||
|
|
||||||
if depth == nil then
|
|
||||||
depth = 0
|
|
||||||
else
|
|
||||||
depth = depth + 1
|
|
||||||
for i=1, depth do spaces = spaces .. " " end
|
|
||||||
end
|
|
||||||
|
|
||||||
if type(value) == 'table' then
|
|
||||||
mTable = getmetatable(value)
|
|
||||||
if mTable == nil then
|
|
||||||
print(spaces ..linePrefix.."(table) ")
|
|
||||||
else
|
|
||||||
print(spaces .."(metatable) ")
|
|
||||||
value = mTable
|
|
||||||
end
|
|
||||||
for tableKey, tableValue in pairs(value) do
|
|
||||||
vardump(tableValue, depth, tableKey)
|
|
||||||
end
|
|
||||||
elseif type(value) == 'function' or
|
|
||||||
type(value) == 'thread' or
|
|
||||||
type(value) == 'userdata' or
|
|
||||||
value == nil
|
|
||||||
then
|
|
||||||
print(spaces..tostring(value))
|
|
||||||
else
|
|
||||||
print(spaces..linePrefix.."("..type(value)..") "..tostring(value))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function update_user_stats(msg)
|
function update_user_stats(msg)
|
||||||
-- Save user to _users table
|
-- Save user to _users table
|
||||||
local from_id = tostring(msg.from.id)
|
local from_id = tostring(msg.from.id)
|
||||||
@ -249,7 +129,6 @@
|
|||||||
-- If last name is nil dont save last_name.
|
-- If last name is nil dont save last_name.
|
||||||
local user_last_name = msg.from.last_name
|
local user_last_name = msg.from.last_name
|
||||||
local user_print_name = msg.from.print_name
|
local user_print_name = msg.from.print_name
|
||||||
print ("user_last_name", user_last_name)
|
|
||||||
if _users[from_id] == nil then
|
if _users[from_id] == nil then
|
||||||
_users[from_id] = {
|
_users[from_id] = {
|
||||||
name = user_name,
|
name = user_name,
|
||||||
@ -329,4 +208,3 @@
|
|||||||
table.insert(plugins, t)
|
table.insert(plugins, t)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
97
bot/utils.lua
Normal file
97
bot/utils.lua
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
function string.random(length)
|
||||||
|
math.randomseed(os.time())
|
||||||
|
local str = "";
|
||||||
|
for i = 1, length do
|
||||||
|
math.random(97, 122)
|
||||||
|
str = str..string.char(math.random(97, 122));
|
||||||
|
end
|
||||||
|
return str;
|
||||||
|
end
|
||||||
|
|
||||||
|
function string:split(sep)
|
||||||
|
local sep, fields = sep or ":", {}
|
||||||
|
local pattern = string.format("([^%s]+)", sep)
|
||||||
|
self:gsub(pattern, function(c) fields[#fields+1] = c end)
|
||||||
|
return fields
|
||||||
|
end
|
||||||
|
|
||||||
|
function download_to_file( url , noremove )
|
||||||
|
print("url to download: "..url)
|
||||||
|
req, c, h = http.request(url)
|
||||||
|
htype = h["content-type"]
|
||||||
|
vardump(c)
|
||||||
|
print("content-type: "..htype)
|
||||||
|
if htype == "image/jpeg" then
|
||||||
|
file_name = string.random(5)..".jpg"
|
||||||
|
file_path = "/tmp/"..file_name
|
||||||
|
else
|
||||||
|
if htype == "image/gif" then
|
||||||
|
file_name = string.random(5)..".gif"
|
||||||
|
file_path = "/tmp/"..file_name
|
||||||
|
else
|
||||||
|
if htype == "image/png" then
|
||||||
|
file_name = string.random(5)..".png"
|
||||||
|
file_path = "/tmp/"..file_name
|
||||||
|
else
|
||||||
|
file_name = url:match("([^/]+)$")
|
||||||
|
file_path = "/tmp/"..file_name
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
file = io.open(file_path, "w+")
|
||||||
|
file:write(req)
|
||||||
|
file:close()
|
||||||
|
|
||||||
|
if noremove == nil then
|
||||||
|
postpone(rmtmp_cb, file_path, config.rmtmp_delay)
|
||||||
|
end
|
||||||
|
|
||||||
|
return file_path
|
||||||
|
end
|
||||||
|
|
||||||
|
function vardump(value, depth, key)
|
||||||
|
local linePrefix = ""
|
||||||
|
local spaces = ""
|
||||||
|
|
||||||
|
if key ~= nil then
|
||||||
|
linePrefix = "["..key.."] = "
|
||||||
|
end
|
||||||
|
|
||||||
|
if depth == nil then
|
||||||
|
depth = 0
|
||||||
|
else
|
||||||
|
depth = depth + 1
|
||||||
|
for i=1, depth do spaces = spaces .. " " end
|
||||||
|
end
|
||||||
|
|
||||||
|
if type(value) == 'table' then
|
||||||
|
mTable = getmetatable(value)
|
||||||
|
if mTable == nil then
|
||||||
|
print(spaces ..linePrefix.."(table) ")
|
||||||
|
else
|
||||||
|
print(spaces .."(metatable) ")
|
||||||
|
value = mTable
|
||||||
|
end
|
||||||
|
for tableKey, tableValue in pairs(value) do
|
||||||
|
vardump(tableValue, depth, tableKey)
|
||||||
|
end
|
||||||
|
elseif type(value) == 'function' or
|
||||||
|
type(value) == 'thread' or
|
||||||
|
type(value) == 'userdata' or
|
||||||
|
value == nil
|
||||||
|
then
|
||||||
|
print(spaces..tostring(value))
|
||||||
|
else
|
||||||
|
print(spaces..linePrefix.."("..type(value)..") "..tostring(value))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- taken from http://stackoverflow.com/a/11130774/3163199
|
||||||
|
function scandir(directory)
|
||||||
|
local i, t, popen = 0, {}, io.popen
|
||||||
|
for filename in popen('ls -a "'..directory..'"'):lines() do
|
||||||
|
i = i + 1
|
||||||
|
t[i] = filename
|
||||||
|
end
|
||||||
|
return t
|
||||||
|
end
|
Reference in New Issue
Block a user