discorb 0.16.0 → 0.17.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. checksums.yaml +4 -4
  2. data/.gitattributes +1 -0
  3. data/.github/workflows/build_main.yml +2 -2
  4. data/.github/workflows/build_version.yml +1 -1
  5. data/.github/workflows/codeql-analysis.yml +1 -1
  6. data/.github/workflows/lint-push.yml +3 -5
  7. data/.github/workflows/lint.yml +1 -1
  8. data/.github/workflows/spec.yml +30 -0
  9. data/.lefthook/commit-msg/validator.rb +5 -0
  10. data/.rspec +2 -0
  11. data/.rspec_parallel +2 -0
  12. data/.rubocop.yml +43 -6
  13. data/Changelog.md +14 -1
  14. data/Gemfile +14 -8
  15. data/Rakefile +41 -26
  16. data/bin/console +3 -3
  17. data/docs/Examples.md +1 -1
  18. data/docs/application_command.md +138 -46
  19. data/docs/cli/irb.md +2 -2
  20. data/docs/cli/new.md +14 -9
  21. data/docs/cli/run.md +7 -11
  22. data/docs/cli.md +17 -10
  23. data/docs/events.md +209 -211
  24. data/docs/extension.md +1 -2
  25. data/docs/faq.md +0 -1
  26. data/docs/tutorial.md +12 -12
  27. data/docs/voice_events.md +106 -106
  28. data/examples/commands/message.rb +63 -0
  29. data/examples/commands/permission.rb +18 -0
  30. data/examples/commands/slash.rb +44 -0
  31. data/examples/commands/user.rb +51 -0
  32. data/examples/components/authorization_button.rb +2 -2
  33. data/examples/components/select_menu.rb +2 -2
  34. data/examples/extension/main.rb +1 -1
  35. data/examples/extension/message_expander.rb +5 -2
  36. data/examples/simple/eval.rb +2 -2
  37. data/examples/simple/ping_pong.rb +1 -1
  38. data/examples/simple/rolepanel.rb +1 -1
  39. data/examples/simple/shard.rb +1 -1
  40. data/examples/simple/wait_for_message.rb +1 -1
  41. data/exe/discorb +31 -16
  42. data/lefthook.yml +45 -0
  43. data/lib/discorb/allowed_mentions.rb +1 -0
  44. data/lib/discorb/app_command/command.rb +127 -65
  45. data/lib/discorb/app_command/common.rb +25 -0
  46. data/lib/discorb/app_command/handler.rb +115 -33
  47. data/lib/discorb/app_command.rb +2 -1
  48. data/lib/discorb/application.rb +1 -0
  49. data/lib/discorb/asset.rb +1 -2
  50. data/lib/discorb/attachment.rb +1 -1
  51. data/lib/discorb/audit_logs.rb +11 -8
  52. data/lib/discorb/channel/base.rb +108 -0
  53. data/lib/discorb/channel/category.rb +32 -0
  54. data/lib/discorb/channel/container.rb +44 -0
  55. data/lib/discorb/channel/dm.rb +28 -0
  56. data/lib/discorb/channel/guild.rb +245 -0
  57. data/lib/discorb/channel/stage.rb +140 -0
  58. data/lib/discorb/channel/text.rb +345 -0
  59. data/lib/discorb/channel/thread.rb +321 -0
  60. data/lib/discorb/channel/voice.rb +79 -0
  61. data/lib/discorb/channel.rb +2 -1165
  62. data/lib/discorb/client.rb +38 -26
  63. data/lib/discorb/common.rb +2 -1
  64. data/lib/discorb/components/button.rb +2 -1
  65. data/lib/discorb/components/select_menu.rb +4 -2
  66. data/lib/discorb/components/text_input.rb +12 -2
  67. data/lib/discorb/components.rb +1 -1
  68. data/lib/discorb/embed.rb +22 -7
  69. data/lib/discorb/emoji.rb +30 -3
  70. data/lib/discorb/emoji_table.rb +4969 -3
  71. data/lib/discorb/event.rb +29 -4
  72. data/lib/discorb/exe/about.rb +1 -0
  73. data/lib/discorb/exe/irb.rb +2 -4
  74. data/lib/discorb/exe/new.rb +90 -23
  75. data/lib/discorb/exe/run.rb +8 -22
  76. data/lib/discorb/exe/setup.rb +25 -12
  77. data/lib/discorb/exe/show.rb +4 -3
  78. data/lib/discorb/extend.rb +1 -0
  79. data/lib/discorb/extension.rb +6 -3
  80. data/lib/discorb/flag.rb +11 -0
  81. data/lib/discorb/gateway.rb +67 -19
  82. data/lib/discorb/guild.rb +188 -56
  83. data/lib/discorb/guild_template.rb +10 -4
  84. data/lib/discorb/http.rb +16 -9
  85. data/lib/discorb/integration.rb +4 -1
  86. data/lib/discorb/intents.rb +1 -1
  87. data/lib/discorb/interaction/autocomplete.rb +28 -16
  88. data/lib/discorb/interaction/command.rb +36 -12
  89. data/lib/discorb/interaction/components.rb +5 -2
  90. data/lib/discorb/interaction/modal.rb +0 -1
  91. data/lib/discorb/interaction/response.rb +61 -22
  92. data/lib/discorb/interaction/root.rb +13 -13
  93. data/lib/discorb/interaction.rb +1 -0
  94. data/lib/discorb/invite.rb +5 -2
  95. data/lib/discorb/member.rb +25 -5
  96. data/lib/discorb/message.rb +47 -14
  97. data/lib/discorb/message_meta.rb +1 -0
  98. data/lib/discorb/modules.rb +56 -14
  99. data/lib/discorb/presence.rb +2 -2
  100. data/lib/discorb/rate_limit.rb +7 -2
  101. data/lib/discorb/reaction.rb +4 -4
  102. data/lib/discorb/role.rb +19 -4
  103. data/lib/discorb/shard.rb +1 -1
  104. data/lib/discorb/sticker.rb +8 -7
  105. data/lib/discorb/user.rb +2 -1
  106. data/lib/discorb/utils/colored_puts.rb +1 -0
  107. data/lib/discorb/voice_state.rb +10 -6
  108. data/lib/discorb/webhook.rb +36 -24
  109. data/lib/discorb.rb +5 -3
  110. data/po/yard.pot +9 -9
  111. data/sig/discorb.rbs +7232 -7235
  112. metadata +21 -5
  113. data/examples/commands/bookmarker.rb +0 -42
  114. data/examples/commands/hello.rb +0 -10
  115. data/examples/commands/inspect.rb +0 -25
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: discorb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - sevenc-nanashi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-20 00:00:00.000000000 Z
11
+ date: 2022-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async
@@ -95,7 +95,11 @@ files:
95
95
  - ".github/workflows/lint-push.yml"
96
96
  - ".github/workflows/lint.yml"
97
97
  - ".github/workflows/package_register.yml"
98
+ - ".github/workflows/spec.yml"
98
99
  - ".gitignore"
100
+ - ".lefthook/commit-msg/validator.rb"
101
+ - ".rspec"
102
+ - ".rspec_parallel"
99
103
  - ".rubocop.yml"
100
104
  - ".yardopts"
101
105
  - CODE_OF_CONDUCT.md
@@ -132,9 +136,10 @@ files:
132
136
  - docs/license.md
133
137
  - docs/tutorial.md
134
138
  - docs/voice_events.md
135
- - examples/commands/bookmarker.rb
136
- - examples/commands/hello.rb
137
- - examples/commands/inspect.rb
139
+ - examples/commands/message.rb
140
+ - examples/commands/permission.rb
141
+ - examples/commands/slash.rb
142
+ - examples/commands/user.rb
138
143
  - examples/components/authorization_button.rb
139
144
  - examples/components/select_menu.rb
140
145
  - examples/extension/main.rb
@@ -145,16 +150,27 @@ files:
145
150
  - examples/simple/shard.rb
146
151
  - examples/simple/wait_for_message.rb
147
152
  - exe/discorb
153
+ - lefthook.yml
148
154
  - lib/discorb.rb
149
155
  - lib/discorb/allowed_mentions.rb
150
156
  - lib/discorb/app_command.rb
151
157
  - lib/discorb/app_command/command.rb
158
+ - lib/discorb/app_command/common.rb
152
159
  - lib/discorb/app_command/handler.rb
153
160
  - lib/discorb/application.rb
154
161
  - lib/discorb/asset.rb
155
162
  - lib/discorb/attachment.rb
156
163
  - lib/discorb/audit_logs.rb
157
164
  - lib/discorb/channel.rb
165
+ - lib/discorb/channel/base.rb
166
+ - lib/discorb/channel/category.rb
167
+ - lib/discorb/channel/container.rb
168
+ - lib/discorb/channel/dm.rb
169
+ - lib/discorb/channel/guild.rb
170
+ - lib/discorb/channel/stage.rb
171
+ - lib/discorb/channel/text.rb
172
+ - lib/discorb/channel/thread.rb
173
+ - lib/discorb/channel/voice.rb
158
174
  - lib/discorb/client.rb
159
175
  - lib/discorb/color.rb
160
176
  - lib/discorb/common.rb
@@ -1,42 +0,0 @@
1
- # frozen_string_literal: true
2
- require "discorb"
3
- require "json"
4
-
5
- client = Discorb::Client.new
6
-
7
- client.once :standby do
8
- puts "Logged in as #{client.user}"
9
- end
10
-
11
- def bookmark_channel(guild)
12
- guild.channels.find { |c| c.is_a?(Discorb::TextChannel) && c.name == "bookmarks" }
13
- end
14
-
15
- def build_embed_from_message(message)
16
- embed = Discorb::Embed.new
17
- embed.description = message.content
18
- embed.author = Discorb::Embed::Author.new(message.author.to_s_user, icon: message.author.avatar.url)
19
- embed.timestamp = message.timestamp
20
- embed.footer = Discorb::Embed::Footer.new("Message ID: #{message.id}")
21
- embed
22
- end
23
-
24
- client.message_command("Bookmark", guild_ids: [857_373_681_096_327_180]) do |interaction, message|
25
- unless channel = bookmark_channel(interaction.guild)
26
- interaction.post("Bookmark channel not found. Please create one called `bookmarks`.", ephemeral: true)
27
- next
28
- end
29
- channel.post(
30
- message.jump_url,
31
- embed: build_embed_from_message(message),
32
- ).wait
33
- interaction.post("Bookmarked!", ephemeral: true)
34
- end
35
-
36
- client.change_presence(
37
- Discorb::Activity.new(
38
- "Open message context menu to bookmark"
39
- )
40
- )
41
-
42
- client.run(ENV["DISCORD_BOT_TOKEN"])
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
- require "discorb"
3
-
4
- client = Discorb::Client.new
5
-
6
- client.slash("hello", "Greet for you") do |interaction|
7
- interaction.post("Hello!", ephemeral: true)
8
- end
9
-
10
- client.run(ENV["DISCORD_BOT_TOKEN"])
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
- require "discorb"
3
-
4
- client = Discorb::Client.new
5
-
6
- client.once :standby do
7
- puts "Logged in as #{client.user}"
8
- end
9
-
10
- client.user_command("Info", guild_ids: [857_373_681_096_327_180]) do |interaction|
11
- interaction.post(embed: Discorb::Embed.new(
12
- "Information of #{interaction.target.to_s_user}",
13
- fields: [
14
- Discorb::Embed::Field.new("User", interaction.target.to_s_user),
15
- Discorb::Embed::Field.new("ID", interaction.target.id),
16
- Discorb::Embed::Field.new("Bot", interaction.target.bot? ? "Yes" : "No"),
17
- Discorb::Embed::Field.new("Joined at", interaction.target.joined_at.to_df("F")),
18
- Discorb::Embed::Field.new("Created at", interaction.target.created_at.to_df("F"))
19
- ],
20
- thumbnail: interaction.target.avatar&.url,
21
-
22
- ), ephemeral: true)
23
- end
24
-
25
- client.run(ENV["DISCORD_BOT_TOKEN"])