Add IRC client.

master
Fabien Freling 2014-03-09 18:28:02 +01:00
parent 3749a2a973
commit b3f1423b54
2 changed files with 41 additions and 0 deletions

View File

@ -1,2 +1,3 @@
true: package(ssl,netclient,netstring,equeue-ssl)
<test.*>: package(oUnit)
<irc.*>: package(irc-client.lwt)

40
ocaml/irc.ml Normal file
View File

@ -0,0 +1,40 @@
open Irc_client_lwt.Io
module C = Irc_client_lwt.Client
let string_opt_to_string = function
| None -> "None"
| Some s -> Printf.sprintf "Some %s" s
let string_list_to_string string_list =
Printf.sprintf "[%s]" (String.concat "; " string_list)
let callback input =
let open Irc_message in
match input with
| Message {prefix=prefix; command=command; params=params; trail=trail} ->
(
Lwt_io.printf "Got message: prefix=%s; command=%s; params=%s; trail=%s\n"
(string_opt_to_string prefix)
command
(string_list_to_string params)
(string_opt_to_string trail)
)
| Parse_error (raw, error) ->
Lwt_io.printf "Failed to parse \"%s\" because: %s" raw error
let lwt_main =
let server = "193.219.128.49" in (* "chat.freenode.net" *)
let chan = "#cheeseburger" in
C.connect ~server ~port:6667 ~username:"cheesebot"
~mode:0 ~realname:"CheeseBot" ~nick:"cheesebot" ~password:"cheese"
>>= (fun connection ->
Lwt_io.printl "Connected"
>>= (fun () -> C.send_join ~connection ~channel:chan)
>>= (fun () -> C.send_privmsg ~connection ~target:chan ~message:"hi")
>>= (fun () -> C.listen ~connection ~callback)
>>= (fun () -> C.send_quit ~connection))
let () =
Lwt_main.run lwt_main