mirror of
https://github.com/ShadowNinja/LuaIRC.git
synced 2025-07-20 16:40:26 +02:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
7f475070dd | |||
b1cbbf1963 | |||
5ab24e9ad1 | |||
be620c428e | |||
8a2e47a326 |
@ -21,6 +21,8 @@ function meta:send(msg, ...)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
meta.queue = meta.send
|
||||||
|
|
||||||
local function verify(str, errLevel)
|
local function verify(str, errLevel)
|
||||||
if str:find("^:") or str:find("%s%z") then
|
if str:find("^:") or str:find("%s%z") then
|
||||||
error(("malformed parameter '%s' to irc command"):format(str), errLevel)
|
error(("malformed parameter '%s' to irc command"):format(str), errLevel)
|
||||||
@ -32,28 +34,28 @@ end
|
|||||||
function meta:sendChat(target, msg)
|
function meta:sendChat(target, msg)
|
||||||
-- Split the message into segments if it includes newlines.
|
-- Split the message into segments if it includes newlines.
|
||||||
for line in msg:gmatch("([^\r\n]+)") do
|
for line in msg:gmatch("([^\r\n]+)") do
|
||||||
self:send("PRIVMSG %s :%s", verify(target, 3), line)
|
self:queue("PRIVMSG %s :%s", verify(target, 3), line)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function meta:sendNotice(target, msg)
|
function meta:sendNotice(target, msg)
|
||||||
-- Split the message into segments if it includes newlines.
|
-- Split the message into segments if it includes newlines.
|
||||||
for line in msg:gmatch("([^\r\n]+)") do
|
for line in msg:gmatch("([^\r\n]+)") do
|
||||||
self:send("NOTICE %s :%s", verify(target, 3), line)
|
self:queue("NOTICE %s :%s", verify(target, 3), line)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function meta:join(channel, key)
|
function meta:join(channel, key)
|
||||||
if key then
|
if key then
|
||||||
self:send("JOIN %s :%s", verify(channel, 3), verify(key, 3))
|
self:queue("JOIN %s :%s", verify(channel, 3), verify(key, 3))
|
||||||
else
|
else
|
||||||
self:send("JOIN %s", verify(channel, 3))
|
self:queue("JOIN %s", verify(channel, 3))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function meta:part(channel)
|
function meta:part(channel)
|
||||||
channel = verify(channel, 3)
|
channel = verify(channel, 3)
|
||||||
self:send("PART %s", channel)
|
self:queue("PART %s", channel)
|
||||||
if self.track_users then
|
if self.track_users then
|
||||||
self.channels[channel] = nil
|
self.channels[channel] = nil
|
||||||
end
|
end
|
||||||
@ -83,5 +85,5 @@ function meta:setMode(t)
|
|||||||
mode = table.concat{mode, "-", verify(rem, 3)}
|
mode = table.concat{mode, "-", verify(rem, 3)}
|
||||||
end
|
end
|
||||||
|
|
||||||
self:send("MODE %s %s", verify(target, 3), mode)
|
self:queue("MODE %s %s", verify(target, 3), mode)
|
||||||
end
|
end
|
||||||
|
@ -159,3 +159,12 @@ function irc:shutdown()
|
|||||||
-- Apart from <code>nick</code>, fields may be missing. To fill them in, enable user tracking and use irc:whois.
|
-- Apart from <code>nick</code>, fields may be missing. To fill them in, enable user tracking and use irc:whois.
|
||||||
-- @name User
|
-- @name User
|
||||||
-- @class table
|
-- @class table
|
||||||
|
|
||||||
|
-- If you need a simple queue you can enable one by requiring "irc.queue".
|
||||||
|
-- Doind so will add the following features:
|
||||||
|
|
||||||
|
--- Queue a raw line of IRC to be sent to the server as soon as possible.
|
||||||
|
-- @param msg Line to be sent, excluding newline characters.
|
||||||
|
-- @param ... Format parameters for <code>msg</code>, with <code>string.format</code> semantics. [optional]
|
||||||
|
function irc:queue(msg, ...)
|
||||||
|
|
||||||
|
16
handlers.lua
16
handlers.lua
@ -8,7 +8,7 @@ module "irc"
|
|||||||
handlers = {}
|
handlers = {}
|
||||||
|
|
||||||
handlers["PING"] = function(o, prefix, query)
|
handlers["PING"] = function(o, prefix, query)
|
||||||
o:send("PONG :%s", query)
|
o:queue("PONG :%s", query)
|
||||||
end
|
end
|
||||||
|
|
||||||
handlers["001"] = function(o, prefix, me)
|
handlers["001"] = function(o, prefix, me)
|
||||||
@ -74,8 +74,22 @@ handlers["NICK"] = function(o, prefix, newnick)
|
|||||||
else
|
else
|
||||||
o:invoke("NickChange", user, newnick)
|
o:invoke("NickChange", user, newnick)
|
||||||
end
|
end
|
||||||
|
if user.nick == o.nick then
|
||||||
|
o.nick = newnick
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function needNewNick(o, prefix, target, badnick)
|
||||||
|
local newnick = o.nickGenerator(badnick)
|
||||||
|
o:queue("NICK %s", newnick)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- ERR_ERRONEUSNICKNAME (Misspelt but remains for historical reasons)
|
||||||
|
handlers["432"] = needNewNick
|
||||||
|
|
||||||
|
-- ERR_NICKNAMEINUSE
|
||||||
|
handlers["433"] = needNewNick
|
||||||
|
|
||||||
--NAMES list
|
--NAMES list
|
||||||
handlers["353"] = function(o, prefix, me, chanType, channel, names)
|
handlers["353"] = function(o, prefix, me, chanType, channel, names)
|
||||||
if o.track_users then
|
if o.track_users then
|
||||||
|
22
init.lua
22
init.lua
@ -31,14 +31,16 @@ function meta_preconnect.__index(o, k)
|
|||||||
return v
|
return v
|
||||||
end
|
end
|
||||||
|
|
||||||
function new(user)
|
function new(data)
|
||||||
local o = {
|
local o = {
|
||||||
nick = assert(user.nick, "Field 'nick' is required");
|
nick = assert(data.nick, "Field 'nick' is required");
|
||||||
username = user.username or "lua";
|
username = data.username or "lua";
|
||||||
realname = user.realname or "Lua owns";
|
realname = data.realname or "Lua owns";
|
||||||
|
nickGenerator = data.nickGenerator or defaultNickGenerator;
|
||||||
hooks = {};
|
hooks = {};
|
||||||
track_users = true;
|
track_users = true;
|
||||||
}
|
}
|
||||||
|
assert(checkNick(o.nick), "Erroneous nickname passed to irc.new")
|
||||||
return setmetatable(o, meta_preconnect)
|
return setmetatable(o, meta_preconnect)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -117,17 +119,17 @@ function meta_preconnect:connect(_host, _port)
|
|||||||
self.socket = s
|
self.socket = s
|
||||||
setmetatable(self, meta)
|
setmetatable(self, meta)
|
||||||
|
|
||||||
self:send("CAP REQ multi-prefix")
|
self:queue("CAP REQ multi-prefix")
|
||||||
|
|
||||||
self:invoke("PreRegister", self)
|
self:invoke("PreRegister", self)
|
||||||
self:send("CAP END")
|
self:queue("CAP END")
|
||||||
|
|
||||||
if password then
|
if password then
|
||||||
self:send("PASS %s", password)
|
self:queue("PASS %s", password)
|
||||||
end
|
end
|
||||||
|
|
||||||
self:send("NICK %s", self.nick)
|
self:queue("NICK %s", self.nick)
|
||||||
self:send("USER %s 0 * :%s", self.username, self.realname)
|
self:queue("USER %s 0 * :%s", self.username, self.realname)
|
||||||
|
|
||||||
self.channels = {}
|
self.channels = {}
|
||||||
|
|
||||||
@ -225,6 +227,6 @@ function meta:whois(nick)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function meta:topic(channel)
|
function meta:topic(channel)
|
||||||
self:send("TOPIC %s", channel)
|
self:queue("TOPIC %s", channel)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
45
queue.lua
Normal file
45
queue.lua
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
local getmetatable = getmetatable
|
||||||
|
local clock = os.clock
|
||||||
|
local remove = table.remove
|
||||||
|
local insert = table.insert
|
||||||
|
local select = select
|
||||||
|
|
||||||
|
module "irc"
|
||||||
|
|
||||||
|
local meta = _META
|
||||||
|
|
||||||
|
local old_new = new
|
||||||
|
function new(...)
|
||||||
|
local o = old_new(...)
|
||||||
|
o.messageQueue = {}
|
||||||
|
o.lastThought = 0
|
||||||
|
o.recentMessages = 0
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
local old_think = meta.think
|
||||||
|
function meta:think(...)
|
||||||
|
old_think(self, ...) -- Call old meta:think
|
||||||
|
|
||||||
|
-- Handle outgoing message queue
|
||||||
|
self.recentMessages = self.recentMessages - ((clock() - self.lastThought) * 8000)
|
||||||
|
if self.recentMessages < 0 then
|
||||||
|
self.recentMessages = 0
|
||||||
|
end
|
||||||
|
for i = 1, #self.messageQueue do
|
||||||
|
if self.recentMessages > 4 then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
self:send(remove(self.messageQueue, 1))
|
||||||
|
self.recentMessages = self.recentMessages + 1
|
||||||
|
end
|
||||||
|
self.lastThought = clock()
|
||||||
|
end
|
||||||
|
|
||||||
|
function meta:queue(msg, ...)
|
||||||
|
if select("#", ...) > 0 then
|
||||||
|
msg = msg:format(...)
|
||||||
|
end
|
||||||
|
insert(self.messageQueue, msg)
|
||||||
|
end
|
||||||
|
|
27
util.lua
27
util.lua
@ -1,9 +1,12 @@
|
|||||||
local setmetatable = setmetatable
|
local setmetatable = setmetatable
|
||||||
|
local sub = string.sub
|
||||||
|
local byte = string.byte
|
||||||
local char = string.char
|
local char = string.char
|
||||||
local table = table
|
local table = table
|
||||||
local assert = assert
|
local assert = assert
|
||||||
local tostring = tostring
|
local tostring = tostring
|
||||||
local type = type
|
local type = type
|
||||||
|
local random = math.random
|
||||||
|
|
||||||
module "irc"
|
module "irc"
|
||||||
|
|
||||||
@ -107,3 +110,27 @@ local underlineByte = char(31)
|
|||||||
function underline(text)
|
function underline(text)
|
||||||
return underlineByte..text..underlineByte
|
return underlineByte..text..underlineByte
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function checkNick(nick)
|
||||||
|
return nick:find("^[a-zA-Z_%-%[|%]%^{|}`][a-zA-Z0-9_%-%[|%]%^{|}`]*$") ~= nil
|
||||||
|
end
|
||||||
|
|
||||||
|
function defaultNickGenerator(nick)
|
||||||
|
-- LuaBot -> LuaCot -> LuaCou -> ...
|
||||||
|
-- We change a random charachter rather than appending to the
|
||||||
|
-- nickname as otherwise the new nick could exceed the ircd's
|
||||||
|
-- maximum nickname length.
|
||||||
|
local randindex = random(1, #nick)
|
||||||
|
local randchar = sub(nick, randindex, randindex)
|
||||||
|
local b = byte(randchar)
|
||||||
|
b = b + 1
|
||||||
|
if b < 65 or b > 125 then
|
||||||
|
b = 65
|
||||||
|
end
|
||||||
|
-- Get the halves before and after the changed character
|
||||||
|
local first = sub(nick, 1, randindex - 1)
|
||||||
|
local last = sub(nick, randindex + 1, #nick)
|
||||||
|
nick = first..char(b)..last -- Insert the new charachter
|
||||||
|
return nick
|
||||||
|
end
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user