Compare commits

...

3 Commits
master ... fix

Author SHA1 Message Date
darkf 379aa7fc99 fix state passing 2017-06-07 16:55:05 +00:00
Nicholas Chambers 9e78e6f97d fixed config.lamb defaults 2017-06-06 18:14:06 +01:00
Nicholas Chambers 53959f9f87 Added SASL support. 2017-06-06 18:09:04 +01:00
3 changed files with 36 additions and 8 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
factoids.txt
std

View File

@ -3,6 +3,7 @@
HOST = "127.0.0.1".
PORT = 6667.
NICK = "lambot".
PASS = "YOUR_PASS_HERE".
LASTFM_API_KEY = "YOUR_LASTFM_API_KEY_HERE".
@ -10,4 +11,4 @@ LASTFM_API_KEY = "YOUR_LASTFM_API_KEY_HERE".
ADMINS = ["darkf"].
-- channels to join
CHANS = ["#lobby"].
CHANS = ["#lounge"].

View File

@ -1,3 +1,4 @@
import("std/base64").
import("std/list").
import("std/str").
import("std/http").
@ -262,6 +263,28 @@ handleCommand(s, _, "251", _) -> s. -- There are X users and Y services on Z ser
handleCommand(s, _, "331", _) -> s. -- No topic is set
handleCommand(s, _, "366", _) -> s. -- End of NAMES list
handleCommand(s, _, "CAP", ["*", "ACK", "sasl "]) -> do
putstrln("Starting SASL handshake.");
fputstr(sock, "AUTHENTICATE PLAIN\r\n");
s
end.
handleCommand(s, _, "AUTHENTICATE", ["+"]) -> do
auth = base64\base64_encode(config\NICK + "\0" + config\NICK + "\0" + config\PASS);
fputstr(sock, "AUTHENTICATE " + auth + "\r\n");
s
end.
handleCommand(s, _, "903", _) -> do
putstrln("SASL authentication successful.");
fputstr(sock, "CAP END\r\n");
fputstr(sock, "NICK " + config\NICK + "\r\n");
fputstr(sock, "USER " + config\NICK + " 0 * :Lamb Da. Bot\r\n");
joinChans() -> list\map(\chan -> fputstr(sock, "JOIN " + chan + "\r\n"), config\CHANS);
joinChans();
s
end.
handleCommand(s, src, cmd, args) -> do
putstrln("Unhandled command: " + cmd + ", with args: " + repr(args) + " from " + src);
s
@ -286,13 +309,15 @@ end.
sock = sockopen(config\HOST, config\PORT).
-- send introduction
fputstr(sock, "PASS " + config\NICK + "\r\n").
fputstr(sock, "NICK " + config\NICK + "\r\n").
fputstr(sock, "USER " + config\NICK + " 0 * :Lamb Da. Bot\r\n").
-- note: workaround for issue #19 (passing lambdas to modules in the global scope is incorrect)
joinChans() -> list\map(\chan -> fputstr(sock, "JOIN " + chan + "\r\n"), config\CHANS).
joinChans().
if config\PASS == "" then do
fputstr(sock, "NICK " + config\NICK + "\r\n");
fputstr(sock, "USER " + config\NICK + " 0 * :Lamb Da. Bot\r\n");
joinChans() -> list\map(\chan -> fputstr(sock, "JOIN " + chan + "\r\n"), config\CHANS);
joinChans()
end
else do
fputstr(sock, "CAP REQ :sasl\r\n")
end.
-- loop receiving lines
mainloop(state) ->