65 lines
2.4 KiB
Lua
Executable file
65 lines
2.4 KiB
Lua
Executable file
-- Get the verse lib
|
|
local verse = require("verse")
|
|
-- Setup logging and config
|
|
require("utils")
|
|
local log = setup_log(string.format("%s_main", config.name))
|
|
log("info", "Log initialized")
|
|
-- Get the client lib
|
|
local client_lib = verse.init("client")
|
|
-- Make the client
|
|
local client = client_lib.new()
|
|
-- Load client plugins
|
|
client:add_plugin("groupchat")
|
|
client:add_plugin("version")
|
|
-- Client hooks
|
|
client:hook("disconnected", function()
|
|
log("error", "XMPP connetion lost. Quitting...")
|
|
os.exit(1)
|
|
end)
|
|
client:hook("authentication-failure", function()
|
|
log("error", "Failed to authenticate with XMPP Server. Quitting...")
|
|
os.exit(1)
|
|
end)
|
|
client:hook("authentication-success", function()
|
|
log("info", "XMPP authentication sucessful!")
|
|
end)
|
|
client:hook("ready", function()
|
|
log("info", "Client ready")
|
|
|
|
-- Main code goes here
|
|
for _, room in pairs(config.rooms_to_join) do
|
|
local room, err = client:join_room(room.jid, config.name, {}, config.password)
|
|
|
|
if room then
|
|
-- Run on message events
|
|
log("info", "Joined room \"%s\"", room.jid)
|
|
room:hook("message", function(event)
|
|
if event.stanza.attr.type == "groupchat" and not string.find(event.stanza.attr.from, "/" .. config.name) then
|
|
local body = event.stanza:get_child_text("body")
|
|
if body then
|
|
for site, services in pairs(config.sites) do
|
|
local instance = choose_instance(services.frontends)
|
|
-- TODO: make it reply using XEP-0461
|
|
for match in string.gmatch(body, string.format("%%s(%s/%%S+)", site)) do
|
|
room:send_message(string.format("> %s\nPrivate frontend: %s", match, string.gsub(match, site, instance)))
|
|
end
|
|
for match in string.gmatch(body, string.format("(https?://%s/%%S+)", site)) do
|
|
room:send_message(string.format("> %s\nPrivate frontend: %s", match, string.gsub(match, site, instance)))
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end)
|
|
else
|
|
log("error", "Error joining room \"%s\": %s", room.jid, err)
|
|
end
|
|
end
|
|
end)
|
|
|
|
log("info", "Connecting to server...")
|
|
|
|
client:connect_client(config.jid, config.password)
|
|
|
|
verse.loop()
|
|
|
|
log("info", "Verse loop exited. Quitting...")
|