Legend:
Library
Module
Module type
Parameter
Class
Class type
Command Type
A command is a particular rule for reacting to what is said on IRC. Typically, a command takes a Core.t (to be able to answer and perform IRC actions) and an input message, and it decides whether to do something or not based on the message.
The command returns a res, which specifies whether it successfully "caught" the message (no need then for other commands to run), if it didn't react ("skip") so we can try the other commands, or whether it failed when trying to answer.
A command, bundling some metadata (name + descr, used for "!help"), a priority (used to run some commands before the others), and the answering function itself
val match_prefix1 : prefix:string ->Core.privmsg->string option
match_prefix1 ~prefix:"foo" msg
if msg="!foo bar", returns Some bar
if msg="!something else", returns None
val extract_hl : string ->(string * string) option
extract_hl "foo > bar" returns Some ("foo", "bar"). Returns None if it cannot split on ">" cleanly.
val match_prefix1_full :
prefix:string ->Core.privmsg->(string * string option) option
Make a command using the given methods. Only the name and matching rules are requested
exceptionFailof string
val make_simple :
?descr:string ->?prio:int ->prefix:string ->(Core.privmsg->string ->string optionLwt.t)->t
make_simple ~pre f matches messages of the form "!pre xxx", and call f msg "xxx". The function returns 0 or 1 line to reply to sender. The function can raise Fail to indicate failure
val make_simple_l :
?descr:string ->?prio:int ->prefix:string ->(Core.privmsg->string ->string listLwt.t)->t
Same as make_simple but replies lines The function can raise Fail to indicate failure
val make_simple_query_l :
?descr:string ->?prio:int ->prefix:string ->(Core.privmsg->string ->string listLwt.t)->t
Same as make_simple_l but replies lines in query (private) The function can raise Fail to indicate failure