mirror of
https://github.com/ShadowNinja/LuaIRC.git
synced 2025-07-20 16:40:26 +02:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
1bd7833f18 | |||
b1cbbf1963 | |||
5ab24e9ad1 | |||
be620c428e | |||
8a2e47a326 |
30
handlers.lua
30
handlers.lua
@ -74,6 +74,36 @@ 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
|
||||||
|
|
||||||
|
local function needNewNick(o, prefix, target, badnick)
|
||||||
|
local newnick = o.nickGenerator(badnick)
|
||||||
|
o:send("NICK %s", newnick)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- ERR_ERRONEUSNICKNAME (Misspelt but remains for historical reasons)
|
||||||
|
handlers["432"] = needNewNick
|
||||||
|
|
||||||
|
-- ERR_NICKNAMEINUSE
|
||||||
|
handlers["433"] = needNewNick
|
||||||
|
|
||||||
|
-- RPL_ISUPPORT
|
||||||
|
handlers["005"] = function(o, prefix, nick, ...)
|
||||||
|
local list = {...}
|
||||||
|
local listlen = #list
|
||||||
|
-- Skip last parameter (info)
|
||||||
|
for i = 1, listlen - 1 do
|
||||||
|
local item = list[i]
|
||||||
|
local pos = item:find("=")
|
||||||
|
if pos then
|
||||||
|
o.supports[item:sub(1, pos - 1)] = item:sub(pos + 1)
|
||||||
|
else
|
||||||
|
o.supports[item] = true
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--NAMES list
|
--NAMES list
|
||||||
|
11
init.lua
11
init.lua
@ -31,14 +31,17 @@ 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;
|
||||||
|
supports = {};
|
||||||
}
|
}
|
||||||
|
assert(checkNick(o.nick), "Erroneous nickname passed to irc.new")
|
||||||
return setmetatable(o, meta_preconnect)
|
return setmetatable(o, meta_preconnect)
|
||||||
end
|
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