Module: Discorb::Interaction::SourceResponse

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

Overview

A module for response with source.

Defined Under Namespace

Classes: CallbackMessage

Instance Method Summary collapse

Instance Method Details

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

Response with DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE(5).

Parameters:

  • ephemeral (Boolean) (defaults to: false)

    Whether to make the response ephemeral.

Returns:

  • (Async::Task<void>)

    The task.



16
17
18
19
20
21
22
23
24
25
26
# File 'lib/discorb/interaction/response.rb', line 16

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, components: nil, ephemeral: false) -> Discorb::Interaction::SourceResponse::CallbackMessage, Discorb::Webhook::Message

Response with CHANNEL_MESSAGE_WITH_SOURCE(4).

Parameters:

  • content (String) (defaults to: nil)

    The content of the response.

  • tts (Boolean) (defaults to: false)

    Whether to send the message as text-to-speech.

  • embed (Discorb::Embed) (defaults to: nil)

    The embed to send.

  • embeds (Array<Discorb::Embed>) (defaults to: nil)

    The embeds to send. (max: 10)

  • allowed_mentions (Discorb::AllowedMentions) (defaults to: nil)

    The allowed mentions to send.

  • components (Array<Discorb::Component>, Array<Array<Discorb::Component>>) (defaults to: nil)

    The components to send.

  • ephemeral (Boolean) (defaults to: false)

    Whether to make the response ephemeral.

Returns:



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

def post(content = nil, tts: false, embed: nil, embeds: nil, allowed_mentions: 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)

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