slack-ruby-client 0.14.4 → 0.14.5
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/.rubocop.yml +19 -11
- data/.rubocop_todo.yml +66 -47
- data/CHANGELOG.md +8 -0
- data/Dangerfile +1 -0
- data/Gemfile +1 -0
- data/README.md +16 -9
- data/Rakefile +1 -0
- data/bin/commands.rb +6 -0
- data/bin/commands/admin_apps.rb +27 -0
- data/bin/commands/admin_apps_requests.rb +16 -0
- data/bin/commands/admin_users_session.rb +3 -2
- data/bin/commands/api.rb +3 -2
- data/bin/commands/apps.rb +3 -2
- data/bin/commands/apps_permissions.rb +5 -4
- data/bin/commands/apps_permissions_resources.rb +3 -2
- data/bin/commands/apps_permissions_scopes.rb +3 -2
- data/bin/commands/apps_permissions_users.rb +5 -4
- data/bin/commands/auth.rb +5 -4
- data/bin/commands/bots.rb +3 -2
- data/bin/commands/channels.rb +31 -30
- data/bin/commands/chat.rb +19 -18
- data/bin/commands/chat_scheduledMessages.rb +3 -2
- data/bin/commands/conversations.rb +35 -34
- data/bin/commands/dialog.rb +3 -2
- data/bin/commands/dnd.rb +9 -8
- data/bin/commands/emoji.rb +3 -2
- data/bin/commands/files.rb +13 -12
- data/bin/commands/files_comments.rb +3 -2
- data/bin/commands/files_remote.rb +78 -0
- data/bin/commands/groups.rb +33 -32
- data/bin/commands/im.rb +13 -12
- data/bin/commands/migration.rb +3 -2
- data/bin/commands/mpim.rb +11 -10
- data/bin/commands/oauth.rb +5 -4
- data/bin/commands/oauth_v2.rb +17 -0
- data/bin/commands/pins.rb +7 -8
- data/bin/commands/reactions.rb +10 -11
- data/bin/commands/reminders.rb +11 -10
- data/bin/commands/rtm.rb +5 -4
- data/bin/commands/search.rb +7 -6
- data/bin/commands/stars.rb +7 -6
- data/bin/commands/team.rb +9 -8
- data/bin/commands/team_profile.rb +3 -2
- data/bin/commands/usergroups.rb +11 -10
- data/bin/commands/usergroups_users.rb +5 -4
- data/bin/commands/users.rb +21 -20
- data/bin/commands/users_admin.rb +1 -0
- data/bin/commands/users_prefs.rb +1 -0
- data/bin/commands/users_profile.rb +5 -4
- data/bin/commands/views.rb +48 -0
- data/bin/slack +1 -2
- data/examples/hi_real_time/Gemfile +1 -0
- data/examples/hi_real_time/hi.rb +7 -3
- data/examples/hi_real_time_and_web/Gemfile +1 -0
- data/examples/hi_real_time_and_web/hi.rb +7 -3
- data/examples/hi_real_time_async_async/Gemfile +1 -0
- data/examples/hi_real_time_async_async/hi.rb +6 -2
- data/examples/hi_real_time_async_celluloid/Gemfile +1 -0
- data/examples/hi_real_time_async_celluloid/hi.rb +7 -3
- data/examples/hi_real_time_async_eventmachine/Gemfile +1 -0
- data/examples/hi_real_time_async_eventmachine/hi.rb +7 -3
- data/examples/hi_web/Gemfile +1 -0
- data/examples/hi_web/hi.rb +1 -0
- data/examples/new_ticket/Gemfile +1 -0
- data/examples/new_ticket/new_ticket.rb +1 -0
- data/lib/slack-ruby-client.rb +3 -2
- data/lib/slack.rb +1 -0
- data/lib/slack/config.rb +1 -0
- data/lib/slack/events/config.rb +1 -0
- data/lib/slack/events/request.rb +3 -1
- data/lib/slack/logger.rb +6 -5
- data/lib/slack/messages/formatting.rb +1 -0
- data/lib/slack/messages/message.rb +1 -0
- data/lib/slack/real_time/api/message.rb +3 -1
- data/lib/slack/real_time/api/message_id.rb +1 -0
- data/lib/slack/real_time/api/ping.rb +5 -2
- data/lib/slack/real_time/api/typing.rb +3 -1
- data/lib/slack/real_time/client.rb +19 -12
- data/lib/slack/real_time/concurrency.rb +1 -0
- data/lib/slack/real_time/concurrency/async.rb +15 -7
- data/lib/slack/real_time/concurrency/celluloid.rb +9 -3
- data/lib/slack/real_time/concurrency/eventmachine.rb +7 -4
- data/lib/slack/real_time/config.rb +6 -1
- data/lib/slack/real_time/models.rb +1 -0
- data/lib/slack/real_time/models/base.rb +1 -0
- data/lib/slack/real_time/models/bot.rb +1 -0
- data/lib/slack/real_time/models/channel.rb +1 -0
- data/lib/slack/real_time/models/group.rb +1 -0
- data/lib/slack/real_time/models/im.rb +1 -0
- data/lib/slack/real_time/models/team.rb +1 -0
- data/lib/slack/real_time/models/user.rb +1 -0
- data/lib/slack/real_time/socket.rb +14 -11
- data/lib/slack/real_time/stores.rb +1 -0
- data/lib/slack/real_time/stores/base.rb +1 -0
- data/lib/slack/real_time/stores/starter.rb +1 -0
- data/lib/slack/real_time/stores/store.rb +16 -25
- data/lib/slack/version.rb +2 -1
- data/lib/slack/web/api/endpoints.rb +11 -0
- data/lib/slack/web/api/endpoints/admin_apps.rb +42 -0
- data/lib/slack/web/api/endpoints/admin_apps_requests.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_users_session.rb +2 -1
- data/lib/slack/web/api/endpoints/api.rb +2 -1
- data/lib/slack/web/api/endpoints/apps.rb +2 -1
- data/lib/slack/web/api/endpoints/apps_permissions.rb +3 -2
- data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +2 -1
- data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +2 -1
- data/lib/slack/web/api/endpoints/apps_permissions_users.rb +3 -2
- data/lib/slack/web/api/endpoints/auth.rb +3 -2
- data/lib/slack/web/api/endpoints/bots.rb +2 -1
- data/lib/slack/web/api/endpoints/channels.rb +16 -16
- data/lib/slack/web/api/endpoints/chat.rb +10 -9
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +2 -1
- data/lib/slack/web/api/endpoints/conversations.rb +18 -17
- data/lib/slack/web/api/endpoints/dialog.rb +2 -1
- data/lib/slack/web/api/endpoints/dnd.rb +5 -4
- data/lib/slack/web/api/endpoints/emoji.rb +2 -1
- data/lib/slack/web/api/endpoints/files.rb +7 -6
- data/lib/slack/web/api/endpoints/files_comments.rb +2 -1
- data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
- data/lib/slack/web/api/endpoints/groups.rb +17 -22
- data/lib/slack/web/api/endpoints/im.rb +7 -8
- data/lib/slack/web/api/endpoints/migration.rb +2 -1
- data/lib/slack/web/api/endpoints/mpim.rb +6 -7
- data/lib/slack/web/api/endpoints/oauth.rb +3 -2
- data/lib/slack/web/api/endpoints/oauth_v2.rb +30 -0
- data/lib/slack/web/api/endpoints/pins.rb +5 -9
- data/lib/slack/web/api/endpoints/reactions.rb +9 -12
- data/lib/slack/web/api/endpoints/reminders.rb +6 -5
- data/lib/slack/web/api/endpoints/rtm.rb +3 -2
- data/lib/slack/web/api/endpoints/search.rb +4 -3
- data/lib/slack/web/api/endpoints/stars.rb +4 -5
- data/lib/slack/web/api/endpoints/team.rb +5 -5
- data/lib/slack/web/api/endpoints/team_profile.rb +2 -1
- data/lib/slack/web/api/endpoints/usergroups.rb +6 -5
- data/lib/slack/web/api/endpoints/usergroups_users.rb +3 -2
- data/lib/slack/web/api/endpoints/users.rb +11 -16
- data/lib/slack/web/api/endpoints/users_admin.rb +1 -0
- data/lib/slack/web/api/endpoints/users_prefs.rb +1 -0
- data/lib/slack/web/api/endpoints/users_profile.rb +3 -2
- data/lib/slack/web/api/endpoints/views.rb +97 -0
- data/lib/slack/web/api/error.rb +1 -0
- data/lib/slack/web/api/errors/slack_error.rb +2 -1
- data/lib/slack/web/api/errors/too_many_requests_error.rb +1 -0
- data/lib/slack/web/api/mixins.rb +1 -0
- data/lib/slack/web/api/mixins/channels.id.rb +1 -0
- data/lib/slack/web/api/mixins/groups.id.rb +1 -0
- data/lib/slack/web/api/mixins/ids.id.rb +4 -1
- data/lib/slack/web/api/mixins/users.id.rb +1 -0
- data/lib/slack/web/api/mixins/users.search.rb +1 -0
- data/lib/slack/web/api/patches/views.1.view-json.patch +40 -0
- data/lib/slack/web/api/patches/views.1.views-published.patch +16 -0
- data/lib/slack/web/api/templates/command.erb +1 -0
- data/lib/slack/web/api/templates/commands.erb +1 -0
- data/lib/slack/web/api/templates/endpoints.erb +1 -0
- data/lib/slack/web/api/templates/method.erb +1 -0
- data/lib/slack/web/api/templates/method_spec.erb +1 -0
- data/lib/slack/web/client.rb +1 -0
- data/lib/slack/web/config.rb +1 -0
- data/lib/slack/web/faraday/connection.rb +1 -0
- data/lib/slack/web/faraday/request.rb +1 -0
- data/lib/slack/web/faraday/response/raise_error.rb +7 -6
- data/lib/slack/web/pagination/cursor.rb +1 -0
- data/lib/slack_ruby_client.rb +1 -0
- data/lib/tasks/git.rake +1 -0
- data/lib/tasks/real_time.rake +12 -4
- data/lib/tasks/update.rake +1 -0
- data/lib/tasks/web.rake +17 -6
- data/screenshots/create-app.png +0 -0
- data/slack-ruby-client.gemspec +4 -1
- data/spec/integration/integration_spec.rb +16 -17
- data/spec/slack/config_spec.rb +2 -0
- data/spec/slack/events/config_spec.rb +8 -4
- data/spec/slack/events/request_spec.rb +67 -37
- data/spec/slack/messages/formatting_spec.rb +25 -13
- data/spec/slack/real_time/api/message_spec.rb +6 -1
- data/spec/slack/real_time/api/ping_spec.rb +2 -0
- data/spec/slack/real_time/api/typing_spec.rb +5 -1
- data/spec/slack/real_time/client_spec.rb +137 -39
- data/spec/slack/real_time/concurrency/celluloid_spec.rb +11 -6
- data/spec/slack/real_time/concurrency/eventmachine_spec.rb +9 -1
- data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +2 -0
- data/spec/slack/real_time/event_handlers/bot_spec.rb +2 -1
- data/spec/slack/real_time/event_handlers/channel_spec.rb +9 -6
- data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +2 -1
- data/spec/slack/real_time/event_handlers/group_spec.rb +5 -4
- data/spec/slack/real_time/event_handlers/im_spec.rb +4 -3
- data/spec/slack/real_time/event_handlers/team_spec.rb +3 -1
- data/spec/slack/real_time/event_handlers/user_spec.rb +1 -0
- data/spec/slack/real_time/rtm_connect_spec.rb +1 -0
- data/spec/slack/real_time/rtm_start_spec.rb +1 -0
- data/spec/slack/real_time/store_spec.rb +2 -1
- data/spec/slack/slack_spec.rb +37 -5
- data/spec/slack/version_spec.rb +2 -1
- data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/api_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_resources_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_scopes_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_users_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/bots_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/conversations_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +5 -1
- data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +2 -0
- data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +80 -25
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +12 -4
- data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +2 -0
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +6 -1
- data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +95 -0
- data/spec/slack/web/api/endpoints/dnd_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/emoji_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/files_remote_spec.rb +24 -0
- data/spec/slack/web/api/endpoints/files_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/im_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/migration_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/mpim_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/oauth_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/pins_spec.rb +5 -1
- data/spec/slack/web/api/endpoints/reactions_spec.rb +8 -1
- data/spec/slack/web/api/endpoints/reminders_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/rtm_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/search_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/stars_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/team_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/team_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/usergroups_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_admin_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_prefs_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/views_spec.rb +29 -0
- data/spec/slack/web/api/error_spec.rb +4 -2
- data/spec/slack/web/api/errors/service_unavailable_spec.rb +6 -3
- data/spec/slack/web/api/errors/slack_error_spec.rb +4 -2
- data/spec/slack/web/api/mixins/channels_spec.rb +17 -7
- data/spec/slack/web/api/mixins/groups_spec.rb +17 -7
- data/spec/slack/web/api/mixins/users_spec.rb +17 -8
- data/spec/slack/web/api/pagination/cursor_spec.rb +40 -10
- data/spec/slack/web/client_spec.rb +45 -18
- data/spec/slack/web/faraday/response/raise_error_spec.rb +16 -5
- data/spec/spec_helper.rb +2 -1
- data/spec/support/queue_with_timeout.rb +1 -0
- data/spec/support/real_time/concurrency/mock.rb +1 -0
- data/spec/support/real_time/connected_client.rb +9 -3
- data/spec/support/real_time/event.rb +1 -0
- data/spec/support/token.rb +1 -0
- data/spec/support/vcr.rb +1 -0
- metadata +59 -7
- data/screenshots/register-bot.png +0 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
module Slack
|
|
2
3
|
module RealTime
|
|
3
4
|
module Stores
|
|
@@ -26,39 +27,29 @@ module Slack
|
|
|
26
27
|
@users = {}
|
|
27
28
|
end
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
@users[data.id] = @users.key?(data.id) ? @users[data.id].merge(user) : user
|
|
33
|
-
end
|
|
30
|
+
attrs.users&.each do |data|
|
|
31
|
+
user = Models::User.new(data)
|
|
32
|
+
@users[data.id] = @users.key?(data.id) ? @users[data.id].merge(user) : user
|
|
34
33
|
end
|
|
35
34
|
|
|
36
35
|
@channels = {}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
@channels[data.id] = Models::Channel.new(data)
|
|
40
|
-
end
|
|
36
|
+
attrs.channels&.each do |data|
|
|
37
|
+
@channels[data.id] = Models::Channel.new(data)
|
|
41
38
|
end
|
|
42
39
|
|
|
43
40
|
@bots = {}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
@bots[data.id] = Models::Bot.new(data)
|
|
47
|
-
end
|
|
41
|
+
attrs.bots&.each do |data|
|
|
42
|
+
@bots[data.id] = Models::Bot.new(data)
|
|
48
43
|
end
|
|
49
44
|
|
|
50
45
|
@groups = {}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
@groups[data.id] = Models::Group.new(data)
|
|
54
|
-
end
|
|
46
|
+
attrs.groups&.each do |data|
|
|
47
|
+
@groups[data.id] = Models::Group.new(data)
|
|
55
48
|
end
|
|
56
49
|
|
|
57
50
|
@ims = {}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
@ims[data.id] = Models::Im.new(data)
|
|
61
|
-
end
|
|
51
|
+
attrs.ims&.each do |data|
|
|
52
|
+
@ims[data.id] = Models::Im.new(data)
|
|
62
53
|
end
|
|
63
54
|
end
|
|
64
55
|
|
|
@@ -161,7 +152,7 @@ module Slack
|
|
|
161
152
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/events/bot_changed.json
|
|
162
153
|
on :bot_changed do |data|
|
|
163
154
|
bot = bots[data.bot.id]
|
|
164
|
-
bot
|
|
155
|
+
bot&.merge!(data.bot)
|
|
165
156
|
end
|
|
166
157
|
|
|
167
158
|
# A team channel was archived.
|
|
@@ -343,7 +334,7 @@ module Slack
|
|
|
343
334
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/events/group_left.json
|
|
344
335
|
on :group_left do |data|
|
|
345
336
|
channel = groups[data.channel]
|
|
346
|
-
channel.members.delete(self.self.id) if channel
|
|
337
|
+
channel.members.delete(self.self.id) if channel&.key?(:members)
|
|
347
338
|
end
|
|
348
339
|
|
|
349
340
|
# A private group read marker was updated.
|
|
@@ -378,7 +369,7 @@ module Slack
|
|
|
378
369
|
# @see https://api.slack.com/events/im_close
|
|
379
370
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/events/im_close.json
|
|
380
371
|
on :im_close do |data|
|
|
381
|
-
return unless ims
|
|
372
|
+
return unless ims&.key?(data.channel)
|
|
382
373
|
|
|
383
374
|
ims[data.channel].is_open = false
|
|
384
375
|
end
|
|
@@ -404,7 +395,7 @@ module Slack
|
|
|
404
395
|
# @see https://api.slack.com/events/im_open
|
|
405
396
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/events/im_open.json
|
|
406
397
|
on :im_open do |data|
|
|
407
|
-
return unless ims
|
|
398
|
+
return unless ims&.key?(data.channel)
|
|
408
399
|
|
|
409
400
|
ims[data.channel].is_open = true
|
|
410
401
|
end
|
data/lib/slack/version.rb
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
4
|
+
require_relative 'endpoints/admin_apps'
|
|
5
|
+
require_relative 'endpoints/admin_apps_requests'
|
|
3
6
|
require_relative 'endpoints/admin_users_session'
|
|
4
7
|
require_relative 'endpoints/api'
|
|
5
8
|
require_relative 'endpoints/apps'
|
|
@@ -18,11 +21,13 @@ require_relative 'endpoints/dnd'
|
|
|
18
21
|
require_relative 'endpoints/emoji'
|
|
19
22
|
require_relative 'endpoints/files'
|
|
20
23
|
require_relative 'endpoints/files_comments'
|
|
24
|
+
require_relative 'endpoints/files_remote'
|
|
21
25
|
require_relative 'endpoints/groups'
|
|
22
26
|
require_relative 'endpoints/im'
|
|
23
27
|
require_relative 'endpoints/migration'
|
|
24
28
|
require_relative 'endpoints/mpim'
|
|
25
29
|
require_relative 'endpoints/oauth'
|
|
30
|
+
require_relative 'endpoints/oauth_v2'
|
|
26
31
|
require_relative 'endpoints/pins'
|
|
27
32
|
require_relative 'endpoints/reactions'
|
|
28
33
|
require_relative 'endpoints/reminders'
|
|
@@ -37,6 +42,7 @@ require_relative 'endpoints/users'
|
|
|
37
42
|
require_relative 'endpoints/users_admin'
|
|
38
43
|
require_relative 'endpoints/users_prefs'
|
|
39
44
|
require_relative 'endpoints/users_profile'
|
|
45
|
+
require_relative 'endpoints/views'
|
|
40
46
|
|
|
41
47
|
module Slack
|
|
42
48
|
module Web
|
|
@@ -46,6 +52,8 @@ module Slack
|
|
|
46
52
|
include Slack::Web::Api::Mixins::Users
|
|
47
53
|
include Slack::Web::Api::Mixins::Groups
|
|
48
54
|
|
|
55
|
+
include AdminApps
|
|
56
|
+
include AdminAppsRequests
|
|
49
57
|
include AdminUsersSession
|
|
50
58
|
include Api
|
|
51
59
|
include Apps
|
|
@@ -64,11 +72,13 @@ module Slack
|
|
|
64
72
|
include Emoji
|
|
65
73
|
include Files
|
|
66
74
|
include FilesComments
|
|
75
|
+
include FilesRemote
|
|
67
76
|
include Groups
|
|
68
77
|
include Im
|
|
69
78
|
include Migration
|
|
70
79
|
include Mpim
|
|
71
80
|
include Oauth
|
|
81
|
+
include OauthV2
|
|
72
82
|
include Pins
|
|
73
83
|
include Reactions
|
|
74
84
|
include Reminders
|
|
@@ -83,6 +93,7 @@ module Slack
|
|
|
83
93
|
include UsersAdmin
|
|
84
94
|
include UsersPrefs
|
|
85
95
|
include UsersProfile
|
|
96
|
+
include Views
|
|
86
97
|
end
|
|
87
98
|
end
|
|
88
99
|
end
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
module Slack
|
|
5
|
+
module Web
|
|
6
|
+
module Api
|
|
7
|
+
module Endpoints
|
|
8
|
+
module AdminApps
|
|
9
|
+
#
|
|
10
|
+
# Approve an app for installation on a workspace.
|
|
11
|
+
#
|
|
12
|
+
# @option options [Object] :app_id
|
|
13
|
+
# The id of the app to approve.
|
|
14
|
+
# @option options [Object] :request_id
|
|
15
|
+
# The id of the request to approve.
|
|
16
|
+
# @option options [Object] :team_id
|
|
17
|
+
# .
|
|
18
|
+
# @see https://api.slack.com/methods/admin.apps.approve
|
|
19
|
+
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.apps/admin.apps.approve.json
|
|
20
|
+
def admin_apps_approve(options = {})
|
|
21
|
+
post('admin.apps.approve', options)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
#
|
|
25
|
+
# Restrict an app for installation on a workspace.
|
|
26
|
+
#
|
|
27
|
+
# @option options [Object] :app_id
|
|
28
|
+
# The id of the app to restrict.
|
|
29
|
+
# @option options [Object] :request_id
|
|
30
|
+
# The id of the request to restrict.
|
|
31
|
+
# @option options [Object] :team_id
|
|
32
|
+
# .
|
|
33
|
+
# @see https://api.slack.com/methods/admin.apps.restrict
|
|
34
|
+
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.apps/admin.apps.restrict.json
|
|
35
|
+
def admin_apps_restrict(options = {})
|
|
36
|
+
post('admin.apps.restrict', options)
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
module Slack
|
|
5
|
+
module Web
|
|
6
|
+
module Api
|
|
7
|
+
module Endpoints
|
|
8
|
+
module AdminAppsRequests
|
|
9
|
+
#
|
|
10
|
+
# List app requests for a team/workspace.
|
|
11
|
+
#
|
|
12
|
+
# @option options [Object] :cursor
|
|
13
|
+
# Set cursor to next_cursor returned by the previous call to list items in the next page.
|
|
14
|
+
# @option options [Object] :limit
|
|
15
|
+
# The maximum number of items to return. Must be between 1 - 1000 both inclusive.
|
|
16
|
+
# @option options [Object] :team_id
|
|
17
|
+
# .
|
|
18
|
+
# @see https://api.slack.com/methods/admin.apps.requests.list
|
|
19
|
+
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.apps.requests/admin.apps.requests.list.json
|
|
20
|
+
def admin_apps_requests_list(options = {})
|
|
21
|
+
if block_given?
|
|
22
|
+
Pagination::Cursor.new(self, :admin_apps_requests_list, options).each do |page|
|
|
23
|
+
yield page
|
|
24
|
+
end
|
|
25
|
+
else
|
|
26
|
+
post('admin.apps.requests.list', options)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module AdminUsersSession
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Wipes all valid sessions on all devices for a given user
|
|
10
11
|
#
|
|
11
12
|
# @option options [Object] :user_id
|
|
12
13
|
# The ID of the user to wipe sessions for.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module Api
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Checks API calling code.
|
|
10
11
|
#
|
|
11
12
|
# @option options [Object] :error
|
|
12
13
|
# Error response to return.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module Apps
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Uninstalls your app from a workspace.
|
|
10
11
|
#
|
|
11
12
|
# @option options [Object] :client_id
|
|
12
13
|
# Issued when you created your application.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module AppsPermissions
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Returns list of permissions this app has on a team.
|
|
10
11
|
#
|
|
11
12
|
# @see https://api.slack.com/methods/apps.permissions.info
|
|
12
13
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/apps.permissions/apps.permissions.info.json
|
|
@@ -15,7 +16,7 @@ module Slack
|
|
|
15
16
|
end
|
|
16
17
|
|
|
17
18
|
#
|
|
18
|
-
#
|
|
19
|
+
# Allows an app to request additional scopes
|
|
19
20
|
#
|
|
20
21
|
# @option options [Object] :scopes
|
|
21
22
|
# A comma separated list of scopes to request for.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module AppsPermissionsResources
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Returns list of resource grants this app has on a team.
|
|
10
11
|
#
|
|
11
12
|
# @option options [Object] :cursor
|
|
12
13
|
# Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module AppsPermissionsScopes
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Returns list of scopes this app has on a team.
|
|
10
11
|
#
|
|
11
12
|
# @see https://api.slack.com/methods/apps.permissions.scopes.list
|
|
12
13
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/apps.permissions.scopes/apps.permissions.scopes.list.json
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module AppsPermissionsUsers
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Returns list of user grants and corresponding scopes this app has on a team.
|
|
10
11
|
#
|
|
11
12
|
# @option options [Object] :cursor
|
|
12
13
|
# Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
|
|
@@ -25,7 +26,7 @@ module Slack
|
|
|
25
26
|
end
|
|
26
27
|
|
|
27
28
|
#
|
|
28
|
-
#
|
|
29
|
+
# Enables an app to trigger a permissions modal to grant an app access to a user access scope.
|
|
29
30
|
#
|
|
30
31
|
# @option options [Object] :scopes
|
|
31
32
|
# A comma separated list of user scopes to request for.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module Auth
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Revokes a token.
|
|
10
11
|
#
|
|
11
12
|
# @option options [Object] :test
|
|
12
13
|
# Setting this parameter to 1 triggers a testing mode where the specified token will not actually be revoked.
|
|
@@ -17,7 +18,7 @@ module Slack
|
|
|
17
18
|
end
|
|
18
19
|
|
|
19
20
|
#
|
|
20
|
-
#
|
|
21
|
+
# Checks authentication & identity.
|
|
21
22
|
#
|
|
22
23
|
# @see https://api.slack.com/methods/auth.test
|
|
23
24
|
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/auth/auth.test.json
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module Bots
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Gets information about a bot user.
|
|
10
11
|
#
|
|
11
12
|
# @option options [Object] :bot
|
|
12
13
|
# Bot user to get info on.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
module Slack
|
|
@@ -6,7 +7,7 @@ module Slack
|
|
|
6
7
|
module Endpoints
|
|
7
8
|
module Channels
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Archives a channel.
|
|
10
11
|
#
|
|
11
12
|
# @option options [channel] :channel
|
|
12
13
|
# Channel to archive.
|
|
@@ -19,7 +20,7 @@ module Slack
|
|
|
19
20
|
end
|
|
20
21
|
|
|
21
22
|
#
|
|
22
|
-
#
|
|
23
|
+
# Creates a channel.
|
|
23
24
|
#
|
|
24
25
|
# @option options [Object] :name
|
|
25
26
|
# Name of channel to create.
|
|
@@ -46,7 +47,7 @@ module Slack
|
|
|
46
47
|
end
|
|
47
48
|
|
|
48
49
|
#
|
|
49
|
-
#
|
|
50
|
+
# Fetches history of messages and events from a channel.
|
|
50
51
|
#
|
|
51
52
|
# @option options [channel] :channel
|
|
52
53
|
# Channel to fetch history for.
|
|
@@ -67,7 +68,7 @@ module Slack
|
|
|
67
68
|
end
|
|
68
69
|
|
|
69
70
|
#
|
|
70
|
-
#
|
|
71
|
+
# Gets information about a channel.
|
|
71
72
|
#
|
|
72
73
|
# @option options [channel] :channel
|
|
73
74
|
# Channel to get info on.
|
|
@@ -82,7 +83,7 @@ module Slack
|
|
|
82
83
|
end
|
|
83
84
|
|
|
84
85
|
#
|
|
85
|
-
#
|
|
86
|
+
# Invites a user to a channel.
|
|
86
87
|
#
|
|
87
88
|
# @option options [channel] :channel
|
|
88
89
|
# Channel to invite user to.
|
|
@@ -99,8 +100,7 @@ module Slack
|
|
|
99
100
|
end
|
|
100
101
|
|
|
101
102
|
#
|
|
102
|
-
#
|
|
103
|
-
# created.
|
|
103
|
+
# Joins a channel, creating it if needed.
|
|
104
104
|
#
|
|
105
105
|
# @option options [Object] :name
|
|
106
106
|
# Name of channel to join.
|
|
@@ -114,7 +114,7 @@ module Slack
|
|
|
114
114
|
end
|
|
115
115
|
|
|
116
116
|
#
|
|
117
|
-
#
|
|
117
|
+
# Removes a user from a channel.
|
|
118
118
|
#
|
|
119
119
|
# @option options [channel] :channel
|
|
120
120
|
# Channel to remove user from.
|
|
@@ -131,7 +131,7 @@ module Slack
|
|
|
131
131
|
end
|
|
132
132
|
|
|
133
133
|
#
|
|
134
|
-
#
|
|
134
|
+
# Leaves a channel.
|
|
135
135
|
#
|
|
136
136
|
# @option options [channel] :channel
|
|
137
137
|
# Channel to leave.
|
|
@@ -144,7 +144,7 @@ module Slack
|
|
|
144
144
|
end
|
|
145
145
|
|
|
146
146
|
#
|
|
147
|
-
#
|
|
147
|
+
# Lists all channels in a Slack team.
|
|
148
148
|
#
|
|
149
149
|
# @option options [Object] :cursor
|
|
150
150
|
# Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
|
|
@@ -167,7 +167,7 @@ module Slack
|
|
|
167
167
|
end
|
|
168
168
|
|
|
169
169
|
#
|
|
170
|
-
#
|
|
170
|
+
# Sets the read cursor in a channel.
|
|
171
171
|
#
|
|
172
172
|
# @option options [channel] :channel
|
|
173
173
|
# Channel to set reading cursor in.
|
|
@@ -183,7 +183,7 @@ module Slack
|
|
|
183
183
|
end
|
|
184
184
|
|
|
185
185
|
#
|
|
186
|
-
#
|
|
186
|
+
# Renames a channel.
|
|
187
187
|
#
|
|
188
188
|
# @option options [channel] :channel
|
|
189
189
|
# Channel to rename.
|
|
@@ -201,7 +201,7 @@ module Slack
|
|
|
201
201
|
end
|
|
202
202
|
|
|
203
203
|
#
|
|
204
|
-
#
|
|
204
|
+
# Retrieve a thread of messages posted to a channel
|
|
205
205
|
#
|
|
206
206
|
# @option options [channel] :channel
|
|
207
207
|
# Channel to fetch thread from.
|
|
@@ -217,7 +217,7 @@ module Slack
|
|
|
217
217
|
end
|
|
218
218
|
|
|
219
219
|
#
|
|
220
|
-
#
|
|
220
|
+
# Sets the purpose for a channel.
|
|
221
221
|
#
|
|
222
222
|
# @option options [channel] :channel
|
|
223
223
|
# Channel to set the purpose of.
|
|
@@ -235,7 +235,7 @@ module Slack
|
|
|
235
235
|
end
|
|
236
236
|
|
|
237
237
|
#
|
|
238
|
-
#
|
|
238
|
+
# Sets the topic for a channel.
|
|
239
239
|
#
|
|
240
240
|
# @option options [channel] :channel
|
|
241
241
|
# Channel to set the topic of.
|
|
@@ -251,7 +251,7 @@ module Slack
|
|
|
251
251
|
end
|
|
252
252
|
|
|
253
253
|
#
|
|
254
|
-
#
|
|
254
|
+
# Unarchives a channel.
|
|
255
255
|
#
|
|
256
256
|
# @option options [channel] :channel
|
|
257
257
|
# Channel to unarchive.
|