discordrb 3.3.0 → 3.4.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of discordrb might be problematic. Click here for more details.

Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +126 -0
  3. data/{CONTRIBUTING.md → .github/CONTRIBUTING.md} +0 -0
  4. data/.github/ISSUE_TEMPLATE/bug_report.md +39 -0
  5. data/.github/ISSUE_TEMPLATE/feature_request.md +25 -0
  6. data/.github/pull_request_template.md +37 -0
  7. data/.rubocop.yml +34 -37
  8. data/.travis.yml +5 -6
  9. data/CHANGELOG.md +472 -347
  10. data/Gemfile +2 -0
  11. data/LICENSE.txt +1 -1
  12. data/README.md +61 -79
  13. data/Rakefile +2 -0
  14. data/bin/console +1 -0
  15. data/discordrb-webhooks.gemspec +6 -6
  16. data/discordrb.gemspec +17 -17
  17. data/lib/discordrb.rb +73 -0
  18. data/lib/discordrb/allowed_mentions.rb +36 -0
  19. data/lib/discordrb/api.rb +40 -15
  20. data/lib/discordrb/api/channel.rb +57 -39
  21. data/lib/discordrb/api/invite.rb +3 -3
  22. data/lib/discordrb/api/server.rb +55 -50
  23. data/lib/discordrb/api/user.rb +8 -8
  24. data/lib/discordrb/api/webhook.rb +6 -6
  25. data/lib/discordrb/await.rb +0 -1
  26. data/lib/discordrb/bot.rb +164 -72
  27. data/lib/discordrb/cache.rb +4 -2
  28. data/lib/discordrb/colour_rgb.rb +43 -0
  29. data/lib/discordrb/commands/command_bot.rb +22 -6
  30. data/lib/discordrb/commands/container.rb +20 -23
  31. data/lib/discordrb/commands/parser.rb +18 -18
  32. data/lib/discordrb/commands/rate_limiter.rb +3 -2
  33. data/lib/discordrb/container.rb +77 -17
  34. data/lib/discordrb/data.rb +25 -4180
  35. data/lib/discordrb/data/activity.rb +264 -0
  36. data/lib/discordrb/data/application.rb +50 -0
  37. data/lib/discordrb/data/attachment.rb +56 -0
  38. data/lib/discordrb/data/audit_logs.rb +345 -0
  39. data/lib/discordrb/data/channel.rb +849 -0
  40. data/lib/discordrb/data/embed.rb +251 -0
  41. data/lib/discordrb/data/emoji.rb +82 -0
  42. data/lib/discordrb/data/integration.rb +83 -0
  43. data/lib/discordrb/data/invite.rb +137 -0
  44. data/lib/discordrb/data/member.rb +297 -0
  45. data/lib/discordrb/data/message.rb +334 -0
  46. data/lib/discordrb/data/overwrite.rb +102 -0
  47. data/lib/discordrb/data/profile.rb +91 -0
  48. data/lib/discordrb/data/reaction.rb +33 -0
  49. data/lib/discordrb/data/recipient.rb +34 -0
  50. data/lib/discordrb/data/role.rb +191 -0
  51. data/lib/discordrb/data/server.rb +1002 -0
  52. data/lib/discordrb/data/user.rb +204 -0
  53. data/lib/discordrb/data/voice_region.rb +45 -0
  54. data/lib/discordrb/data/voice_state.rb +41 -0
  55. data/lib/discordrb/data/webhook.rb +145 -0
  56. data/lib/discordrb/errors.rb +2 -1
  57. data/lib/discordrb/events/bans.rb +7 -5
  58. data/lib/discordrb/events/channels.rb +2 -0
  59. data/lib/discordrb/events/guilds.rb +16 -9
  60. data/lib/discordrb/events/invites.rb +125 -0
  61. data/lib/discordrb/events/members.rb +6 -2
  62. data/lib/discordrb/events/message.rb +69 -27
  63. data/lib/discordrb/events/presence.rb +14 -4
  64. data/lib/discordrb/events/raw.rb +1 -3
  65. data/lib/discordrb/events/reactions.rb +49 -3
  66. data/lib/discordrb/events/typing.rb +6 -4
  67. data/lib/discordrb/events/voice_server_update.rb +47 -0
  68. data/lib/discordrb/events/voice_state_update.rb +15 -10
  69. data/lib/discordrb/events/webhooks.rb +9 -6
  70. data/lib/discordrb/gateway.rb +72 -57
  71. data/lib/discordrb/id_object.rb +39 -0
  72. data/lib/discordrb/light/integrations.rb +1 -1
  73. data/lib/discordrb/light/light_bot.rb +1 -1
  74. data/lib/discordrb/logger.rb +4 -4
  75. data/lib/discordrb/paginator.rb +57 -0
  76. data/lib/discordrb/permissions.rb +103 -8
  77. data/lib/discordrb/version.rb +1 -1
  78. data/lib/discordrb/voice/encoder.rb +3 -3
  79. data/lib/discordrb/voice/network.rb +84 -43
  80. data/lib/discordrb/voice/sodium.rb +96 -0
  81. data/lib/discordrb/voice/voice_bot.rb +34 -26
  82. metadata +93 -55
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  # Specify your gem's dependencies in discordrb.gemspec
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2016 meew0
3
+ Copyright (c) 2015-2020 meew0
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,42 +1,58 @@
1
1
  [![Gem](https://img.shields.io/gem/v/discordrb.svg)](https://rubygems.org/gems/discordrb)
2
2
  [![Gem](https://img.shields.io/gem/dt/discordrb.svg)](https://rubygems.org/gems/discordrb)
3
- [![Build Status](https://travis-ci.org/meew0/discordrb.svg?branch=master)](https://travis-ci.org/meew0/discordrb)
4
- [![Inline docs](https://inch-ci.org/github/meew0/discordrb.svg?branch=master&style=shields)](https://inch-ci.org/github/meew0/discordrb)
5
- [![Code Climate](https://codeclimate.com/github/meew0/discordrb/badges/gpa.svg)](https://codeclimate.com/github/meew0/discordrb)
6
- [![Test Coverage](https://codeclimate.com/github/meew0/discordrb/badges/coverage.svg)](https://codeclimate.com/github/meew0/discordrb/coverage)
3
+ [![CircleCI](https://circleci.com/gh/shardlab/discordrb.svg?style=svg)](https://circleci.com/gh/shardlab/discordrb)
4
+ [![Inline docs](http://inch-ci.org/github/shardlab/discordrb.svg?branch=main)](http://inch-ci.org/github/shardlab/discordrb)
7
5
  [![Join Discord](https://img.shields.io/badge/discord-join-7289DA.svg)](https://discord.gg/cyK3Hjm)
8
6
  # discordrb
9
7
 
10
- An implementation of the [Discord](https://discordapp.com/) API using Ruby.
8
+ An implementation of the [Discord](https://discord.com/) API using Ruby.
11
9
 
12
10
  ## Quick links to sections
13
11
 
14
- * [Dependencies](https://github.com/meew0/discordrb#dependencies)
15
- * [Installation](https://github.com/meew0/discordrb#installation)
16
- * [Usage](https://github.com/meew0/discordrb#usage)
17
- * [Webhooks Client](https://github.com/meew0/discordrb#webhooks-client)
18
- * [Support](https://github.com/meew0/discordrb#support)
19
- * [Development](https://github.com/meew0/discordrb#development), [Contributing](https://github.com/meew0/discordrb#contributing)
20
- * [License](https://github.com/meew0/discordrb#license)
12
+ * [Introduction](https://github.com/shardlab/discordrb#introduction)
13
+ * [Dependencies](https://github.com/shardlab/discordrb#dependencies)
14
+ * [Installation](https://github.com/shardlab/discordrb#installation)
15
+ * [Usage](https://github.com/shardlab/discordrb#usage)
16
+ * [Webhooks Client](https://github.com/shardlab/discordrb#webhooks-client)
17
+ * [Support](https://github.com/shardlab/discordrb#support)
18
+ * [Development](https://github.com/shardlab/discordrb#development), [Contributing](https://github.com/shardlab/discordrb#contributing)
19
+ * [License](https://github.com/shardlab/discordrb#license)
21
20
 
22
- See also: [Documentation](https://www.rubydoc.info/gems/discordrb), [Tutorials](https://github.com/meew0/discordrb/wiki)
21
+ See also: [Documentation](https://www.rubydoc.info/gems/discordrb), [Tutorials](https://github.com/shardlab/discordrb/wiki)
23
22
 
24
- ## Dependencies
23
+ ## Introduction
24
+
25
+ `discordrb` aims to meet the following design goals:
26
+
27
+ 1. Full coverage of the public bot API.
28
+ 2. Expressive, high level abstractions for rapid development of common applications.
29
+ 3. Friendly to Ruby beginners and beginners of open source contribution.
30
+
31
+ If you enjoy using the library, consider getting involved with the community to help us improve and meet these goals!
32
+
33
+ **You should consider using `discordrb` if:**
25
34
 
26
- * Ruby 2.2+
27
- * An installed build system for native extensions (on Windows for Ruby < 2.4, try the [DevKit](https://rubyinstaller.org/downloads/); installation instructions [here](https://github.com/oneclick/rubyinstaller/wiki/Development-Kit#quick-start) - you only need to do the quick start)
35
+ - You need a bot - and fast - for small or medium sized communities, and don't want to be bogged down with "low level" details. Getting started takes minutes, and utilities like a command parser and tools for modularization make it simple to quickly add or change your bots functionality.
36
+ - You like or want to learn Ruby, or want to contribute to a Ruby project. A lot of our users are new to Ruby, and eventually make their first open source contributions with us. We have an active Discord channel with experienced members who will happily help you get involved, either as a user or contributor.
37
+ - You want to experiment with Discord's API or prototype concepts for Discord bots without too much commitment.
28
38
 
29
- > **Note:** RubyInstaller for Ruby versions 2.4+ will install the DevKit as the last step of the installation.
39
+ **You should consider other libraries if:**
40
+
41
+ - You need to scale to large volumes of servers (>2,500) with lots of members. It's still possible, but it can be difficult to scale Ruby processes, and it requires more in depth knowledge to do so well. Especially if you already have a bot that is on a large amount of servers, porting to Ruby is unlikely to improve your performance in most cases.
42
+ - You want full control over the library that you're using. While we expose some "lower level" interfaces, they are unstable, and only exist to serve the more powerful abstractions in the library.
43
+
44
+ ## Dependencies
45
+
46
+ * Ruby >= 2.5 supported
47
+ * An installed build system for native extensions (on Windows, make sure you download the "Ruby+Devkit" version of [RubyInstaller](https://rubyinstaller.org/downloads/))
30
48
 
31
49
  ### Voice dependencies
32
50
 
33
51
  This section only applies to you if you want to use voice functionality.
34
- * [libsodium](https://github.com/meew0/discordrb/wiki/Installing-libsodium)
35
- * A compiled libopus distribution for your system, anywhere the script can find it. See [here](https://github.com/meew0/discordrb/wiki/Installing-libopus) for installation instructions.
52
+ * [libsodium](https://github.com/shardlab/discordrb/wiki/Installing-libsodium)
53
+ * A compiled libopus distribution for your system, anywhere the script can find it. See [here](https://github.com/shardlab/discordrb/wiki/Installing-libopus) for installation instructions.
36
54
  * [FFmpeg](https://www.ffmpeg.org/download.html) installed and in your PATH
37
55
 
38
- In addition to this, if you're on Windows and want to use voice functionality, your installed Ruby version **needs to be 32 bit**, as otherwise Opus won't work.
39
-
40
56
  ## Installation
41
57
 
42
58
  ### With Bundler
@@ -47,7 +63,7 @@ Using [Bundler](https://bundler.io/#getting-started), you can add discordrb to y
47
63
 
48
64
  And then install via `bundle install`.
49
65
 
50
- Run the [ping example](https://github.com/meew0/discordrb/blob/master/examples/ping.rb) to verify that the installation works (make sure to replace the token and client ID in there with your bots'!):
66
+ Run the [ping example](https://github.com/shardlab/discordrb/blob/master/examples/ping.rb) to verify that the installation works (make sure to replace the token and client ID in there with your bots'!):
51
67
 
52
68
  To run the bot while using bundler:
53
69
 
@@ -63,7 +79,7 @@ Alternatively, while Bundler is the recommended option, you can also install dis
63
79
 
64
80
  #### Windows
65
81
 
66
- > **Make sure you have the DevKit installed! See the [Dependencies](https://github.com/meew0/discordrb#dependencies) section)**
82
+ > **Make sure you have the DevKit installed! See the [Dependencies](https://github.com/shardlab/discordrb#dependencies) section)**
67
83
 
68
84
  gem install discordrb --platform=ruby
69
85
 
@@ -71,53 +87,9 @@ To run the bot:
71
87
 
72
88
  ruby ping.rb
73
89
 
74
- #### Troubleshooting
75
-
76
- **If you get an error like this when installing the gem**:
77
-
78
- ERROR: Error installing discordrb:
79
- The 'websocket-driver' native gem requires installed build tools.
80
-
81
- You're missing the development kit required to build native extensions.
82
-
83
- ##### RubyInstaller for ruby 2.4.3-2 and above
84
-
85
- RubyInstaller after version 2.3.3 now includes the development kit in the installer. If you do not have the development kit and have installed ruby using RubyInstaller, open a command prompt with administrator privileges and run:
86
-
87
- ridk install
88
-
89
- Select option 3, and then run
90
-
91
- ridk enable
92
-
93
- To enable the changes
94
-
95
- ##### RubyInstaller for ruby 2.3.3 and below
90
+ ### Installation Troubleshooting
96
91
 
97
- Download the development kit [here](https://rubyinstaller.org/downloads/) (scroll down to "Development Kit", then choose the one for Ruby 2.0 and your system architecture) and extract it somewhere. Open a command prompt in that folder and run:
98
-
99
- ruby dk.rb init
100
- ruby dk.rb install
101
-
102
- Then reinstall discordrb:
103
-
104
- gem uninstall discordrb
105
- bundle install
106
-
107
- # Or, if you didn't use bundler:
108
- gem install discordrb
109
-
110
- **If Ruby complains about `ffi_c` not being able to be found:**
111
-
112
- For example
113
-
114
- C:/Ruby23-x64/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- ffi_c (LoadError)
115
-
116
- Your ffi setup is screwed up, first run `gem uninstall ffi` (uninstall all versions if it asks you, say yes to any unmet dependencies), then run `gem install ffi --platform=ruby` to fix it. If it says something about build tools, follow the steps in the first troubleshooting section.
117
-
118
- **If you're having trouble getting voice playback to work**:
119
-
120
- Look here: https://github.com/meew0/discordrb/wiki/Voice-sending#troubleshooting
92
+ See https://github.com/shardlab/discordrb/wiki/FAQ#installation for a list of common problems and solutions when installing `discordrb`.
121
93
 
122
94
  ## Usage
123
95
 
@@ -137,7 +109,7 @@ bot.run
137
109
 
138
110
  This bot responds to every "Ping!" with a "Pong!".
139
111
 
140
- See [additional examples here](https://github.com/meew0/discordrb/tree/master/examples).
112
+ See [additional examples here](https://github.com/shardlab/discordrb/tree/master/examples).
141
113
 
142
114
  You can find examples of projects that use discordrb by [searching for the discordrb topic on GitHub](https://github.com/topics/discordrb).
143
115
 
@@ -148,7 +120,7 @@ If you've made an open source project on GitHub that uses discordrb, consider ad
148
120
  Also included is a webhooks client, which can be used as a separate gem `discordrb-webhooks`. This special client can be used to form requests to Discord webhook URLs in a high-level manner.
149
121
 
150
122
  - [`discordrb-webhooks` documentation](https://www.rubydoc.info/gems/discordrb-webhooks)
151
- - [More information about webhooks](https://support.discordapp.com/hc/en-us/articles/228383668-Intro-to-Webhooks)
123
+ - [More information about webhooks](https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks)
152
124
  - [Embed visualizer tool](https://leovoel.github.io/embed-visualizer/) - Includes a discordrb code generator for forming embeds
153
125
 
154
126
  ### Usage
@@ -156,7 +128,7 @@ Also included is a webhooks client, which can be used as a separate gem `discord
156
128
  ```ruby
157
129
  require 'discordrb/webhooks'
158
130
 
159
- WEBHOOK_URL = 'https://discordapp.com/api/webhooks/424070213278105610/yByxDncRvHi02mhKQheviQI2erKkfRRwFcEp0MMBfib1ds6ZHN13xhPZNS2-fJo_ApSw'.freeze
131
+ WEBHOOK_URL = 'https://discord.com/api/webhooks/424070213278105610/yByxDncRvHi02mhKQheviQI2erKkfRRwFcEp0MMBfib1ds6ZHN13xhPZNS2-fJo_ApSw'.freeze
160
132
 
161
133
  client = Discordrb::Webhooks::Client.new(url: WEBHOOK_URL)
162
134
  client.execute do |builder|
@@ -173,19 +145,29 @@ end
173
145
 
174
146
  ## Support
175
147
 
176
- You can find me (@meew0, ID 66237334693085184) on the unofficial Discord API server - if you have a question, just ask there, I or somebody else will probably answer you: https://discord.gg/3Trm6FW
148
+ If you need help or have a question, you can:
177
149
 
178
- ## Development
150
+ 1. Join our [Discord channel](https://discord.gg/cyK3Hjm). This is the fastest means of getting support.
151
+ 2. [Open an issue](https://github.com/shardlab/discordrb/issues). Be sure to read the issue template, and provide as much detail as you can.
179
152
 
180
- **This section is for developing discordrb itself! If you just want to make a bot, see the [Installation](https://github.com/meew0/discordrb#installation) section.**
153
+ ## Contributing
181
154
 
182
- After checking out the repo, run `bin/setup` to install dependencies. You can then run tests via `bundle exec rspec spec`. Make sure to run rubocop also: `bundle exec rubocop`. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
155
+ Thank you for your interest in contributing!
156
+ Bug reports and pull requests are welcome on GitHub at https://github.com/shardlab/discordrb.
183
157
 
184
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
158
+ In general, we recommend starting by discussing what you would like to contribute in the [Discord channel](https://discord.gg/cyK3Hjm).
159
+ There are usually a handful of people working on things for the library, and what you're looking for may already be on the way.
185
160
 
186
- ## Contributing
161
+ Additionally, there is a chance what you are looking for might already exist, or we decided not to pursue it for some reason.
162
+ Be sure to use the search feature on our documentation, GitHub, and Discord to see if this might be the case.
187
163
 
188
- Bug reports and pull requests are welcome on GitHub at https://github.com/meew0/discordrb.
164
+ ## Development setup
165
+
166
+ **This section is for developing discordrb itself! If you just want to make a bot, see the [Installation](https://github.com/shardlab/discordrb#installation) section.**
167
+
168
+ After checking out the repo, run `bin/setup` to install dependencies. You can then run tests via `bundle exec rspec spec`. Make sure to run rubocop also: `bundle exec rubocop`. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
169
+
170
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
189
171
 
190
172
  ## License
191
173
 
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler/gem_helper'
2
4
 
3
5
  namespace :main do
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'bundler/setup'
4
5
  require 'discordrb'
@@ -1,18 +1,18 @@
1
- # coding: utf-8
1
+ # frozen_string_literal: true
2
2
 
3
- lib = File.expand_path('../lib', __FILE__)
3
+ lib = File.expand_path('lib', __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
  require 'discordrb/webhooks/version'
6
6
 
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = 'discordrb-webhooks'
9
9
  spec.version = Discordrb::Webhooks::VERSION
10
- spec.authors = ['meew0']
10
+ spec.authors = %w[meew0 swarley]
11
11
  spec.email = ['']
12
12
 
13
13
  spec.summary = 'Webhook client for discordrb'
14
14
  spec.description = "A client for Discord's webhooks to fit alongside [discordrb](https://rubygems.org/gems/discordrb)."
15
- spec.homepage = 'https://github.com/meew0/discordrb'
15
+ spec.homepage = 'https://github.com/shardlab/discordrb'
16
16
  spec.license = 'MIT'
17
17
 
18
18
  spec.files = `git ls-files -z lib/discordrb/webhooks/`.split("\x0") + ['lib/discordrb/webhooks.rb']
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
21
  spec.require_paths = ['lib']
22
22
 
23
- spec.add_dependency 'rest-client', '>= 2.1.0.rc1'
23
+ spec.add_dependency 'rest-client', '>= 2.0.0'
24
24
 
25
- spec.required_ruby_version = '>= 2.1.0'
25
+ spec.required_ruby_version = '>= 2.5'
26
26
  end
@@ -1,44 +1,44 @@
1
- # coding: utf-8
1
+ # frozen_string_literal: true
2
2
 
3
- lib = File.expand_path('../lib', __FILE__)
3
+ lib = File.expand_path('lib', __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
  require 'discordrb/version'
6
6
 
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = 'discordrb'
9
9
  spec.version = Discordrb::VERSION
10
- spec.authors = ['meew0']
10
+ spec.authors = %w[meew0 swarley]
11
11
  spec.email = ['']
12
12
 
13
13
  spec.summary = 'Discord API for Ruby'
14
- spec.description = 'A Ruby implementation of the Discord (https://discordapp.com) API.'
15
- spec.homepage = 'https://github.com/meew0/discordrb'
14
+ spec.description = 'A Ruby implementation of the Discord (https://discord.com) API.'
15
+ spec.homepage = 'https://github.com/shardlab/discordrb'
16
16
  spec.license = 'MIT'
17
17
 
18
18
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|examples|lib/discordrb/webhooks)/}) }
19
19
  spec.bindir = 'exe'
20
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
21
  spec.metadata = {
22
- 'changelog_uri' => 'https://github.com/meew0/discordrb/blob/master/CHANGELOG.md'
22
+ 'changelog_uri' => 'https://github.com/shardlab/discordrb/blob/master/CHANGELOG.md'
23
23
  }
24
24
  spec.require_paths = ['lib']
25
25
 
26
- spec.add_dependency 'rest-client', '>= 2.1.0.rc1'
26
+ spec.add_dependency 'ffi', '>= 1.9.24'
27
27
  spec.add_dependency 'opus-ruby'
28
+ spec.add_dependency 'rest-client', '>= 2.0.0'
28
29
  spec.add_dependency 'websocket-client-simple', '>= 0.3.0'
29
- spec.add_dependency 'rbnacl', '~> 3.4.0' # 24: update
30
- spec.add_dependency 'ffi', '>= 1.9.24'
31
30
 
32
31
  spec.add_dependency 'discordrb-webhooks', '~> 3.3.0'
33
32
 
34
- spec.required_ruby_version = '>= 2.2.4'
33
+ spec.required_ruby_version = '>= 2.5'
35
34
 
36
- spec.add_development_dependency 'bundler', '~> 1.10'
37
- spec.add_development_dependency 'rake', '~> 10.0'
38
- spec.add_development_dependency 'yard', '~> 0.9.9'
39
- spec.add_development_dependency 'redcarpet', '~> 3.4.0' # YARD markdown formatting
40
- spec.add_development_dependency 'rspec', '~> 3.4.0'
35
+ spec.add_development_dependency 'bundler', '>= 1.10', '< 3'
36
+ spec.add_development_dependency 'rake', '~> 13.0'
37
+ spec.add_development_dependency 'redcarpet', '~> 3.5.0' # YARD markdown formatting
38
+ spec.add_development_dependency 'rspec', '~> 3.10.0'
41
39
  spec.add_development_dependency 'rspec-prof', '~> 0.0.7'
42
- spec.add_development_dependency 'rubocop', '0.49.1'
43
- spec.add_development_dependency 'simplecov', '~> 0.16.0'
40
+ spec.add_development_dependency 'rubocop', '~> 1.4.0'
41
+ spec.add_development_dependency 'rubocop-performance', '~> 1.0'
42
+ spec.add_development_dependency 'simplecov', '~> 0.19.0'
43
+ spec.add_development_dependency 'yard', '~> 0.9.9'
44
44
  end
@@ -11,6 +11,79 @@ module Discordrb
11
11
 
12
12
  # The default debug logger used by discordrb.
13
13
  LOGGER = Logger.new(ENV['DISCORDRB_FANCY_LOG'])
14
+
15
+ # The Unix timestamp Discord IDs are based on
16
+ DISCORD_EPOCH = 1_420_070_400_000
17
+
18
+ # Used to declare what events you wish to recieve from Discord.
19
+ # @see https://discordapp.com/developers/docs/topics/gateway#gateway-intents
20
+ INTENTS = {
21
+ servers: 1 << 0,
22
+ server_members: 1 << 1,
23
+ server_bans: 1 << 2,
24
+ server_emojis: 1 << 3,
25
+ server_integrations: 1 << 4,
26
+ server_webhooks: 1 << 5,
27
+ server_invites: 1 << 6,
28
+ server_voice_states: 1 << 7,
29
+ server_presences: 1 << 8,
30
+ server_messages: 1 << 9,
31
+ server_message_reactions: 1 << 10,
32
+ server_message_typing: 1 << 11,
33
+ direct_messages: 1 << 12,
34
+ direct_message_reactions: 1 << 13,
35
+ direct_message_typing: 1 << 14
36
+ }.freeze
37
+
38
+ # @return [Integer] All available intents
39
+ ALL_INTENTS = INTENTS.values.reduce(&:|)
40
+
41
+ # Compares two objects based on IDs - either the objects' IDs are equal, or one object is equal to the other's ID.
42
+ def self.id_compare(one_id, other)
43
+ other.respond_to?(:resolve_id) ? (one_id.resolve_id == other.resolve_id) : (one_id == other)
44
+ end
45
+
46
+ # The maximum length a Discord message can have
47
+ CHARACTER_LIMIT = 2000
48
+
49
+ # Splits a message into chunks of 2000 characters. Attempts to split by lines if possible.
50
+ # @param msg [String] The message to split.
51
+ # @return [Array<String>] the message split into chunks
52
+ def self.split_message(msg)
53
+ # If the messages is empty, return an empty array
54
+ return [] if msg.empty?
55
+
56
+ # Split the message into lines
57
+ lines = msg.lines
58
+
59
+ # Turn the message into a "triangle" of consecutively longer slices, for example the array [1,2,3,4] would become
60
+ # [
61
+ # [1],
62
+ # [1, 2],
63
+ # [1, 2, 3],
64
+ # [1, 2, 3, 4]
65
+ # ]
66
+ tri = (0...lines.length).map { |i| lines.combination(i + 1).first }
67
+
68
+ # Join the individual elements together to get an array of strings with consecutively more lines
69
+ joined = tri.map(&:join)
70
+
71
+ # Find the largest element that is still below the character limit, or if none such element exists return the first
72
+ ideal = joined.max_by { |e| e.length > CHARACTER_LIMIT ? -1 : e.length }
73
+
74
+ # If it's still larger than the character limit (none was smaller than it) split it into the largest chunk without
75
+ # cutting words apart, breaking on the nearest space within character limit, otherwise just return an array with one element
76
+ ideal_ary = ideal.length > CHARACTER_LIMIT ? ideal.split(/(.{1,#{CHARACTER_LIMIT}}\b|.{1,#{CHARACTER_LIMIT}})/o).reject(&:empty?) : [ideal]
77
+
78
+ # Slice off the ideal part and strip newlines
79
+ rest = msg[ideal.length..-1].strip
80
+
81
+ # If none remains, return an empty array -> we're done
82
+ return [] unless rest
83
+
84
+ # Otherwise, call the method recursively to split the rest of the string and add it onto the ideal array
85
+ ideal_ary + split_message(rest)
86
+ end
14
87
  end
15
88
 
16
89
  # In discordrb, Integer and {String} are monkey-patched to allow for easy resolution of IDs
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'discordrb/id_object'
4
+
5
+ module Discordrb
6
+ # Builder class for `allowed_mentions` when sending messages.
7
+ class AllowedMentions
8
+ # @return [Array<"users", "roles", "everyone">, nil]
9
+ attr_accessor :parse
10
+
11
+ # @return [Array<String, Integer>, nil]
12
+ attr_accessor :users
13
+
14
+ # @return [Array<String, Integer>, nil]
15
+ attr_accessor :roles
16
+
17
+ # @param parse [Array<"users", "roles", "everyone">] Mention types that can be inferred from the message.
18
+ # `users` and `roles` allow for all mentions of the respective type to ping. `everyone` allows usage of `@everyone` and `@here`
19
+ # @param users [Array<User, String, Integer>] Users or user IDs that can be pinged. Cannot be used in conjunction with `"users"` in `parse`
20
+ # @param roles [Array<Role, String, Integer>] Roles or role IDs that can be pinged. Cannot be used in conjunction with `"roles"` in `parse`
21
+ def initialize(parse: nil, users: nil, roles: nil)
22
+ @parse = parse
23
+ @users = users
24
+ @roles = roles
25
+ end
26
+
27
+ # @!visibility private
28
+ def to_hash
29
+ {
30
+ parse: @parse,
31
+ users: @users&.map { |user| user.is_a?(IDObject) ? user.id : user },
32
+ roles: @roles&.map { |role| role.is_a?(IDObject) ? role.id : role }
33
+ }.compact
34
+ end
35
+ end
36
+ end