Module: Discorb::Interaction::SourceResponder

Included in:
CommandInteraction, MessageComponentInteraction, ModalInteraction
Defined in:
lib/discorb/interaction/response.rb

Overview

A module for response with source.

Instance Method Summary collapse

Instance Method Details

#defer_source(ephemeral: false) ⇒ Async::Task<void>

Response with DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE(5).



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/discorb/interaction/response.rb', line 23

def defer_source(ephemeral: false)
  Async do
    @client
      .http
      .request(
        Route.new(
          "/interactions/#{@id}/#{@token}/callback",
          "//interactions/:interaction_id/:token/callback",
          :post
        ),
        { type: 5, data: { flags: (ephemeral ? 1 << 6 : 0) } }
      )
      .wait
    @defered = true
  end
end

#post(content = nil, tts: false, embed: nil, embeds: nil, allowed_mentions: nil, attachment: nil, attachments: nil, components: nil, ephemeral: false) ⇒ Discorb::Interaction::SourceResponder::CallbackMessage, Discorb::Webhook::Message

Response with CHANNEL_MESSAGE_WITH_SOURCE(4).



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
# File 'lib/discorb/interaction/response.rb', line 58

def post(
  content = nil,
  tts: false,
  embed: nil,
  embeds: nil,
  allowed_mentions: nil,
  attachment: nil,
  attachments: nil,
  components: nil,
  ephemeral: false
)
  Async do
    payload = {}
    payload[:content] = content if content
    payload[:tts] = tts
    payload[:embeds] = (embeds || [embed])
      .map { |e| e&.to_hash }
      .filter { _1 }
    payload[:allowed_mentions] = allowed_mentions&.to_hash(
      @client.allowed_mentions
    ) || @client.allowed_mentions.to_hash
    payload[:components] = Component.to_payload(components) if components
    payload[:flags] = (ephemeral ? 1 << 6 : 0)
    attachments ||= attachment ? [attachment] : []

    payload[:attachments] = attachments.map.with_index do |a, i|
      { id: i, filename: a.filename, description: a.description }
    end

    ret =
      if @responded
        _resp, data =
          @client
            .http
            .multipart_request(
              Route.new(
                "/webhooks/#{@application_id}/#{@token}",
                "//webhooks/:webhook_id/:token",
                :post
              ),
              payload,
              attachments
            )
            .wait
        webhook =
          Webhook::URLWebhook.new(
            "/webhooks/#{@application_id}/#{@token}"
          )
        Webhook::Message.new(webhook, data, @client)
      elsif @defered
        @client
          .http
          .multipart_request(
            Route.new(
              "/webhooks/#{@application_id}/#{@token}/messages/@original",
              "//webhooks/:webhook_id/:token/messages/@original",
              :patch
            ),
            payload,
            attachments
          )
          .wait
        CallbackMessage.new(@client, payload, @application_id, @token)
      else
        @client
          .http
          .multipart_request(
            Route.new(
              "/interactions/#{@id}/#{@token}/callback",
              "//interactions/:interaction_id/:token/callback",
              :post
            ),
            { type: 4, data: payload },
            attachments
          )
          .wait
        CallbackMessage.new(@client, payload, @application_id, @token)
      end
    @responded = true
    ret
  end
end