forked from discord-haskell/discord-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteraction-commands.hs
481 lines (459 loc) · 21.7 KB
/
interaction-commands.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ViewPatterns #-}
import Control.Monad (when)
import qualified Data.ByteString as B
import Data.Char (isDigit)
import Data.Functor ((<&>))
import Data.List (transpose)
import qualified Data.Text as T
import qualified Data.Text.IO as TIO
import Discord
import Discord.Interactions
import qualified Discord.Requests as R
import Discord.Types
import UnliftIO (liftIO)
import UnliftIO.Concurrent
import ExampleUtils (getToken, getGuildId, actionWithChannelId)
main :: IO ()
main = interactionCommandExample
void :: DiscordHandler (Either RestCallErrorCode b) -> DiscordHandler ()
void =
( >>=
( \case
Left e -> liftIO $ print e
Right _ -> return ()
)
)
-- | Creates and manages a variety of interactions, including a tic tac toe example.
interactionCommandExample :: IO ()
interactionCommandExample = do
tok <- getToken
testserverid <- getGuildId
-- open ghci and run [[ :info RunDiscordOpts ]] to see available fields
t <-
runDiscord $
def
{ discordToken = tok,
discordOnStart = startHandler testserverid,
discordOnEnd = liftIO $ putStrLn "Ended",
discordOnEvent = eventHandler testserverid,
discordOnLog = \s -> TIO.putStrLn s >> TIO.putStrLn "",
discordGatewayIntent = def {gatewayIntentMembers = True, gatewayIntentPresences = True}
}
TIO.putStrLn t
-- If the start handler throws an exception, discord-haskell will gracefully shutdown
-- Use place to execute commands you know you want to complete
startHandler :: GuildId -> DiscordHandler ()
startHandler testserverid = do
let activity = mkActivity "interaction-commands" ActivityTypeGame
let opts =
UpdateStatusOpts
{ updateStatusOptsSince = Nothing,
updateStatusOptsActivities = [activity],
updateStatusOptsNewStatus = UpdateStatusOnline,
updateStatusOptsAFK = False
}
sendCommand (UpdateStatus opts)
actionWithChannelId testserverid $ \cid ->
void $
restCall $
R.CreateMessage
cid
"Hello! I will reply to pings with pongs"
-- | Example user command
exampleUserCommand :: Maybe CreateApplicationCommand
exampleUserCommand = createUser "usercomm"
-- | Example slash command that has subcommands and multiple types of fields.
newExampleSlashCommand :: Maybe CreateApplicationCommand
newExampleSlashCommand =
createChatInput
"subtest"
"testing out subcommands"
>>= \d ->
Just $
d
{ createOptions =
Just
( OptionsSubcommands
[ OptionSubcommandGroup
"frstsubcmdgrp"
Nothing
"the sub command group"
Nothing
[ OptionSubcommand
"frstsubcmd"
Nothing
"the first sub sub command"
Nothing
[ OptionValueString
"onestringinput"
Nothing
"two options"
Nothing
True
( Right
[ Choice "green" Nothing "green",
Choice "red" Nothing "red"
]
)
Nothing
Nothing,
OptionValueInteger "oneintinput" Nothing "choices galore" Nothing False (Left False) Nothing Nothing
]
],
OptionSubcommandOrGroupSubcommand $
OptionSubcommand
"frstsubcmd"
Nothing
"the first subcommand"
Nothing
[ OptionValueString
"onestringinput"
Nothing
"two options"
Nothing
True
( Right
[ Choice "yellow" Nothing "yellow",
Choice "blue" Nothing "blue"
]
)
Nothing
Nothing
],
OptionSubcommandOrGroupSubcommand $
OptionSubcommand
"sndsubcmd"
Nothing
"the second subcommand"
Nothing
[ OptionValueBoolean
"trueorfalse"
Nothing
"true or false"
Nothing
True,
OptionValueNumber
"numbercomm"
Nothing
"number option"
Nothing
False
(Left True)
(Just 3.1415)
(Just 101),
OptionValueInteger
"numbercomm2"
Nothing
"another number option"
Nothing
False
(Right [Choice "one" Nothing 1, Choice "two" Nothing 2, Choice "minus 1" Nothing (-1)])
(Just $ -1)
(Just $ -2),
OptionValueInteger
"numbercomm3"
Nothing
"another another number option"
Nothing
False
(Left True)
(Just $ -50)
(Just 50),
OptionValueUser
"user"
Nothing
"testing asking for a user"
Nothing
False,
OptionValueChannel
"channel"
Nothing
"testing asking for a channel"
Nothing
False
(Just [ChannelTypeOptionGuildVoice]),
OptionValueMentionable
"mentionable"
Nothing
"testing asking for a mentionable"
Nothing
False
]
]
)
}
-- | An example slash command.
exampleSlashCommand :: Maybe CreateApplicationCommand
exampleSlashCommand =
createChatInput
"test"
"here is a description"
>>= \cac ->
return $
cac
{ createOptions =
Just $
OptionsValues
[ OptionValueString
"randominput"
Nothing
"I shall not"
Nothing
True
(Right [Choice "firstOpt" Nothing "yay", Choice "secondOpt" Nothing "nay"])
Nothing
Nothing
]
}
exampleInteractionResponse :: OptionsData -> InteractionResponse
exampleInteractionResponse (OptionsDataValues [OptionDataValueString {optionDataValueString = s}]) =
interactionResponseBasic (T.pack $ "Here's the reply! You chose: " ++ show s)
exampleInteractionResponse _ =
interactionResponseBasic
"Something unexpected happened - the value was not what I expected!"
getImage :: IO B.ByteString
getImage = return "\137PNG\r\n\SUB\n\NUL\NUL\NUL\rIHDR\NUL\NUL\NUL\SOH\NUL\NUL\NUL\SOH\b\STX\NUL\NUL\NUL\144wS\222\NUL\NUL\NUL\SOHsRGB\NUL\174\206\FS\233\NUL\NUL\NUL\EOTgAMA\NUL\NUL\177\143\v\252a\ENQ\NUL\NUL\NUL\tpHYs\NUL\NUL\SO\195\NUL\NUL\SO\195\SOH\199o\168d\NUL\NUL\NUL\fIDAT\CANWc\248\239\180\t\NUL\EOT7\SOH\244\162\155\ENQ\235\NUL\NUL\NUL\NULIEND\174B`\130"
-- If an event handler throws an exception, discord-haskell will continue to run
eventHandler :: GuildId -> Event -> DiscordHandler ()
eventHandler testserverid event = case event of
MessageCreate m -> when (not (fromBot m) && isPing m) $ do
void $ restCall (R.CreateReaction (messageChannelId m, messageId m) "eyes")
threadDelay (2 * 10 ^ (6 :: Int))
-- A very simple message.
void $ restCall (R.CreateMessage (messageChannelId m) "Pong!")
exampleImage <- liftIO getImage
-- A more complex message. Text-to-speech, does not mention everyone nor
-- the user, and uses Discord native replies.
-- Use ":info" in ghci to explore the type
let opts :: R.MessageDetailedOpts
opts =
def
{ R.messageDetailedContent = "Here's a more complex message, but doesn't ping @everyone!",
R.messageDetailedTTS = True,
R.messageDetailedAllowedMentions =
Just $
def
{ R.mentionEveryone = False,
R.mentionRepliedUser = False
},
R.messageDetailedReference =
Just $
def {referenceMessageId = Just $ messageId m}
}
void $ restCall (R.CreateMessageDetailed (messageChannelId m) opts)
let opts' :: R.MessageDetailedOpts
opts' =
def
{ R.messageDetailedContent = "An example of a message with buttons!",
R.messageDetailedComponents =
Just
[ ActionRowButtons
[ Button "Button 1" False ButtonStylePrimary (Just "Button 1") (Just (mkEmoji "🔥")),
Button "Button 2" True ButtonStyleSuccess (Just "Button 2") Nothing,
ButtonUrl
"https://github.com/discord-haskell/discord-haskell"
False
(Just "Button 3")
Nothing
],
ActionRowSelectMenu
( SelectMenu
"action select menu"
False
(SelectMenuDataText [ SelectOption "First option" "opt1" (Just "the only desc") Nothing Nothing,
SelectOption "Second option" "opt2" Nothing (Just (mkEmoji "😭")) (Just True),
SelectOption "third option" "opt3" Nothing Nothing Nothing,
SelectOption "fourth option" "opt4" Nothing Nothing Nothing,
SelectOption "fifth option" "opt5" Nothing Nothing Nothing
])
(Just "this is a place holder")
(Just 2)
(Just 5)
),
ActionRowSelectMenu
( SelectMenu
"user select menu"
False
SelectMenuDataUser
(Just "this is a place holder")
(Just 3)
(Just 3)
),
ActionRowSelectMenu
( SelectMenu
"channel select menu"
False
(SelectMenuDataChannels [ChannelTypeOptionGuildText,ChannelTypeOptionGuildPublicThread,ChannelTypeOptionGuildCategory])
(Just "this is a place holder")
(Just 1)
(Just 1)
)
],
R.messageDetailedEmbeds =
Just
[ def
{ createEmbedTitle = "Title",
createEmbedDescription = "the description",
createEmbedAuthorName = "Author name is Required",
createEmbedImage = Just (CreateEmbedImageUrl "https://media.discordapp.net/attachments/365969021083975681/936055590415921172/Warning.png"),
createEmbedColor = Just DiscordColorLuminousVividPink,
createEmbedAuthorIcon = Just (CreateEmbedImageUpload exampleImage)
},
def {createEmbedTitle = "a different Title", createEmbedDescription = "another desc"}
]
}
tictactoe :: R.MessageDetailedOpts
tictactoe =
def
{ R.messageDetailedContent = "Playing tic tac toe! Player 0",
R.messageDetailedComponents = Just $ updateTicTacToe Nothing []
}
void $ restCall (R.CreateMessageDetailed (messageChannelId m) opts')
void $ restCall (R.CreateMessageDetailed (messageChannelId m) tictactoe)
Ready _ _ _ _ _ _ (PartialApplication i _) -> do
vs <-
mapM
(maybe (return (Left $ RestCallErrorCode 0 "" "")) (restCall . R.CreateGuildApplicationCommand i testserverid))
[exampleSlashCommand, exampleUserCommand, newExampleSlashCommand, createChatInput "modal" "modal test"]
liftIO (putStrLn $ "number of application commands added " ++ show (length vs))
acs <- restCall (R.GetGuildApplicationCommands i testserverid)
case acs of
Left r -> liftIO $ print r
Right ls -> liftIO $ putStrLn $ "number of application commands total " ++ show (length ls)
InteractionCreate InteractionComponent {componentData = cb@ButtonData {componentDataCustomId = (T.take 3 -> "ttt")}, ..} -> case processTicTacToe cb interactionMessage of
[r] ->
void
( restCall
( R.CreateInteractionResponse
interactionId
interactionToken
(InteractionResponseUpdateMessage r)
)
)
r : rs ->
void
( restCall $
R.CreateInteractionResponse
interactionId
interactionToken
(InteractionResponseUpdateMessage r)
)
>> mapM_
( restCall
. R.CreateFollowupInteractionMessage
interactionApplicationId
interactionToken
)
rs
_ -> return ()
InteractionCreate InteractionApplicationCommand {applicationCommandData = ApplicationCommandDataUser {applicationCommandDataName = nm, applicationCommandDataTargetUserId = uid, ..}, ..} ->
void $
restCall
(R.CreateInteractionResponse interactionId interactionToken (interactionResponseBasic $ "Command " <> nm <> T.pack (" selected user: " ++ show uid)))
InteractionCreate InteractionApplicationCommand {applicationCommandData = ApplicationCommandDataChatInput {applicationCommandDataName = "test", optionsData = Just d, ..}, ..} ->
void $
restCall
(R.CreateInteractionResponse interactionId interactionToken (exampleInteractionResponse d))
InteractionCreate InteractionApplicationCommand {applicationCommandData = ApplicationCommandDataChatInput {applicationCommandDataName = "subtest", optionsData = Just d, ..}, ..} -> void $ restCall (R.CreateInteractionResponse interactionId interactionToken (interactionResponseBasic (T.pack $ "oh boy, subcommands! welp, here's everything I got from that: " <> show d)))
InteractionCreate InteractionComponent {componentData = ButtonData {..}, ..} ->
void $
restCall
( R.CreateInteractionResponse interactionId interactionToken $
InteractionResponseChannelMessage
( ( interactionResponseMessageBasic $ "You pressed the button " <> componentDataCustomId
)
{ interactionResponseMessageFlags = Just (InteractionResponseMessageFlags [InteractionResponseMessageFlagEphermeral])
}
)
)
InteractionCreate InteractionComponent {componentData = SelectMenuData {componentDataValues = vs}, ..} ->
void
( do
exampleImage <- liftIO getImage
aid <- fullApplicationID . cacheApplication <$> readCache
-- to send an ephemeral follow up, you have to send an ephemeral defer
-- _ <- restCall (R.CreateInteractionResponse interactionId interactionToken (InteractionResponseDeferChannelMessageOpt (def { interactionResponseMessageFlags = Just (InteractionResponseMessageFlags [InteractionResponseMessageFlagEphermeral]) })))
_ <- restCall (R.CreateInteractionResponse interactionId interactionToken InteractionResponseDeferChannelMessage)
restCall
( R.CreateFollowupInteractionMessage
aid
interactionToken
(interactionResponseMessageBasic (T.pack $ "oh dear, select menu. thank you for waiting" <> show vs))
{ interactionResponseMessageEmbeds =
Just
[ def
{ createEmbedTitle = "Select menu title",
createEmbedDescription = "Here is the select menu embed desc",
createEmbedAuthorName = "someunknownentity",
createEmbedImage = Just (CreateEmbedImageUrl "https://media.discordapp.net/attachments/365969021083975681/936055590415921172/Warning.png"),
createEmbedColor = Just DiscordColorDiscordBlurple,
createEmbedAuthorIcon = Just (CreateEmbedImageUpload exampleImage)
}
]
}
)
)
InteractionCreate InteractionApplicationCommandAutocomplete {applicationCommandData = ApplicationCommandDataChatInput {applicationCommandDataName = "subtest", optionsData = Just _, ..}, ..} -> void (restCall $ R.CreateInteractionResponse interactionId interactionToken (InteractionResponseAutocompleteResult (InteractionResponseAutocompleteInteger [Choice "five" Nothing 5])))
InteractionCreate i@InteractionApplicationCommand {applicationCommandData = ApplicationCommandDataChatInput {applicationCommandDataName = "modal"}} ->
void $
restCall
( R.CreateInteractionResponse
(interactionId i)
(interactionToken i)
( InteractionResponseModal
( InteractionResponseModalData
"customidmodal"
"modal title"
[mkTextInput "textcid" "textlabel"]
)
)
)
InteractionCreate i@InteractionModalSubmit {modalData = idm} -> void $ restCall (R.CreateInteractionResponse (interactionId i) (interactionToken i) (interactionResponseBasic (T.pack (show idm))))
_ -> return ()
processTicTacToe :: ComponentData -> Message -> [InteractionResponseMessage]
processTicTacToe (ButtonData cid) m = case messageComponents m of
Nothing -> [interactionResponseMessageBasic "Sorry, I couldn't get the components on that message."]
(Just cs) ->
let newComp = newComp' cs
in ( ( interactionResponseMessageBasic
("Some Tic Tac Toe! Player " <> (if '0' == T.last (messageContent m) then "1" else "0"))
)
{ interactionResponseMessageComponents = Just ((if checkTicTacToe newComp then (disableAll <$>) else id) newComp)
}
) :
[interactionResponseMessageBasic ("Player " <> T.singleton player <> " has won!") | checkTicTacToe newComp]
where
player = T.last (messageContent m)
newComp' = updateTicTacToe (Just (cid, '0' == player))
disableAll (ActionRowButtons cs) = ActionRowButtons $ (\c -> c {buttonDisabled = True}) <$> cs
disableAll c = c
processTicTacToe _ _ = [interactionResponseMessageBasic "Sorry, I couldn't understand that button."]
checkTicTacToe :: [ActionRow] -> Bool
checkTicTacToe xs = checkRows unwrapped || checkRows unwrappedT || checkRows [diagonal unwrapped, diagonal (reverse <$> unwrapped)]
where
checkRows = any (\cbs -> all (\cb -> cb == head cbs && cb /= ButtonStyleSecondary) cbs)
unwrapped = (\(ActionRowButtons cbs) -> (\Button {buttonStyle = style} -> style) <$> cbs) <$> xs
unwrappedT = transpose unwrapped
diagonal [] = []
diagonal ([] : _) = []
diagonal (ys : yss) = head ys : diagonal (tail <$> yss)
updateTicTacToe :: Maybe (T.Text, Bool) -> [ActionRow] -> [ActionRow]
updateTicTacToe Nothing _ = (\y -> ActionRowButtons $ (\x -> Button (T.pack $ "ttt " <> show x <> show y) False ButtonStyleSecondary (Just "[ ]") Nothing) <$> [0 .. 4]) <$> [0 .. 4]
updateTicTacToe (Just (tttxy, isFirst)) car
| not (checkIsValid tttxy) = car
| otherwise = (\(ActionRowButtons cbs) -> ActionRowButtons (changeIf <$> cbs)) <$> car
where
checkIsValid tttxy' = T.length tttxy' == 6 && all isDigit [T.index tttxy' 4, T.index tttxy' 5]
getxy tttxy' = (T.index tttxy' 4, T.index tttxy' 5)
(style, symbol) = if isFirst then (ButtonStyleSuccess, "[X]") else (ButtonStyleDanger, "[O]")
changeIf cb@Button {..}
| checkIsValid buttonCustomId && getxy tttxy == getxy buttonCustomId = cb {buttonDisabled = True, buttonStyle = style, buttonLabel = Just symbol}
| otherwise = cb
changeIf cb = cb
fromBot :: Message -> Bool
fromBot = userIsBot . messageAuthor
isPing :: Message -> Bool
isPing = ("ping" `T.isPrefixOf`) . T.toLower . messageContent