aboutsummaryrefslogtreecommitdiff
path: root/bin/bot.ml
diff options
context:
space:
mode:
authorAdelyn Breelove <[email protected]>2019-02-13 10:58:39 -0700
committerAdelyn Breelove <[email protected]>2019-02-13 10:58:39 -0700
commitafa6b297bd7bf9361727ae78794d9310d3678d13 (patch)
tree7b0a4cda613e07585e16a3bdf48135cecb3b5174 /bin/bot.ml
parentAdd docs to cache (diff)
downloaddisml-afa6b297bd7bf9361727ae78794d9310d3678d13.tar.xz
disml-afa6b297bd7bf9361727ae78794d9310d3678d13.zip
Re-arrange and whatnot
Diffstat (limited to 'bin/bot.ml')
-rw-r--r--bin/bot.ml125
1 files changed, 12 insertions, 113 deletions
diff --git a/bin/bot.ml b/bin/bot.ml
index 8f57b1f..64d9ead 100644
--- a/bin/bot.ml
+++ b/bin/bot.ml
@@ -3,9 +3,6 @@ open Core
open Disml
open Models
-(* Client object will be stored here after creation. *)
-let client = Ivar.create ()
-
(* Define a function to handle message_create *)
let check_command (message:Message.t) =
(* Simple example of command parsing. *)
@@ -13,115 +10,17 @@ let check_command (message:Message.t) =
| hd::tl -> hd, tl
| [] -> "", []
in match cmd with
- | "!ping" -> (* Example ping command with REST round trip time edited into the response. *)
- Message.reply message "Pong!" >>> begin function
- | Ok message ->
- let diff = Time.diff (Time.now ()) (Time.of_string message.timestamp) in
- Message.set_content message (Printf.sprintf "Pong! `%d ms`" (Time.Span.to_ms diff |> Float.abs |> Float.to_int)) >>> ignore
- | Error e -> Error.raise e
- end
- | "!spam" -> (* Send a list of consecutive integers of N size with 1 message per list item. *)
- let count = Option.((List.hd rest >>| Int.of_string) |> value ~default:0) in
- List.range 0 count
- |> List.iter ~f:(fun i -> Message.reply message (string_of_int i) >>> ignore)
- | "!list" -> (* Send a list of consecutive integers of N size in a single message. *)
- let count = Option.((List.hd rest >>| Int.of_string) |> value ~default:0) in
- let list = List.range 0 count
- |> List.sexp_of_t Int.sexp_of_t
- |> Sexp.to_string_hum in
- Message.reply message list >>> begin function
- | Ok msg -> print_endline msg.content
- | Error err -> print_endline (Error.to_string_hum err)
- end
- | "!fold" -> (* Sum a consecutive list of integers of N size and send the result. *)
- let count = Option.((List.hd rest >>| Int.of_string) |> value ~default:0) in
- let list = List.range 0 count
- |> List.fold ~init:0 ~f:(+)
- |> Int.to_string in
- Message.reply message list >>> ignore
- | "!embed" -> (* Example of setting pretty much everything in an embed using the Embed module builders *)
- let image_url = "https://cdn.discordapp.com/avatars/345316276098433025/17ccdc992814cc6e21a9e7d743a30e37.png" in
- let embed = Embed.(default
- |> title "Foo"
- |> description "Bar"
- |> url "https://gitlab.com/Mishio595/disml"
- |> timestamp Time.(now () |> to_string_iso8601_basic ~zone:Time.Zone.utc)
- |> colour 0xff
- |> footer (fun f -> footer_text "boop" f)
- |> image image_url
- |> thumbnail image_url
- |> author (fun a -> a
- |> author_name "Adelyn"
- |> author_icon image_url
- |> author_url "https://gitlab.com/Mishio595/disml")
- |> field ("field 3", "test", true)
- |> field ("field 2", "test", true)
- |> field ("field 1", "test", true)
- ) in
- Message.reply_with ~embed message >>> ignore
- | "!status" -> (* Set the status of all shards to a given string. *)
- let status = List.fold ~init:"" ~f:(fun a v -> a ^ " " ^ v) rest in
- Ivar.read client >>> fun client ->
- Client.set_status ~status:(`String status) client
- >>> fun _ ->
- Message.reply message "Updated status" >>> ignore
- | "!test" -> (* Basic send message to channel ID, can use any ID as `Channel_id some_snowflake *)
- Channel_id.say "Testing..." message.channel_id >>> ignore
- | "!echo" -> (* Fetches a message by ID in the current channel, defaulting to the sent message, and prints in s-expr form. *)
- let `Message_id id = message.id in
- let id = Option.((List.hd rest >>| Int.of_string) |> value ~default:id) in
- Channel_id.get_message ~id message.channel_id >>> begin function
- | Ok msg ->
- let str = Message.sexp_of_t msg |> Sexp.to_string_hum in
- print_endline str;
- Message.reply message (Printf.sprintf "```lisp\n%s```" str) >>> ignore
- | _ -> ()
- end
- | "!cache" -> (* Output cache counts as a a basic embed. *)
- let module C = Cache.ChannelMap in
- let module G = Cache.GuildMap in
- let module U = Cache.UserMap in
- let cache = Mvar.peek_exn Cache.cache in
- let gc = G.length cache.guilds in
- let tc = C.length cache.text_channels in
- let vc = C.length cache.voice_channels in
- let cs = C.length cache.categories in
- let gr = C.length cache.groups in
- let pr = C.length cache.private_channels in
- let uc = U.length cache.users in
- let pre = U.length cache.presences in
- let user = Option.(value ~default:"None" (cache.user >>| User.tag)) in
- let embed = Embed.(default
- |> description (Printf.sprintf "Guilds: %d\nText Channels: %d\nVoice Channels: %d\nCategories: %d\nGroups: %d\nPrivate Channels: %d\nUsers: %d\nPresences: %d\nCurrent User: %s" gc tc vc cs gr pr uc pre user)) in
- Message.reply_with ~embed message >>> ignore
- | "!shutdown" -> (* Issue a shutdown to all shards. It is expected that they will restart if `?restart` is not false. *)
- Ivar.read client >>> fun client ->
- Sharder.shutdown_all client.sharder >>> ignore
- | "!rgm" -> (* Request guild members to be sent over the gateway for the guild the command is run in. This will cause multiple GUILD_MEMBERS_CHUNK events. *)
- Ivar.read client >>> fun client ->
- (match message.guild_id with
- | Some guild -> Client.request_guild_members ~guild client >>> ignore
- | None -> ())
- | "!rep" ->
- let input = Option.(List.hd rest |> value ~default:"a") in
- let list = List.(range 0 2000 >>| (fun _ -> input) |> fold ~init:"" ~f:(^)) in
- Message.reply message list >>= begin function
- | Ok m ->
- String.length m.content
- |> Int.to_string
- |> (^) "Bytes: "
- |> Message.reply m
- | Error e -> Message.reply message (Error.to_string_hum e)
- end >>> ignore
- | "!new" -> (* Creates a guild named testing *)
- Guild.create [ "name", `String "testing" ] >>= begin function
- | Ok _ -> Message.reply message "Guild created"
- | Error e -> Message.reply message (Printf.sprintf "Failed to create guild. Error: %s" (Error.to_string_hum e))
- end >>> ignore
- | "!delall" -> (* Deletes all guilds named testing *)
- let cache = Mvar.peek_exn Cache.cache in
- let guilds = Cache.GuildMap.filter cache.guilds ~f:(fun g -> g.name = "testing") in
- let _ = Cache.GuildMap.map guilds ~f:Guild.delete in ()
+ | "!ping" -> Commands.ping message rest
+ | "!spam" -> Commands.spam message rest
+ | "!list" -> Commands.list message rest
+ | "!embed" -> Commands.embed message rest
+ | "!status" -> Commands.status message rest
+ | "!echo" -> Commands.echo message rest
+ | "!cache" -> Commands.cache message rest
+ | "!shutdown" -> Commands.shutdown message rest
+ | "!rgm" -> Commands.request_members message rest
+ | "!new" -> Commands.new_guild message rest
+ | "!delall" -> Commands.delete_guilds message rest
| _ -> () (* Fallback case, no matched command. *)
(* Example logs setup *)
@@ -144,7 +43,7 @@ let main () =
(* Start client. *)
Client.start ~large:250 ~compress:true token
(* Fill that ivar once its done *)
- >>> Ivar.fill client
+ >>> Ivar.fill Commands.client
(* Lastly, we have to register this to the Async Scheduler for anything to work *)
let _ =