commandrb 0.4.8 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/commandrb.rb +131 -202
- data/lib/helper.rb +43 -29
- metadata +10 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a71ccd55615cb29fa0a400e3fd29b543d3ce8d52d264646be9e50d2b824790bd
|
4
|
+
data.tar.gz: cc5f60c22142653ac2b9b3a2504c083329ea382738c07c9bc6f9c6f4966e519c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23cc6f6e1cf7f67c05d555794cd700c9a8ab8d0a5e329543e1c58e8219c61ef3e64a02b9de45b020cd22b7bed21639124ecf60f196e154c2f49398c3dc1ee364
|
7
|
+
data.tar.gz: 1fdd79b3754dc7e156ac365723efdb2589b56f4a04adda1309b04ce62e69cfa23641ae1dd48631cc461bf3495367e80e5a765df48443dd9d52b9f4f6c3f93ff0
|
data/lib/commandrb.rb
CHANGED
@@ -3,8 +3,6 @@
|
|
3
3
|
require_relative 'helper'
|
4
4
|
|
5
5
|
class CommandrbBot
|
6
|
-
@debug_mode = ENV['COMMANDRB_MODE'] == 'debug'
|
7
|
-
@debug_mode = true
|
8
6
|
# Be able to adjust the config on the fly.
|
9
7
|
attr_accessor :config
|
10
8
|
|
@@ -30,7 +28,7 @@ class CommandrbBot
|
|
30
28
|
true
|
31
29
|
end
|
32
30
|
|
33
|
-
# By defining this
|
31
|
+
# By defining this separately, we allow you to overwrite it and use your own owner list.
|
34
32
|
# Your checks will instead be run by commandrb and allow you to use :owner_only as normal.
|
35
33
|
def owner?(id)
|
36
34
|
@config[:owners].include?(id)
|
@@ -39,6 +37,8 @@ class CommandrbBot
|
|
39
37
|
alias is_owner? owner?
|
40
38
|
|
41
39
|
def initialize(init_hash)
|
40
|
+
@debug_mode = ENV['COMMANDRB_MODE'] == 'debug'
|
41
|
+
|
42
42
|
# Setup the variables for first use.
|
43
43
|
@commands = {}
|
44
44
|
@prefixes = []
|
@@ -46,22 +46,20 @@ class CommandrbBot
|
|
46
46
|
|
47
47
|
# Load sane defaults for options that aren't specified.
|
48
48
|
|
49
|
-
# @config[:prefix_type] = 'rescue' if @config[:prefix_type].nil?
|
50
49
|
@config[:typing_default] = false if @config[:typing_default].nil?
|
51
|
-
@config[:selfbot] = false if @config[:selfbot].nil?
|
52
50
|
@config[:delete_activators] = false if @config[:delete_activators].nil?
|
53
51
|
|
54
52
|
raise 'No token supplied in init hash!' if @config[:token].nil? || (init_hash[:token] == '')
|
55
53
|
|
56
54
|
init_parse_self = begin
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
55
|
+
init_hash[:parse_self]
|
56
|
+
rescue StandardError
|
57
|
+
nil
|
58
|
+
end
|
61
59
|
init_type = @config[:type]
|
62
60
|
|
63
|
-
if init_type == :bot
|
64
|
-
raise 'No client ID or invalid client ID supplied in init hash!'
|
61
|
+
if init_type == :bot && init_hash[:client_id].nil?
|
62
|
+
raise 'No client ID or invalid client ID supplied in init hash!'
|
65
63
|
end
|
66
64
|
|
67
65
|
@config[:owners] = init_hash[:owners]
|
@@ -85,214 +83,145 @@ class CommandrbBot
|
|
85
83
|
|
86
84
|
# Command processing
|
87
85
|
@bot.message do |event|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
continue = false
|
93
|
-
failed = false
|
94
|
-
@prefixes.each do |prefix|
|
95
|
-
break if finished
|
86
|
+
chosen_activator = nil
|
87
|
+
message_content = nil
|
88
|
+
chosen_command = nil
|
89
|
+
used_prefix = ''
|
96
90
|
|
91
|
+
# If we have a usable prefix, get the raw arguments for this command.
|
92
|
+
@prefixes.each do |prefix|
|
97
93
|
next unless event.message.content.start_with?(prefix)
|
98
94
|
|
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
|
-
|
95
|
+
# Store the message's content, sans its prefix.
|
96
|
+
# Strip leading spaces in the event a prefix ends with a space.
|
97
|
+
message_content = event.message.content
|
98
|
+
used_prefix = message_content.slice! prefix
|
99
|
+
break
|
100
|
+
end
|
101
|
+
|
102
|
+
# Otherwise, do not continue processing.
|
103
|
+
next if message_content.nil?
|
104
|
+
|
105
|
+
@commands.each do |key, command|
|
106
|
+
puts ":: Considering #{key}" if @debug_mode == true
|
107
|
+
triggers = command[:triggers].nil? ? [key.to_s] : command[:triggers]
|
108
|
+
|
109
|
+
triggers.each do |trigger|
|
110
|
+
activator = trigger.to_s.downcase
|
111
|
+
puts activator if @debug_mode == true
|
112
|
+
next unless event.message.content.downcase.start_with?(activator)
|
113
|
+
|
114
|
+
puts "Prefix matched! #{activator}" if @debug_mode == true
|
115
|
+
|
116
|
+
# Continue only if you've already chosen a choice.
|
117
|
+
if chosen_activator.nil?
|
118
|
+
puts 'First match obtained!' if @debug_mode == true
|
119
|
+
chosen_activator = activator
|
120
|
+
chosen_command = command
|
121
|
+
|
122
|
+
# If the new activator begins with the chosen one, then override it.
|
123
|
+
# Example: sh is chosen, shell is the new one.
|
124
|
+
# In this example, shell would override sh, preventing ugly bugs.
|
125
|
+
elsif activator.start_with?(chosen_activator)
|
126
|
+
puts "#{activator} just overrode #{chosen_activator}" if @debug_mode == true
|
127
|
+
chosen_activator = activator
|
128
|
+
chosen_command = command
|
129
|
+
# Otherwise, just give up.
|
130
|
+
elsif @debug_mode == true
|
131
|
+
puts 'Match failed...'
|
132
132
|
end
|
133
|
+
# If you haven't chosen yet, get choosing!
|
134
|
+
end
|
133
135
|
|
134
|
-
|
136
|
+
puts "Result: #{chosen_activator}" if @debug_mode == true
|
137
|
+
end
|
135
138
|
|
136
|
-
|
139
|
+
# If we have no chosen activator, it is likely the command does not exist
|
140
|
+
# or the prefix itself was run.
|
141
|
+
next if chosen_activator.nil?
|
137
142
|
|
138
|
-
|
143
|
+
command_run = used_prefix + chosen_activator
|
144
|
+
puts "Final result: #{command_run}" if @debug_mode == true
|
139
145
|
|
140
|
-
|
146
|
+
# Command flag defaults
|
147
|
+
chosen_command[:owners_only] = false if chosen_command[:owners_only].nil?
|
148
|
+
chosen_command[:server_only] = false if chosen_command[:server_only].nil?
|
149
|
+
chosen_command[:typing] = @config[:typing_default] if chosen_command[:typing_default].nil?
|
150
|
+
if chosen_command[:delete_activator].nil?
|
151
|
+
chosen_command[:delete_activator] =
|
152
|
+
@config[:delete_activators]
|
153
|
+
end
|
154
|
+
chosen_command[:owner_override] = false if chosen_command[:owner_override].nil?
|
155
|
+
|
156
|
+
# If the settings are to delete activating messages, then do that.
|
157
|
+
# I'm *hoping* this doesn't cause issues with argument extraction.
|
158
|
+
event.message.delete if chosen_command[:delete_activator]
|
159
|
+
|
160
|
+
# If the command is only for use in servers, display error and abort.
|
161
|
+
if chosen_command[:server_only] && event.channel.private?
|
162
|
+
event.channel.send_embed error_embed(
|
163
|
+
error: 'This command can only be used in servers!',
|
164
|
+
footer: "Command: `#{command_run}`"
|
165
|
+
)
|
166
|
+
break
|
167
|
+
end
|
141
168
|
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
command[:delete_activator] = @config[:delete_activators]
|
151
|
-
end
|
152
|
-
command[:owner_override] = false if command[:owner_override].nil?
|
153
|
-
|
154
|
-
# If the settings are to delete activating messages, then do that.
|
155
|
-
# I'm *hoping* this doesn't cause issues with argument extraction.
|
156
|
-
event.message.delete if command[:delete_activator]
|
157
|
-
|
158
|
-
# If the command is only for use in servers, display error and abort.
|
159
|
-
unless failed
|
160
|
-
if command[:server_only] && event.channel.private?
|
161
|
-
# For selfbots, a fancy embed will be used. WIP.
|
162
|
-
if @config[:selfbot]
|
163
|
-
event.channel.send_embed do |embed|
|
164
|
-
embed.colour = 0x221461
|
165
|
-
embed.title = '❌ An error has occured!'
|
166
|
-
embed.description = 'This command can only be used in servers!'
|
167
|
-
embed.footer = Discordrb::Webhooks::EmbedFooter.new(text: "Command: '#{event.message.content}'")
|
168
|
-
end
|
169
|
-
else
|
170
|
-
# If its not a selfbot, an ordinary message will be shown, may be changed to embed later.
|
171
|
-
event.respond('❌ This command will only work in servers!')
|
172
|
-
end
|
173
|
-
# Abort!
|
174
|
-
finished = true
|
175
|
-
next
|
176
|
-
end
|
177
|
-
end
|
169
|
+
# If the user is a bot and the command is set to not pass bots
|
170
|
+
# OR the user is a bot and the global config is to not parse bots...
|
171
|
+
# ...then abort :3
|
172
|
+
if event.user.bot_account? && \
|
173
|
+
(chosen_command[:parse_bots] == false || @config[:parse_bots] == false)
|
174
|
+
# Abort!
|
175
|
+
break
|
176
|
+
end
|
178
177
|
|
179
|
-
|
180
|
-
|
181
|
-
if (event.user.bot_account? && command[:parse_bots] == false) || (event.user.bot_account? && @config[:parse_bots] == false)
|
182
|
-
# Abort!
|
183
|
-
finished = true
|
184
|
-
next
|
185
|
-
end
|
178
|
+
# If the config is setup to show typing messages, then do so.
|
179
|
+
event.channel.start_typing if chosen_command[:typing]
|
186
180
|
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
# Parse args if args exist !
|
192
|
-
begin
|
193
|
-
spaces = 1
|
194
|
-
# Prefixes with spaces are special and need to be parsed differently : )
|
195
|
-
if prefix.include? ' '
|
196
|
-
spaces += prefix.count(' ')
|
197
|
-
args = event.message.content.slice!(args[0].size + args[1].size + spaces, event.message.content.size)
|
198
|
-
else
|
199
|
-
args = event.message.content.slice!(args[0].size + spaces, event.message.content.size)
|
200
|
-
end
|
201
|
-
# Split the argmuents into an array for easy usage but keep the raw args !!
|
202
|
-
rawargs = args
|
203
|
-
args = args.split(/ /)
|
204
|
-
rescue NoMethodError # Not the most elegant solution but it'll do. TODO: Make a more elegant solution.
|
205
|
-
args = []
|
206
|
-
end
|
181
|
+
# Our arguments are the message's contents, minus the activator.
|
182
|
+
args = message_content
|
183
|
+
args.slice! chosen_activator
|
184
|
+
args = args.split
|
207
185
|
|
208
|
-
|
209
|
-
unless command[:max_args].nil? || failed
|
210
|
-
if command[:max_args] > 0 && args.length > command[:max_args]
|
211
|
-
send_error = Helper.error_embed(
|
212
|
-
error: "Too many arguments! \nMax arguments: `#{command[:max_args]}`",
|
213
|
-
footer: "Command: `#{event.message.content}`",
|
214
|
-
colour: 0xFA0E30,
|
215
|
-
code_error: false
|
216
|
-
)
|
217
|
-
failed = true
|
218
|
-
end
|
219
|
-
end
|
186
|
+
no_permission = false
|
220
187
|
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
footer: "Command: `#{event.message.content}`",
|
227
|
-
colour: 0xFA0E30,
|
228
|
-
code_error: false
|
229
|
-
)
|
230
|
-
failed = true
|
231
|
-
end
|
232
|
-
end
|
188
|
+
chosen_command[:required_permissions]&.each do |x|
|
189
|
+
if event.user.on(event.server).permission?(x, event.channel) \
|
190
|
+
|| (chosen_command[:owner_override] && @config[:owners].include?(event.user.id))
|
191
|
+
next
|
192
|
+
end
|
233
193
|
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
error: "You don't have permission for that!\nPermission required: `#{x}`",
|
242
|
-
footer: "Command: `#{event.message.content}`",
|
243
|
-
colour: 0xFA0E30,
|
244
|
-
code_error: false
|
245
|
-
)
|
246
|
-
failed = true
|
247
|
-
end
|
248
|
-
end
|
194
|
+
event.channel.send_embed '', error_embed(
|
195
|
+
error: "You don't have permission for that!\nPermission required: `#{x}`",
|
196
|
+
footer: "Command: `#{command_run}`"
|
197
|
+
)
|
198
|
+
no_permission = true
|
199
|
+
break
|
200
|
+
end
|
249
201
|
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
end
|
265
|
-
end
|
202
|
+
next if no_permission
|
203
|
+
|
204
|
+
# If the command is set to owners only and the user is not the owner,
|
205
|
+
# show an error and abort.
|
206
|
+
puts "[DEBUG] Command being processed: '#{chosen_command}'" if @debug_mode == true
|
207
|
+
puts "[DEBUG] Owners only? #{chosen_command[:owners_only]}" if @debug_mode == true
|
208
|
+
if chosen_command[:owners_only] && !owner?(event.user.id)
|
209
|
+
event.channel.send_embed '', error_embed(
|
210
|
+
error: "You don't have permission for that!\n"\
|
211
|
+
'Only owners are allowed to access this command.',
|
212
|
+
footer: "Command: `#{command_run}`"
|
213
|
+
)
|
214
|
+
next
|
215
|
+
end
|
266
216
|
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
if command[:failcode].nil?
|
272
|
-
if send_error.nil?
|
273
|
-
event.respond(':x: An unknown error has occured!')
|
274
|
-
else
|
275
|
-
event.channel.send_message('', false, send_error)
|
276
|
-
end
|
277
|
-
else
|
278
|
-
command[:failcode]&.call(event, args, rawargs)
|
279
|
-
end
|
280
|
-
else
|
281
|
-
command[:code].call(event, args, rawargs)
|
282
|
-
end
|
283
|
-
end
|
217
|
+
# Run the command code!
|
218
|
+
# TODO: determine a good method to log other errors as made via the command.
|
219
|
+
# Without, we will simply log to console.
|
220
|
+
chosen_command[:code].call(event, args, message_content)
|
284
221
|
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
command = command
|
289
|
-
event = event
|
290
|
-
args = args
|
291
|
-
rawargs = rawargs
|
292
|
-
finished = true
|
293
|
-
break
|
294
|
-
end
|
295
|
-
end
|
222
|
+
# All done here.
|
223
|
+
puts "Finished!! Executed command: #{chosen_activator}" if @debug_mode == true
|
224
|
+
next
|
296
225
|
end
|
297
226
|
end
|
298
227
|
end
|
data/lib/helper.rb
CHANGED
@@ -1,34 +1,48 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
class CommandrbBot
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
4
|
+
# Utilizes several methods to attempt to determine a user.
|
5
|
+
def user_parse(context)
|
6
|
+
# Can't do anything if there's nothing to begin with.
|
7
|
+
return nil if context.nil?
|
8
|
+
|
9
|
+
# Catches cases such as "0": obviously invalid, attempted nonetheless.
|
10
|
+
context = context.to_s
|
11
|
+
|
12
|
+
# If it's an ID.
|
13
|
+
id_check = bot.user(context)
|
14
|
+
return id_check unless id_check.nil?
|
15
|
+
|
16
|
+
# If it's a mention!
|
17
|
+
matches = /<@!?(\d+)>/.match(context)
|
18
|
+
return bot.user(matches[1]) unless matches.nil?
|
19
|
+
|
20
|
+
# Might be a username...
|
21
|
+
return bot.find_user(context)[0] unless bot.find_user(context).nil?
|
22
|
+
|
23
|
+
nil
|
24
|
+
end
|
25
|
+
|
26
|
+
# Generates a usable error embed with defaults.
|
27
|
+
def error_embed(error: nil, footer: nil, colour: nil, color: nil)
|
28
|
+
raise 'Invalid arguments for Helper.error_embed!' if error.nil? || footer.nil?
|
29
|
+
|
30
|
+
colour = 0xFA0E30 if color.nil? && colour.nil?
|
31
|
+
Discordrb::Webhooks::Embed.new(
|
32
|
+
title: '❌ An error has occurred!',
|
33
|
+
description: error,
|
34
|
+
colour: colour || color,
|
35
|
+
footer: Discordrb::Webhooks::EmbedFooter.new(text: footer)
|
36
|
+
)
|
37
|
+
end
|
38
|
+
|
39
|
+
# Generates a usable error embed with defaults, and a formatted error.
|
40
|
+
def code_embed(error: nil, footer: nil, colour: nil, color: nil)
|
41
|
+
raise 'Invalid arguments for Helper.code_embed!' if error.nil? || footer.nil?
|
42
|
+
|
43
|
+
# Format to have a code block with formatting.
|
44
|
+
error = "```ruby\n#{error}```"
|
45
|
+
|
46
|
+
error_embed(error: error, footer: footer, colour: colour, color: color)
|
33
47
|
end
|
34
48
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: commandrb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erisa A
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: discordrb
|
@@ -31,7 +31,7 @@ dependencies:
|
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 3.1.0
|
33
33
|
description: A customisable and easy to use Commands System for Discordrb.
|
34
|
-
email:
|
34
|
+
email: erisa@erisa.uk
|
35
35
|
executables: []
|
36
36
|
extensions: []
|
37
37
|
extra_rdoc_files: []
|
@@ -41,8 +41,9 @@ files:
|
|
41
41
|
homepage: https://github.com/Yuuki-Discord/commandrb
|
42
42
|
licenses:
|
43
43
|
- MIT
|
44
|
-
metadata:
|
45
|
-
|
44
|
+
metadata:
|
45
|
+
rubygems_mfa_required: 'true'
|
46
|
+
post_install_message:
|
46
47
|
rdoc_options: []
|
47
48
|
require_paths:
|
48
49
|
- lib
|
@@ -50,15 +51,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
51
|
requirements:
|
51
52
|
- - ">="
|
52
53
|
- !ruby/object:Gem::Version
|
53
|
-
version: '2.
|
54
|
+
version: '2.5'
|
54
55
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
56
|
requirements:
|
56
57
|
- - ">="
|
57
58
|
- !ruby/object:Gem::Version
|
58
59
|
version: '0'
|
59
60
|
requirements: []
|
60
|
-
rubygems_version: 3.
|
61
|
-
signing_key:
|
61
|
+
rubygems_version: 3.3.7
|
62
|
+
signing_key:
|
62
63
|
specification_version: 4
|
63
64
|
summary: Commandrb
|
64
65
|
test_files: []
|