Class: Discordrb::Events::ApplicationCommandEvent
- Inherits:
-
InteractionCreateEvent
- Object
- Event
- InteractionCreateEvent
- Discordrb::Events::ApplicationCommandEvent
- Defined in:
- lib/discordrb/events/interactions.rb
Overview
Event for ApplicationCommand interactions.
Defined Under Namespace
Classes: Resolved
Instance Attribute Summary collapse
-
#command_id ⇒ Integer
readonly
The ID of the command.
-
#command_name ⇒ String
readonly
The name of the command.
-
#options ⇒ Hash<Symbol, Object>
readonly
Arguments provided to the command, mapped as
Name => Value
. - #resolved ⇒ Resolved readonly
-
#subcommand ⇒ String?
readonly
The name of the subcommand relevant to this event.
-
#subcommand_group ⇒ String?
readonly
The name of the subcommand group relevant to this event.
-
#target_id ⇒ Integer?
readonly
The target of this command when it is a context command.
Attributes inherited from InteractionCreateEvent
#channel, #channel_id, #interaction, #server, #server_id, #type, #user
Attributes inherited from Event
Instance Method Summary collapse
-
#initialize(data, bot) ⇒ ApplicationCommandEvent
constructor
A new instance of ApplicationCommandEvent.
-
#target ⇒ Message, ...
The target of this command, for context commands.
Methods inherited from InteractionCreateEvent
#defer, #defer_update, #delete_message, #delete_response, #edit_message, #edit_response, #get_component, #respond, #send_message, #show_modal, #update_message
Constructor Details
#initialize(data, bot) ⇒ ApplicationCommandEvent
Returns a new instance of ApplicationCommandEvent.
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 |
# File 'lib/discordrb/events/interactions.rb', line 158 def initialize(data, bot) super command_data = data['data'] @command_id = command_data['id'] @command_name = command_data['name'].to_sym @target_id = command_data['target_id']&.to_i @resolved = Resolved.new({}, {}, {}, {}, {}, {}) process_resolved(command_data['resolved']) if command_data['resolved'] = command_data['options'] || [] if .empty? @options = {} return end case [0]['type'] when 2 = [0] @subcommand_group = ['name'].to_sym @subcommand = ['options'][0]['name'].to_sym = ['options'][0]['options'] when 1 = [0] @subcommand = ['name'].to_sym = ['options'] end @options = ( || {}) end |
Instance Attribute Details
#command_id ⇒ Integer (readonly)
Returns The ID of the command.
141 142 143 |
# File 'lib/discordrb/events/interactions.rb', line 141 def command_id @command_id end |
#command_name ⇒ String (readonly)
Returns The name of the command.
138 139 140 |
# File 'lib/discordrb/events/interactions.rb', line 138 def command_name @command_name end |
#options ⇒ Hash<Symbol, Object> (readonly)
Returns Arguments provided to the command, mapped as Name => Value
.
153 154 155 |
# File 'lib/discordrb/events/interactions.rb', line 153 def @options end |
#resolved ⇒ Resolved (readonly)
150 151 152 |
# File 'lib/discordrb/events/interactions.rb', line 150 def resolved @resolved end |
#subcommand ⇒ String? (readonly)
Returns The name of the subcommand relevant to this event.
147 148 149 |
# File 'lib/discordrb/events/interactions.rb', line 147 def subcommand @subcommand end |
#subcommand_group ⇒ String? (readonly)
Returns The name of the subcommand group relevant to this event.
144 145 146 |
# File 'lib/discordrb/events/interactions.rb', line 144 def subcommand_group @subcommand_group end |
#target_id ⇒ Integer? (readonly)
Returns The target of this command when it is a context command.
156 157 158 |
# File 'lib/discordrb/events/interactions.rb', line 156 def target_id @target_id end |
Instance Method Details
#target ⇒ Message, ...
Returns The target of this command, for context commands.
193 194 195 196 197 |
# File 'lib/discordrb/events/interactions.rb', line 193 def target return nil unless @target_id @resolved.find { |data| data.key?(@target_id) }[@target_id] end |