Refactor how commands are handled.

I may refactor it again.
This commit is contained in:
Neale Pickett 2008-05-10 21:10:45 -06:00
parent 2ff9e84199
commit cf9bdcb93a
5 changed files with 51 additions and 47 deletions

View File

@ -50,38 +50,39 @@ let broadcast ?(metoo=false) chan sender command args text =
let reply iobuf nick num ?(args=[]) text = let reply iobuf nick num ?(args=[]) text =
write iobuf num (nick :: args) (Some text) write iobuf num (nick :: args) (Some text)
let handle_command cli nuhost cmd = let handle_action (cli_iobuf, cli_nuhost) chan_name action args text =
match (Command.as_tuple cmd) with let chanopt = try
| (None, ("NOTICE" as cmd_name), [name], Some text) Some (String_map.find chan_name !by_name)
| (None, ("PRIVMSG" as cmd_name), [name], Some text) -> with Not_found ->
let nick = Irc.nick nuhost in None
(try in
let chan = String_map.find name !by_name in let nick = Irc.nick cli_nuhost in
if String_map.mem nick !(chan.clients) then match (action, chanopt, args, text) with
broadcast chan (cli, nuhost) cmd_name [name] (Some text) | ("NOTICE", Some chan, [], Some text)
else | ("PRIVMSG", Some chan, [], Some text) ->
reply cli nick "404" ~args:[name] "Cannot send to channel"
with Not_found ->
reply cli nick "403" ~args:[name] "No such channel")
| (None, "JOIN", ["0"], None) ->
(* Leave all channels *)
failwith "XXX: JOIN 0"
| (None, "JOIN", [name], None) ->
let nick = Irc.nick nuhost in
let chan =
try
String_map.find name !by_name
with Not_found ->
let c = {name = name; modes = ref ""; clients = ref String_map.empty} in
by_name := String_map.add name c !by_name;
c
in
if String_map.mem nick !(chan.clients) then if String_map.mem nick !(chan.clients) then
(* Apparently we're expected to drop the command *) broadcast chan (cli_iobuf, cli_nuhost) action [chan_name] (Some text)
()
else else
let me = (cli, nuhost) in reply cli_iobuf nick "404" ~args:[chan_name] "Cannot send to channel (join first)"
chan.clients := String_map.add nick me !(chan.clients); | ("JOIN", _, _, None) ->
broadcast ~metoo:true chan me "JOIN" [name] None let chan =
| _ -> match chanopt with
() | Some chan ->
chan
| None ->
let c = {name = chan_name; modes = ref ""; clients = ref String_map.empty} in
by_name := String_map.add chan_name c !by_name;
c
in
if String_map.mem nick !(chan.clients) then
(* Apparently we're expected to drop the command *)
()
else
let me = (cli_iobuf, cli_nuhost) in
chan.clients := String_map.add nick me !(chan.clients);
broadcast ~metoo:true chan me "JOIN" [chan.name] None
| (_, None, _, _) ->
reply cli_iobuf nick "403" ~args:[chan_name] "No such channel"
| _ ->
()

View File

@ -2,6 +2,9 @@ type t
val modes : string val modes : string
val handle_command : Iobuf.t -> Irc.nuhost -> Command.t -> unit (** [handle_action (cli_iobuf, cli_nuhost) chan_name action args text]
handles [action] on [chan_name] with arguments [args] and text
[text], sent by [cli_nuhost] from [cli_iobuf] *)
val handle_action : (Iobuf.t * Irc.nuhost) -> string -> string -> string list -> string option -> unit
val is_channel_name : string -> bool val is_channel_name : string -> bool

View File

@ -56,8 +56,8 @@ let handle_command cli iobuf cmd =
Iobuf.close iobuf message Iobuf.close iobuf message
| (None, "JOIN", ["0"], None) -> | (None, "JOIN", ["0"], None) ->
() ()
| (None, "JOIN", [channels], None) -> | (None, "JOIN", [chan_name], None) ->
Channel.handle_command cli.iobuf (nuhost cli) cmd Channel.handle_action (cli.iobuf, (nuhost cli)) chan_name "JOIN" [] None
| (None, "JOIN", [channels; keys], None) -> | (None, "JOIN", [channels; keys], None) ->
() ()
| (None, "PART", [channels], message) -> | (None, "PART", [channels], message) ->
@ -74,17 +74,17 @@ let handle_command cli iobuf cmd =
() ()
| (None, "KICK", [channels; users], comment) -> | (None, "KICK", [channels; users], comment) ->
() ()
| (None, ("PRIVMSG" as command), [target], Some text) | (None, ("PRIVMSG" as action), [target], Some text)
| (None, ("NOTICE" as command), [target], Some text) -> | (None, ("NOTICE" as action), [target], Some text) ->
if Channel.is_channel_name target then if Channel.is_channel_name target then
Channel.handle_command cli.iobuf (nuhost cli) cmd Channel.handle_action (cli.iobuf, (nuhost cli)) target action [] (Some text)
else else
begin begin
try try
let peer = lookup target in let peer = lookup target in
write peer write peer
(Some (Irc.string_of_nuhost (nuhost cli))) (Some (Irc.string_of_nuhost (nuhost cli)))
command [target] (Some text) action [target] (Some text)
with Not_found -> with Not_found ->
reply cli "401" ~args:[target] "No such nick/channel" reply cli "401" ~args:[target] "No such nick/channel"
end end

View File

@ -414,9 +414,13 @@ let regression_tests =
[ [
Send "ISON bob\r\n"; Send "ISON bob\r\n";
Recv ":testserver.test 303 alice :bob\r\n"; Recv ":testserver.test 303 alice :bob\r\n";
Send "PRIVMSG #foo :snot\r\n";
Recv ":testserver.test 403 alice #foo :No such channel\r\n";
Send "NOTICE #foo :snot\r\n";
Recv ":testserver.test 403 alice #foo :No such channel\r\n";
Send "JOIN #foo\r\n"; Send "JOIN #foo\r\n";
Recv ":alice!alice@UDS JOIN #foo\r\n"; Recv ":alice!alice@UDS JOIN #foo\r\n";
Send "PRIVMSG bob :Hi Bob!\r\n"; Send "PRIVMSG bob :Come to #foo\r\n";
Recv ":bob!bob@UDS JOIN #foo\r\n"; Recv ":bob!bob@UDS JOIN #foo\r\n";
Send "PRIVMSG #foo :hello bob\r\n"; Send "PRIVMSG #foo :hello bob\r\n";
Recv ":bob!bob@UDS NOTICE #foo :hello alice\r\n"; Recv ":bob!bob@UDS NOTICE #foo :hello alice\r\n";
@ -429,11 +433,7 @@ let regression_tests =
[ [
Send "ISON alice charlie\r\n"; Send "ISON alice charlie\r\n";
Recv ":testserver.test 303 bob :alice\r\n"; Recv ":testserver.test 303 bob :alice\r\n";
Recv ":alice!alice@UDS PRIVMSG bob :Hi Bob!\r\n"; Recv ":alice!alice@UDS PRIVMSG bob :Come to #foo\r\n";
Send "PRIVMSG #foo :snot\r\n";
Recv ":testserver.test 404 bob #foo :Cannot send to channel\r\n";
Send "NOTICE #foo :snot\r\n";
Recv ":testserver.test 404 bob #foo :Cannot send to channel\r\n";
Send "JOIN #foo\r\n"; Send "JOIN #foo\r\n";
Recv ":bob!bob@UDS JOIN #foo\r\n"; Recv ":bob!bob@UDS JOIN #foo\r\n";
Recv ":alice!alice@UDS PRIVMSG #foo :hello bob\r\n"; Recv ":alice!alice@UDS PRIVMSG #foo :hello bob\r\n";