Class: Discordrb::Commands::CommandBot
- Includes:
- CommandContainer
- Defined in:
- lib/discordrb/commands/command_bot.rb
Overview
Bot that supports commands and command chains
Instance Attribute Summary collapse
-
#attributes ⇒ Hash
readonly
This bot’s attributes.
-
#prefix ⇒ String
readonly
The prefix commands are triggered with.
Attributes included from CommandContainer
Attributes inherited from Bot
#awaits, #event_threads, #gateway, #name, #shard_key, #should_parse_self, #voices
Instance Method Summary collapse
-
#execute_command(name, event, arguments, chained = false, check_permissions = true) ⇒ String?
Executes a particular command on the bot.
-
#initialize(attributes = {}) ⇒ CommandBot
constructor
Creates a new CommandBot and logs in to Discord.
-
#permission?(user, level, server) ⇒ true, false
Check if a user has permission to do something.
-
#set_role_permission(id, level) ⇒ Object
Sets the permission level of a role - this applies to all users in the role.
-
#set_user_permission(id, level) ⇒ Object
Sets the permission level of a user.
-
#simple_execute(chain, event) ⇒ String?
Executes a command in a simple manner, without command chains or permissions.
Methods included from CommandContainer
#command, #include!, #include_commands, #remove_command
Methods included from RateLimiter
#bucket, #clean, #include_buckets, #rate_limited?
Methods inherited from Bot
#add_await, #bot_application, #connected?, #create_oauth_application, #create_server, #debug, #debug=, #delete_invite, #dispatch, #dnd, #emoji, #find_emoji, #game=, #idle, #ignore_user, #ignored?, #invisible, #invite_url, #join, #log_exception, #mode=, #online, #parse_mention, #profile, #prune_empty_groups, #raise_heartbeat_event, #raw_token, #run, #send_file, #send_message, #send_temporary_message, #servers, #stop, #stream, #suppress_ready_debug, #sync, #token, #unignore_user, #update_oauth_application, #update_status, #users, #voice, #voice_connect, #voice_destroy
Methods included from Discordrb::Cache
#channel, #ensure_channel, #ensure_server, #ensure_user, #find_channel, #find_user, #init_cache, #invite, #member, #pm_channel, #request_chunks, #resolve_invite_code, #server, #user
Methods included from EventContainer
#add_handler, #await, #channel_create, #channel_delete, #channel_recipient_add, #channel_recipient_remove, #channel_update, class_from_string, #clear!, #disconnected, event_class, handler_class, #heartbeat, #include_events, #member_join, #member_leave, #member_update, #mention, #message, #message_delete, #message_edit, #playing, #pm, #presence, #ready, #remove_handler, #server_create, #server_delete, #server_update, #typing, #user_ban, #user_unban, #voice_state_update
Methods included from Events
Constructor Details
#initialize(attributes = {}) ⇒ CommandBot
Creates a new CommandBot and logs in to Discord.
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 |
# File 'lib/discordrb/commands/command_bot.rb', line 69 def initialize(attributes = {}) super( log_mode: attributes[:log_mode], token: attributes[:token], application_id: attributes[:application_id], client_id: attributes[:client_id], type: attributes[:type], name: attributes[:name], fancy_log: attributes[:fancy_log], suppress_ready: attributes[:suppress_ready], parse_self: attributes[:parse_self], shard_id: attributes[:shard_id], num_shards: attributes[:num_shards], redact_token: attributes.key?(:redact_token) ? attributes[:redact_token] : true) @prefix = attributes[:prefix] @attributes = { # Whether advanced functionality such as command chains are enabled advanced_functionality: attributes[:advanced_functionality].nil? ? false : attributes[:advanced_functionality], # The name of the help command (that displays information to other commands). False if none should exist help_command: attributes[:help_command].is_a?(FalseClass) ? nil : (attributes[:help_command] || :help), # The message to display for when a command doesn't exist, %command% to get the command name in question and nil for no message # No default value here because it may not be desired behaviour command_doesnt_exist_message: attributes[:command_doesnt_exist_message], # The message to be displayed when `NoPermission` error is raised. no_permission_message: attributes[:no_permission_message], # Spaces allowed between prefix and command spaces_allowed: attributes[:spaces_allowed].nil? ? false : attributes[:spaces_allowed], # Webhooks allowed to trigger commands webhook_commands: attributes[:webhook_commands].nil? ? true : attributes[:webhook_commands], channels: attributes[:channels] || [], # All of the following need to be one character # String to designate previous result in command chain previous: attributes[:previous] || '~', # Command chain delimiter chain_delimiter: attributes[:chain_delimiter] || '>', # Chain argument delimiter chain_args_delim: attributes[:chain_args_delim] || ':', # Sub-chain starting character sub_chain_start: attributes[:sub_chain_start] || '[', # Sub-chain ending character sub_chain_end: attributes[:sub_chain_end] || ']', # Quoted mode starting character quote_start: attributes[:quote_start] || '"', # Quoted mode ending character quote_end: attributes[:quote_end] || '"' } @permissions = { roles: {}, users: {} } return unless @attributes[:help_command] command(@attributes[:help_command], max_args: 1, description: 'Shows a list of all the commands available or displays help for a specific command.', usage: 'help [command name]') do |event, command_name| if command_name command = @commands[command_name.to_sym] return "The command `#{command_name}` does not exist!" unless command desc = command.attributes[:description] || '*No description available*' usage = command.attributes[:usage] parameters = command.attributes[:parameters] result = "**`#{command_name}`**: #{desc}" result += "\nUsage: `#{usage}`" if usage if parameters result += "\nAccepted Parameters:\n```" parameters.each { |p| result += "\n#{p}" } result += '```' end result else available_commands = @commands.values.reject { |c| !c.attributes[:help_available] } case available_commands.length when 0..5 available_commands.reduce "**List of commands:**\n" do |memo, c| memo + "**`#{c.name}`**: #{c.attributes[:description] || '*No description available*'}\n" end when 5..50 (available_commands.reduce "**List of commands:**\n" do |memo, c| memo + "`#{c.name}`, " end)[0..-3] else event.user.pm(available_commands.reduce("**List of commands:**\n") { |a, e| a + "`#{e.name}`, " })[0..-3] 'Sending list in PM!' end end end end |
Instance Attribute Details
#attributes ⇒ Hash (readonly)
Returns this bot’s attributes.
16 17 18 |
# File 'lib/discordrb/commands/command_bot.rb', line 16 def attributes @attributes end |
#prefix ⇒ String (readonly)
Returns the prefix commands are triggered with.
19 20 21 |
# File 'lib/discordrb/commands/command_bot.rb', line 19 def prefix @prefix end |
Instance Method Details
#execute_command(name, event, arguments, chained = false, check_permissions = true) ⇒ String?
Executes a particular command on the bot. Mostly useful for internal stuff, but one can never know.
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 |
# File 'lib/discordrb/commands/command_bot.rb', line 179 def execute_command(name, event, arguments, chained = false, = true) debug("Executing command #{name} with arguments #{arguments}") return unless @commands command = @commands[name] return unless ! || channels?(event.channel, @attributes[:channels]) || (command && !command.attributes[:channels].nil?) unless command event.respond @attributes[:command_doesnt_exist_message].gsub('%command%', name.to_s) if @attributes[:command_doesnt_exist_message] return end return unless ! || channels?(event.channel, command.attributes[:channels]) if ( && (event., command.attributes[:permission_level], event.server) && (event., command.attributes[:required_permissions], event.channel) && required_roles?(event., command.attributes[:required_roles])) || ! event.command = command result = command.call(event, arguments, chained, ) stringify(result) else event.respond command.attributes[:permission_message].gsub('%name%', name.to_s) if command.attributes[:permission_message] nil end rescue Discordrb::Errors::NoPermission event.respond @attributes[:no_permission_message] unless @attributes[:no_permission_message].nil? raise end |
#permission?(user, level, server) ⇒ true, false
Check if a user has permission to do something
236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/discordrb/commands/command_bot.rb', line 236 def (user, level, server) determined_level = if user.webhook? || server.nil? 0 else user.roles.reduce(0) do |memo, role| [@permissions[:roles][role.id] || 0, memo].max end end [@permissions[:users][user.id] || 0, determined_level].max >= level end |
#set_role_permission(id, level) ⇒ Object
Sets the permission level of a role - this applies to all users in the role
227 228 229 |
# File 'lib/discordrb/commands/command_bot.rb', line 227 def (id, level) @permissions[:roles][id] = level end |
#set_user_permission(id, level) ⇒ Object
Sets the permission level of a user
220 221 222 |
# File 'lib/discordrb/commands/command_bot.rb', line 220 def (id, level) @permissions[:users][id] = level end |
#simple_execute(chain, event) ⇒ String?
Executes a command in a simple manner, without command chains or permissions.
211 212 213 214 215 |
# File 'lib/discordrb/commands/command_bot.rb', line 211 def simple_execute(chain, event) return nil if chain.empty? args = chain.split(' ') execute_command(args[0].to_sym, event, args[1..-1]) end |