main.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. package main
  2. import (
  3. "flag"
  4. "fmt"
  5. "log"
  6. "os"
  7. "os/signal"
  8. "strings"
  9. "github.com/bwmarrin/discordgo"
  10. )
  11. // Bot parameters
  12. var (
  13. GuildID = flag.String("guild", "", "Test guild ID")
  14. BotToken = flag.String("token", "", "Bot access token")
  15. AppID = flag.String("app", "", "Application ID")
  16. Cleanup = flag.Bool("cleanup", true, "Cleanup of commands")
  17. ResultsChannel = flag.String("results", "", "Channel where send survey results to")
  18. )
  19. var s *discordgo.Session
  20. func init() {
  21. flag.Parse()
  22. }
  23. func init() {
  24. var err error
  25. s, err = discordgo.New("Bot " + *BotToken)
  26. if err != nil {
  27. log.Fatalf("Invalid bot parameters: %v", err)
  28. }
  29. }
  30. var (
  31. commands = []discordgo.ApplicationCommand{
  32. {
  33. Name: "modals-survey",
  34. Description: "Take a survey about modals",
  35. },
  36. }
  37. commandsHandlers = map[string]func(s *discordgo.Session, i *discordgo.InteractionCreate){
  38. "modals-survey": func(s *discordgo.Session, i *discordgo.InteractionCreate) {
  39. err := s.InteractionRespond(i.Interaction, &discordgo.InteractionResponse{
  40. Type: discordgo.InteractionResponseModal,
  41. Data: &discordgo.InteractionResponseData{
  42. CustomID: "modals_survey_" + i.Interaction.Member.User.ID,
  43. Title: "Modals survey",
  44. Components: []discordgo.MessageComponent{
  45. discordgo.ActionsRow{
  46. Components: []discordgo.MessageComponent{
  47. discordgo.InputText{
  48. CustomID: "opinion",
  49. Label: "What is your opinion on them?",
  50. Style: discordgo.TextStyleShort,
  51. Placeholder: "Don't be shy, share your opinion with us",
  52. Required: true,
  53. MaxLength: 300,
  54. },
  55. },
  56. },
  57. discordgo.ActionsRow{
  58. Components: []discordgo.MessageComponent{
  59. discordgo.InputText{
  60. CustomID: "suggestions",
  61. Label: "What would you suggest to improve them?",
  62. Style: discordgo.TextStyleParagraph,
  63. Required: false,
  64. MaxLength: 2000,
  65. },
  66. },
  67. },
  68. },
  69. },
  70. })
  71. if err != nil {
  72. panic(err)
  73. }
  74. },
  75. }
  76. )
  77. func main() {
  78. s.AddHandler(func(s *discordgo.Session, r *discordgo.Ready) {
  79. log.Println("Bot is up!")
  80. })
  81. s.AddHandler(func(s *discordgo.Session, i *discordgo.InteractionCreate) {
  82. switch i.Type {
  83. case discordgo.InteractionApplicationCommand:
  84. if h, ok := commandsHandlers[i.ApplicationCommandData().Name]; ok {
  85. h(s, i)
  86. }
  87. case discordgo.InteractionModalSubmit:
  88. err := s.InteractionRespond(i.Interaction, &discordgo.InteractionResponse{
  89. Type: discordgo.InteractionResponseChannelMessageWithSource,
  90. Data: &discordgo.InteractionResponseData{
  91. Content: "Thank you for taking your time to fill this survey",
  92. Flags: 1 << 6,
  93. },
  94. })
  95. if err != nil {
  96. panic(err)
  97. }
  98. data := i.ModalSubmitData()
  99. if !strings.HasPrefix(data.CustomID, "modals_survey") {
  100. return
  101. }
  102. userid := strings.Split(data.CustomID, "_")[2]
  103. _, err = s.ChannelMessageSend(*ResultsChannel, fmt.Sprintf(
  104. "Feedback received. From <@%s>\n\n**Opinion**:\n%s\n\n**Suggestions**:\n%s",
  105. userid,
  106. data.Components[0].(*discordgo.ActionsRow).Components[0].(*discordgo.InputText).Value,
  107. data.Components[1].(*discordgo.ActionsRow).Components[0].(*discordgo.InputText).Value,
  108. ))
  109. if err != nil {
  110. panic(err)
  111. }
  112. }
  113. })
  114. cmdIDs := make(map[string]string, len(commands))
  115. for _, cmd := range commands {
  116. rcmd, err := s.ApplicationCommandCreate(*AppID, *GuildID, &cmd)
  117. if err != nil {
  118. log.Fatalf("Cannot create slash command %q: %v", cmd.Name, err)
  119. }
  120. cmdIDs[rcmd.ID] = rcmd.Name
  121. }
  122. err := s.Open()
  123. if err != nil {
  124. log.Fatalf("Cannot open the session: %v", err)
  125. }
  126. defer s.Close()
  127. stop := make(chan os.Signal, 1)
  128. signal.Notify(stop, os.Interrupt)
  129. <-stop
  130. log.Println("Graceful shutdown")
  131. if !*Cleanup {
  132. return
  133. }
  134. for id, name := range cmdIDs {
  135. err := s.ApplicationCommandDelete(*AppID, *GuildID, id)
  136. if err != nil {
  137. log.Fatalf("Cannot delete slash command %q: %v", name, err)
  138. }
  139. }
  140. }