Method: Discordrb::Commands::CommandBot#initialize
- Defined in:
- lib/discordrb/commands/command_bot.rb
#initialize(**attributes) ⇒ CommandBot
Creates a new CommandBot and logs in to Discord.
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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/discordrb/commands/command_bot.rb', line 73 def initialize(**attributes) # TODO: This needs to be revisited. undefined attributes are treated # as explicitly passed nils. super( log_mode: attributes[:log_mode], token: attributes[:token], 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, ignore_bots: attributes[:ignore_bots], compress_mode: attributes[:compress_mode], intents: attributes[:intents] || :all ) @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? || 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] || attributes[:quote_start] || '"', # Default block for handling internal exceptions, or a string to respond with rescue: attributes[:rescue] } @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] if command.is_a?(CommandAlias) command = command.aliased_command command_name = command.name end # rubocop:disable Lint/ReturnInVoidContext return "The command `#{command_name}` does not exist!" unless command # rubocop:enable Lint/ReturnInVoidContext desc = command.attributes[:description] || '*No description available*' usage = command.attributes[:usage] parameters = command.attributes[:parameters] result = "**`#{command_name}`**: #{desc}" aliases = command_aliases(command_name.to_sym) unless aliases.empty? result += "\nAliases: " result += aliases.map { |a| "`#{a.name}`" }.join(', ') end 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 do |c| c.is_a?(CommandAlias) || !c.attributes[:help_available] || !required_roles?(event.user, c.attributes[:required_roles]) || !allowed_roles?(event.user, c.attributes[:allowed_roles]) || !(event.user, c.attributes[:required_permissions], event.channel) end 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") { |m, e| m + "`#{e.name}`, " }[0..-3]) event.channel.pm? ? '' : 'Sending list in PM!' end end end end |