slack-ruby-client 0.12.0 → 0.14.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (301) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +21 -9
  4. data/.rubocop_todo.yml +64 -56
  5. data/.travis.yml +5 -3
  6. data/CHANGELOG.md +90 -32
  7. data/Dangerfile +2 -0
  8. data/Gemfile +10 -4
  9. data/LICENSE.md +1 -1
  10. data/README.md +176 -32
  11. data/Rakefile +2 -1
  12. data/UPGRADING.md +27 -1
  13. data/bin/commands.rb +21 -0
  14. data/bin/commands/admin_apps.rb +27 -0
  15. data/bin/commands/admin_apps_approved.rb +17 -0
  16. data/bin/commands/admin_apps_requests.rb +16 -0
  17. data/bin/commands/admin_apps_restricted.rb +17 -0
  18. data/bin/commands/admin_conversations.rb +17 -0
  19. data/bin/commands/admin_emoji.rb +54 -0
  20. data/bin/commands/admin_inviteRequests.rb +36 -0
  21. data/bin/commands/admin_inviteRequests_approved.rb +16 -0
  22. data/bin/commands/admin_inviteRequests_denied.rb +16 -0
  23. data/bin/commands/admin_teams.rb +27 -0
  24. data/bin/commands/admin_teams_admins.rb +16 -0
  25. data/bin/commands/admin_teams_owners.rb +16 -0
  26. data/bin/commands/admin_teams_settings.rb +64 -0
  27. data/bin/commands/admin_users.rb +97 -0
  28. data/bin/commands/admin_users_session.rb +16 -0
  29. data/bin/commands/api.rb +1 -0
  30. data/bin/commands/apps.rb +15 -0
  31. data/bin/commands/apps_permissions.rb +1 -0
  32. data/bin/commands/apps_permissions_resources.rb +1 -0
  33. data/bin/commands/apps_permissions_scopes.rb +1 -0
  34. data/bin/commands/apps_permissions_users.rb +1 -0
  35. data/bin/commands/auth.rb +1 -0
  36. data/bin/commands/bots.rb +1 -0
  37. data/bin/commands/channels.rb +3 -1
  38. data/bin/commands/chat.rb +48 -9
  39. data/bin/commands/chat_scheduledMessages.rb +18 -0
  40. data/bin/commands/conversations.rb +4 -2
  41. data/bin/commands/dialog.rb +1 -0
  42. data/bin/commands/dnd.rb +4 -3
  43. data/bin/commands/emoji.rb +1 -0
  44. data/bin/commands/files.rb +4 -14
  45. data/bin/commands/files_comments.rb +1 -21
  46. data/bin/commands/files_remote.rb +78 -0
  47. data/bin/commands/groups.rb +2 -1
  48. data/bin/commands/im.rb +2 -1
  49. data/bin/commands/migration.rb +1 -0
  50. data/bin/commands/mpim.rb +2 -1
  51. data/bin/commands/oauth.rb +2 -1
  52. data/bin/commands/oauth_v2.rb +17 -0
  53. data/bin/commands/pins.rb +1 -2
  54. data/bin/commands/reactions.rb +2 -3
  55. data/bin/commands/reminders.rb +1 -0
  56. data/bin/commands/rtm.rb +1 -0
  57. data/bin/commands/search.rb +2 -1
  58. data/bin/commands/stars.rb +1 -0
  59. data/bin/commands/team.rb +2 -0
  60. data/bin/commands/team_profile.rb +1 -0
  61. data/bin/commands/usergroups.rb +2 -1
  62. data/bin/commands/usergroups_users.rb +1 -0
  63. data/bin/commands/users.rb +2 -2
  64. data/bin/commands/users_admin.rb +1 -0
  65. data/bin/commands/users_prefs.rb +1 -0
  66. data/bin/commands/users_profile.rb +1 -0
  67. data/bin/commands/views.rb +48 -0
  68. data/bin/slack +2 -3
  69. data/examples/hi_real_time/Gemfile +1 -0
  70. data/examples/hi_real_time/hi.rb +7 -3
  71. data/examples/hi_real_time_and_web/Gemfile +1 -0
  72. data/examples/hi_real_time_and_web/hi.rb +7 -3
  73. data/examples/hi_real_time_async_async/Gemfile +7 -0
  74. data/examples/hi_real_time_async_async/Procfile +2 -0
  75. data/examples/hi_real_time_async_async/hi.rb +41 -0
  76. data/examples/hi_real_time_async_celluloid/Gemfile +1 -0
  77. data/examples/hi_real_time_async_celluloid/hi.rb +7 -3
  78. data/examples/hi_real_time_async_eventmachine/Gemfile +1 -0
  79. data/examples/hi_real_time_async_eventmachine/hi.rb +7 -3
  80. data/examples/hi_web/Gemfile +1 -0
  81. data/examples/hi_web/hi.rb +1 -0
  82. data/examples/new_ticket/Gemfile +1 -0
  83. data/examples/new_ticket/new_ticket.rb +1 -0
  84. data/lib/slack-ruby-client.rb +8 -2
  85. data/lib/slack.rb +1 -0
  86. data/lib/slack/config.rb +1 -0
  87. data/lib/slack/events/config.rb +32 -0
  88. data/lib/slack/events/request.rb +66 -0
  89. data/lib/slack/logger.rb +6 -5
  90. data/lib/slack/messages/formatting.rb +1 -0
  91. data/lib/slack/messages/message.rb +1 -0
  92. data/lib/slack/real_time/api/message.rb +3 -1
  93. data/lib/slack/real_time/api/message_id.rb +1 -0
  94. data/lib/slack/real_time/api/ping.rb +5 -2
  95. data/lib/slack/real_time/api/typing.rb +3 -1
  96. data/lib/slack/real_time/client.rb +97 -28
  97. data/lib/slack/real_time/concurrency.rb +2 -0
  98. data/lib/slack/real_time/concurrency/async.rb +142 -0
  99. data/lib/slack/real_time/concurrency/celluloid.rb +33 -9
  100. data/lib/slack/real_time/concurrency/eventmachine.rb +32 -7
  101. data/lib/slack/real_time/config.rb +7 -2
  102. data/lib/slack/real_time/models.rb +1 -0
  103. data/lib/slack/real_time/models/base.rb +1 -0
  104. data/lib/slack/real_time/models/bot.rb +1 -0
  105. data/lib/slack/real_time/models/channel.rb +1 -0
  106. data/lib/slack/real_time/models/group.rb +1 -0
  107. data/lib/slack/real_time/models/im.rb +1 -0
  108. data/lib/slack/real_time/models/team.rb +1 -0
  109. data/lib/slack/real_time/models/user.rb +1 -0
  110. data/lib/slack/real_time/socket.rb +42 -13
  111. data/lib/slack/real_time/stores.rb +1 -0
  112. data/lib/slack/real_time/stores/base.rb +1 -0
  113. data/lib/slack/real_time/stores/starter.rb +11 -0
  114. data/lib/slack/real_time/stores/store.rb +28 -25
  115. data/lib/slack/version.rb +2 -1
  116. data/lib/slack/web/api/endpoints.rb +41 -0
  117. data/lib/slack/web/api/endpoints/admin_apps.rb +42 -0
  118. data/lib/slack/web/api/endpoints/admin_apps_approved.rb +35 -0
  119. data/lib/slack/web/api/endpoints/admin_apps_requests.rb +33 -0
  120. data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +35 -0
  121. data/lib/slack/web/api/endpoints/admin_conversations.rb +30 -0
  122. data/lib/slack/web/api/endpoints/admin_emoji.rb +88 -0
  123. data/lib/slack/web/api/endpoints/admin_inviteRequests.rb +61 -0
  124. data/lib/slack/web/api/endpoints/admin_inviteRequests_approved.rb +33 -0
  125. data/lib/slack/web/api/endpoints/admin_inviteRequests_denied.rb +33 -0
  126. data/lib/slack/web/api/endpoints/admin_teams.rb +50 -0
  127. data/lib/slack/web/api/endpoints/admin_teams_admins.rb +34 -0
  128. data/lib/slack/web/api/endpoints/admin_teams_owners.rb +34 -0
  129. data/lib/slack/web/api/endpoints/admin_teams_settings.rb +99 -0
  130. data/lib/slack/web/api/endpoints/admin_users.rb +163 -0
  131. data/lib/slack/web/api/endpoints/admin_users_session.rb +28 -0
  132. data/lib/slack/web/api/endpoints/api.rb +1 -0
  133. data/lib/slack/web/api/endpoints/apps.rb +27 -0
  134. data/lib/slack/web/api/endpoints/apps_permissions.rb +1 -0
  135. data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +1 -0
  136. data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +1 -0
  137. data/lib/slack/web/api/endpoints/apps_permissions_users.rb +1 -0
  138. data/lib/slack/web/api/endpoints/auth.rb +1 -0
  139. data/lib/slack/web/api/endpoints/bots.rb +1 -0
  140. data/lib/slack/web/api/endpoints/channels.rb +3 -0
  141. data/lib/slack/web/api/endpoints/chat.rb +99 -12
  142. data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +38 -0
  143. data/lib/slack/web/api/endpoints/conversations.rb +4 -1
  144. data/lib/slack/web/api/endpoints/dialog.rb +1 -0
  145. data/lib/slack/web/api/endpoints/dnd.rb +3 -1
  146. data/lib/slack/web/api/endpoints/emoji.rb +1 -0
  147. data/lib/slack/web/api/endpoints/files.rb +4 -13
  148. data/lib/slack/web/api/endpoints/files_comments.rb +1 -33
  149. data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
  150. data/lib/slack/web/api/endpoints/groups.rb +1 -0
  151. data/lib/slack/web/api/endpoints/im.rb +1 -0
  152. data/lib/slack/web/api/endpoints/migration.rb +1 -0
  153. data/lib/slack/web/api/endpoints/mpim.rb +1 -0
  154. data/lib/slack/web/api/endpoints/oauth.rb +2 -1
  155. data/lib/slack/web/api/endpoints/oauth_v2.rb +30 -0
  156. data/lib/slack/web/api/endpoints/pins.rb +2 -4
  157. data/lib/slack/web/api/endpoints/reactions.rb +5 -6
  158. data/lib/slack/web/api/endpoints/reminders.rb +1 -0
  159. data/lib/slack/web/api/endpoints/rtm.rb +1 -0
  160. data/lib/slack/web/api/endpoints/search.rb +1 -0
  161. data/lib/slack/web/api/endpoints/stars.rb +1 -0
  162. data/lib/slack/web/api/endpoints/team.rb +3 -0
  163. data/lib/slack/web/api/endpoints/team_profile.rb +1 -0
  164. data/lib/slack/web/api/endpoints/usergroups.rb +1 -0
  165. data/lib/slack/web/api/endpoints/usergroups_users.rb +1 -0
  166. data/lib/slack/web/api/endpoints/users.rb +1 -2
  167. data/lib/slack/web/api/endpoints/users_admin.rb +1 -0
  168. data/lib/slack/web/api/endpoints/users_prefs.rb +1 -0
  169. data/lib/slack/web/api/endpoints/users_profile.rb +1 -0
  170. data/lib/slack/web/api/endpoints/views.rb +97 -0
  171. data/lib/slack/web/api/error.rb +1 -0
  172. data/lib/slack/web/api/errors.rb +566 -0
  173. data/lib/slack/web/api/errors/slack_error.rb +14 -1
  174. data/lib/slack/web/api/errors/too_many_requests_error.rb +1 -0
  175. data/lib/slack/web/api/mixins.rb +1 -0
  176. data/lib/slack/web/api/mixins/channels.id.rb +1 -0
  177. data/lib/slack/web/api/mixins/groups.id.rb +1 -0
  178. data/lib/slack/web/api/mixins/ids.id.rb +4 -1
  179. data/lib/slack/web/api/mixins/users.id.rb +1 -0
  180. data/lib/slack/web/api/mixins/users.search.rb +1 -0
  181. data/lib/slack/web/api/patches/chat.5.postEphemeral-text-or-attachments.patch +5 -3
  182. data/lib/slack/web/api/patches/chat.6.block-kit-support.patch +69 -0
  183. data/lib/slack/web/api/patches/views.1.view-json.patch +40 -0
  184. data/lib/slack/web/api/patches/views.1.views-published.patch +16 -0
  185. data/lib/slack/web/api/templates/command.erb +1 -0
  186. data/lib/slack/web/api/templates/commands.erb +1 -0
  187. data/lib/slack/web/api/templates/endpoints.erb +1 -0
  188. data/lib/slack/web/api/templates/errors.erb +20 -0
  189. data/lib/slack/web/api/templates/method.erb +1 -0
  190. data/lib/slack/web/api/templates/method_spec.erb +1 -0
  191. data/lib/slack/web/client.rb +2 -1
  192. data/lib/slack/web/config.rb +1 -0
  193. data/lib/slack/web/faraday/connection.rb +1 -0
  194. data/lib/slack/web/faraday/request.rb +1 -0
  195. data/lib/slack/web/faraday/response/raise_error.rb +10 -6
  196. data/lib/slack/web/pagination/cursor.rb +4 -0
  197. data/lib/slack_ruby_client.rb +1 -0
  198. data/lib/tasks/git.rake +1 -0
  199. data/lib/tasks/real_time.rake +15 -5
  200. data/lib/tasks/update.rake +1 -0
  201. data/lib/tasks/web.rake +28 -7
  202. data/screenshots/create-app.png +0 -0
  203. data/slack-ruby-client.gemspec +6 -2
  204. data/spec/fixtures/slack/web/views_open_error.yml +76 -0
  205. data/spec/integration/integration_spec.rb +116 -48
  206. data/spec/slack/config_spec.rb +2 -0
  207. data/spec/slack/events/config_spec.rb +33 -0
  208. data/spec/slack/events/request_spec.rb +179 -0
  209. data/spec/slack/messages/formatting_spec.rb +25 -13
  210. data/spec/slack/real_time/api/message_spec.rb +6 -1
  211. data/spec/slack/real_time/api/ping_spec.rb +2 -0
  212. data/spec/slack/real_time/api/typing_spec.rb +5 -1
  213. data/spec/slack/real_time/client_spec.rb +212 -31
  214. data/spec/slack/real_time/concurrency/celluloid_spec.rb +15 -5
  215. data/spec/slack/real_time/concurrency/eventmachine_spec.rb +11 -1
  216. data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +2 -0
  217. data/spec/slack/real_time/event_handlers/bot_spec.rb +2 -1
  218. data/spec/slack/real_time/event_handlers/channel_spec.rb +9 -6
  219. data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +2 -1
  220. data/spec/slack/real_time/event_handlers/group_spec.rb +5 -4
  221. data/spec/slack/real_time/event_handlers/im_spec.rb +4 -3
  222. data/spec/slack/real_time/event_handlers/team_spec.rb +3 -1
  223. data/spec/slack/real_time/event_handlers/user_spec.rb +1 -0
  224. data/spec/slack/real_time/rtm_connect_spec.rb +1 -0
  225. data/spec/slack/real_time/rtm_start_spec.rb +1 -0
  226. data/spec/slack/real_time/store_spec.rb +2 -1
  227. data/spec/slack/slack_spec.rb +37 -5
  228. data/spec/slack/version_spec.rb +2 -1
  229. data/spec/slack/web/api/endpoints/admin_apps_approved_spec.rb +8 -0
  230. data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +8 -0
  231. data/spec/slack/web/api/endpoints/admin_apps_restricted_spec.rb +8 -0
  232. data/spec/slack/web/api/endpoints/admin_apps_spec.rb +8 -0
  233. data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +13 -0
  234. data/spec/slack/web/api/endpoints/admin_emoji_spec.rb +37 -0
  235. data/spec/slack/web/api/endpoints/admin_inviteRequests_approved_spec.rb +8 -0
  236. data/spec/slack/web/api/endpoints/admin_inviteRequests_denied_spec.rb +8 -0
  237. data/spec/slack/web/api/endpoints/admin_inviteRequests_spec.rb +18 -0
  238. data/spec/slack/web/api/endpoints/admin_teams_admins_spec.rb +13 -0
  239. data/spec/slack/web/api/endpoints/admin_teams_owners_spec.rb +13 -0
  240. data/spec/slack/web/api/endpoints/admin_teams_settings_spec.rb +53 -0
  241. data/spec/slack/web/api/endpoints/admin_teams_spec.rb +16 -0
  242. data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +13 -0
  243. data/spec/slack/web/api/endpoints/admin_users_spec.rb +75 -0
  244. data/spec/slack/web/api/endpoints/api_spec.rb +1 -0
  245. data/spec/slack/web/api/endpoints/apps_permissions_resources_spec.rb +1 -0
  246. data/spec/slack/web/api/endpoints/apps_permissions_scopes_spec.rb +1 -0
  247. data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +3 -2
  248. data/spec/slack/web/api/endpoints/apps_permissions_users_spec.rb +4 -3
  249. data/spec/slack/web/api/endpoints/apps_spec.rb +16 -0
  250. data/spec/slack/web/api/endpoints/bots_spec.rb +1 -0
  251. data/spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb +8 -0
  252. data/spec/slack/web/api/endpoints/conversations_spec.rb +2 -1
  253. data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +5 -1
  254. data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +2 -0
  255. data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +112 -36
  256. data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +12 -4
  257. data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +2 -0
  258. data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +6 -1
  259. data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +95 -0
  260. data/spec/slack/web/api/endpoints/dnd_spec.rb +6 -0
  261. data/spec/slack/web/api/endpoints/emoji_spec.rb +1 -0
  262. data/spec/slack/web/api/endpoints/files_comments_spec.rb +1 -19
  263. data/spec/slack/web/api/endpoints/files_remote_spec.rb +24 -0
  264. data/spec/slack/web/api/endpoints/files_spec.rb +1 -0
  265. data/spec/slack/web/api/endpoints/im_spec.rb +1 -0
  266. data/spec/slack/web/api/endpoints/migration_spec.rb +1 -0
  267. data/spec/slack/web/api/endpoints/mpim_spec.rb +1 -0
  268. data/spec/slack/web/api/endpoints/oauth_spec.rb +1 -0
  269. data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +13 -0
  270. data/spec/slack/web/api/endpoints/pins_spec.rb +5 -1
  271. data/spec/slack/web/api/endpoints/reactions_spec.rb +8 -1
  272. data/spec/slack/web/api/endpoints/reminders_spec.rb +1 -0
  273. data/spec/slack/web/api/endpoints/rtm_spec.rb +1 -0
  274. data/spec/slack/web/api/endpoints/search_spec.rb +1 -0
  275. data/spec/slack/web/api/endpoints/stars_spec.rb +1 -0
  276. data/spec/slack/web/api/endpoints/team_profile_spec.rb +1 -0
  277. data/spec/slack/web/api/endpoints/team_spec.rb +1 -0
  278. data/spec/slack/web/api/endpoints/usergroups_spec.rb +1 -0
  279. data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +1 -0
  280. data/spec/slack/web/api/endpoints/users_admin_spec.rb +1 -0
  281. data/spec/slack/web/api/endpoints/users_prefs_spec.rb +1 -0
  282. data/spec/slack/web/api/endpoints/users_profile_spec.rb +1 -0
  283. data/spec/slack/web/api/endpoints/views_spec.rb +29 -0
  284. data/spec/slack/web/api/error_spec.rb +4 -2
  285. data/spec/slack/web/api/errors/service_unavailable_spec.rb +6 -3
  286. data/spec/slack/web/api/errors/slack_error_spec.rb +26 -2
  287. data/spec/slack/web/api/mixins/channels_spec.rb +17 -7
  288. data/spec/slack/web/api/mixins/groups_spec.rb +17 -7
  289. data/spec/slack/web/api/mixins/users_spec.rb +17 -8
  290. data/spec/slack/web/api/pagination/cursor_spec.rb +40 -10
  291. data/spec/slack/web/client_spec.rb +45 -18
  292. data/spec/slack/web/faraday/response/raise_error_spec.rb +41 -7
  293. data/spec/spec_helper.rb +8 -1
  294. data/spec/support/queue_with_timeout.rb +5 -4
  295. data/spec/support/real_time/concurrency/mock.rb +1 -0
  296. data/spec/support/real_time/connected_client.rb +9 -3
  297. data/spec/support/real_time/event.rb +1 -0
  298. data/spec/support/token.rb +1 -0
  299. data/spec/support/vcr.rb +1 -0
  300. metadata +149 -9
  301. data/screenshots/register-bot.png +0 -0
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+ # This file was auto-generated by lib/tasks/web.rake
3
+
4
+ desc 'AdminUsersSession methods.'
5
+ command 'admin_users_session' do |g|
6
+ g.desc 'Wipes all valid sessions on all devices for a given user'
7
+ g.long_desc %( Wipes all valid sessions on all devices for a given user )
8
+ g.command 'reset' do |c|
9
+ c.flag 'user_id', desc: 'The ID of the user to wipe sessions for.'
10
+ c.flag 'mobile_only', desc: 'Only expire mobile sessions (default: false).'
11
+ c.flag 'web_only', desc: 'Only expire web sessions (default: false).'
12
+ c.action do |_global_options, options, _args|
13
+ puts JSON.dump($client.admin_users_session_reset(options))
14
+ end
15
+ end
16
+ 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
  desc 'Api methods.'
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+ # This file was auto-generated by lib/tasks/web.rake
3
+
4
+ desc 'Apps methods.'
5
+ command 'apps' do |g|
6
+ g.desc 'Uninstalls your app from a workspace.'
7
+ g.long_desc %( Uninstalls your app from a workspace. )
8
+ g.command 'uninstall' do |c|
9
+ c.flag 'client_id', desc: 'Issued when you created your application.'
10
+ c.flag 'client_secret', desc: 'Issued when you created your application.'
11
+ c.action do |_global_options, options, _args|
12
+ puts JSON.dump($client.apps_uninstall(options))
13
+ end
14
+ end
15
+ 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
  desc 'AppsPermissions methods.'
@@ -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
  desc 'AppsPermissionsResources methods.'
@@ -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
  desc 'AppsPermissionsScopes methods.'
@@ -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
  desc 'AppsPermissionsUsers methods.'
@@ -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
  desc 'Auth methods.'
@@ -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
  desc 'Bots methods.'
@@ -1,6 +1,7 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
- desc "Get info on your team's Slack channels, create or archive channels, invite users, set the topic and purpose, and mark a channel as read."
4
+ desc 'Channels methods.'
4
5
  command 'channels' do |g|
5
6
  g.desc 'Archives a channel.'
6
7
  g.long_desc %( Archives a channel. )
@@ -149,6 +150,7 @@ command 'channels' do |g|
149
150
  g.command 'setPurpose' do |c|
150
151
  c.flag 'channel', desc: 'Channel to set the purpose of.'
151
152
  c.flag 'purpose', desc: 'The new purpose.'
153
+ c.flag 'name_tagging', desc: 'if it is true, treat this like a message and not an unescaped thing.'
152
154
  c.action do |_global_options, options, _args|
153
155
  puts JSON.dump($client.channels_setPurpose(options))
154
156
  end
@@ -1,6 +1,7 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
- desc 'Post chat messages to Slack.'
4
+ desc 'Chat methods.'
4
5
  command 'chat' do |g|
5
6
  g.desc 'Execute a slash command in a public channel (undocumented)'
6
7
  g.long_desc %( Execute a slash command in a public channel )
@@ -24,6 +25,17 @@ command 'chat' do |g|
24
25
  end
25
26
  end
26
27
 
28
+ g.desc 'Deletes a pending scheduled message from the queue.'
29
+ g.long_desc %( Deletes a pending scheduled message from the queue. )
30
+ g.command 'deleteScheduledMessage' do |c|
31
+ c.flag 'channel', desc: 'The channel the scheduled_message is posting to.'
32
+ c.flag 'scheduled_message_id', desc: 'scheduled_message_id returned from call to chat.scheduleMessage.'
33
+ c.flag 'as_user', desc: 'Pass true to delete the message as the authed user with chat:write:user scope. Bot users in this context are considered authed users. If unused or false, the message will be deleted with chat:write:bot scope.'
34
+ c.action do |_global_options, options, _args|
35
+ puts JSON.dump($client.chat_deleteScheduledMessage(options))
36
+ end
37
+ end
38
+
27
39
  g.desc 'Retrieve a permalink URL for a specific extant message'
28
40
  g.long_desc %( Retrieve a permalink URL for a specific extant message )
29
41
  g.command 'getPermalink' do |c|
@@ -47,13 +59,18 @@ command 'chat' do |g|
47
59
  g.desc 'Sends an ephemeral message to a user in a channel.'
48
60
  g.long_desc %( Sends an ephemeral message to a user in a channel. )
49
61
  g.command 'postEphemeral' do |c|
62
+ c.flag 'attachments', desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string.'
50
63
  c.flag 'channel', desc: 'Channel, private group, or IM channel to send message to. Can be an encoded ID, or a name.'
51
- c.flag 'text', desc: "Text of the message to send. See below for an explanation of formatting. This field is usually required, unless you're providing only attachments instead."
64
+ c.flag 'text', desc: 'How this field works and whether it is required depends on other fields you use in your API call. See below for more detail.'
52
65
  c.flag 'user', desc: 'id of the user who will receive the ephemeral message. The user should be in the channel specified by the channel argument.'
53
- c.flag 'as_user', desc: 'Pass true to post the message as the authed bot. Defaults to false.'
54
- c.flag 'attachments', desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string.'
66
+ c.flag 'as_user', desc: 'Pass true to post the message as the authed user. Defaults to true if the chat:write:bot scope is not included. Otherwise, defaults to false.'
67
+ c.flag 'blocks', desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
68
+ c.flag 'icon_emoji', desc: 'Emoji to use as the icon for this message. Overrides icon_url. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below.'
69
+ c.flag 'icon_url', desc: 'URL to an image to use as the icon for this message. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below.'
55
70
  c.flag 'link_names', desc: 'Find and link channel names and usernames.'
56
71
  c.flag 'parse', desc: 'Change how messages are treated. Defaults to none. See below.'
72
+ c.flag 'thread_ts', desc: "Provide another message's ts value to post this message in a thread. Avoid using a reply's ts value; use its parent's value instead. Ephemeral messages in threads are only shown if there is already an active thread."
73
+ c.flag 'username', desc: "Set your bot's user name. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below."
57
74
  c.action do |_global_options, options, _args|
58
75
  puts JSON.dump($client.chat_postEphemeral(options))
59
76
  end
@@ -63,11 +80,12 @@ command 'chat' do |g|
63
80
  g.long_desc %( Sends a message to a channel. )
64
81
  g.command 'postMessage' do |c|
65
82
  c.flag 'channel', desc: 'Channel, private group, or IM channel to send message to. Can be an encoded ID, or a name. See below for more details.'
66
- c.flag 'text', desc: "Text of the message to send. See below for an explanation of formatting. This field is usually required, unless you're providing only attachments instead. Provide no more than 40,000 characters or risk truncation."
67
- c.flag 'as_user', desc: 'Pass true to post the message as the authed user, instead of as a bot. Defaults to false. See authorship below.'
83
+ c.flag 'text', desc: 'How this field works and whether it is required depends on other fields you use in your API call. See below for more detail.'
84
+ c.flag 'as_user', desc: 'Pass true to post the message as the authed user, instead of as a bot. Defaults to false. See authorship below. This argument may not be used with newer bot tokens.'
68
85
  c.flag 'attachments', desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string.'
69
- c.flag 'icon_emoji', desc: 'Emoji to use as the icon for this message. Overrides icon_url. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below.'
70
- c.flag 'icon_url', desc: 'URL to an image to use as the icon for this message. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below.'
86
+ c.flag 'blocks', desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
87
+ c.flag 'icon_emoji', desc: 'Emoji to use as the icon for this message. Overrides icon_url. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below. This argument may not be used with newer bot tokens.'
88
+ c.flag 'icon_url', desc: 'URL to an image to use as the icon for this message. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below. This argument may not be used with newer bot tokens.'
71
89
  c.flag 'link_names', desc: 'Find and link channel names and usernames.'
72
90
  c.flag 'mrkdwn', desc: 'Disable Slack markup parsing by setting to false. Enabled by default.'
73
91
  c.flag 'parse', desc: 'Change how messages are treated. Defaults to none. See below.'
@@ -81,12 +99,32 @@ command 'chat' do |g|
81
99
  end
82
100
  end
83
101
 
102
+ g.desc 'Schedules a message to be sent to a channel.'
103
+ g.long_desc %( Schedules a message to be sent to a channel. )
104
+ g.command 'scheduleMessage' do |c|
105
+ c.flag 'channel', desc: 'Channel, private group, or DM channel to send message to. Can be an encoded ID, or a name. See below for more details.'
106
+ c.flag 'post_at', desc: 'Unix EPOCH timestamp of time in future to send the message.'
107
+ c.flag 'text', desc: 'How this field works and whether it is required depends on other fields you use in your API call. See below for more detail.'
108
+ c.flag 'as_user', desc: 'Pass true to post the message as the authed user, instead of as a bot. Defaults to false. See chat.postMessage.'
109
+ c.flag 'attachments', desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string.'
110
+ c.flag 'blocks', desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
111
+ c.flag 'link_names', desc: 'Find and link channel names and usernames.'
112
+ c.flag 'parse', desc: 'Change how messages are treated. Defaults to none. See chat.postMessage.'
113
+ c.flag 'reply_broadcast', desc: 'Used in conjunction with thread_ts and indicates whether reply should be made visible to everyone in the channel or conversation. Defaults to false.'
114
+ c.flag 'thread_ts', desc: "Provide another message's ts value to make this message a reply. Avoid using a reply's ts value; use its parent instead."
115
+ c.flag 'unfurl_links', desc: 'Pass true to enable unfurling of primarily text-based content.'
116
+ c.flag 'unfurl_media', desc: 'Pass false to disable unfurling of media content.'
117
+ c.action do |_global_options, options, _args|
118
+ puts JSON.dump($client.chat_scheduleMessage(options))
119
+ end
120
+ end
121
+
84
122
  g.desc 'Provide custom unfurl behavior for user-posted URLs'
85
123
  g.long_desc %( Provide custom unfurl behavior for user-posted URLs )
86
124
  g.command 'unfurl' do |c|
87
125
  c.flag 'channel', desc: 'Channel ID of the message.'
88
126
  c.flag 'ts', desc: 'Timestamp of the message to add unfurl behavior to.'
89
- c.flag 'unfurls', desc: 'URL-encoded JSON map with keys set to URLs featured in the the message, pointing to their unfurl message attachments.'
127
+ c.flag 'unfurls', desc: 'URL-encoded JSON map with keys set to URLs featured in the the message, pointing to their unfurl blocks or message attachments.'
90
128
  c.flag 'user_auth_message', desc: 'Provide a simply-formatted string to send as an ephemeral message to the user as invitation to authenticate further and enable full unfurling behavior.'
91
129
  c.flag 'user_auth_required', desc: 'Set to true or 1 to indicate the user must install your Slack app to trigger unfurls for this domain.'
92
130
  c.flag 'user_auth_url', desc: 'Send users to this custom URL where they will complete authentication in your app to fully trigger unfurling. Value should be properly URL-encoded.'
@@ -103,6 +141,7 @@ command 'chat' do |g|
103
141
  c.flag 'ts', desc: 'Timestamp of the message to be updated.'
104
142
  c.flag 'as_user', desc: 'Pass true to update the message as the authed user. Bot users in this context are considered authed users.'
105
143
  c.flag 'attachments', desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string. This field is required when not presenting text.'
144
+ c.flag 'blocks', desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
106
145
  c.flag 'link_names', desc: 'Find and link channel names and usernames. Defaults to none. See below.'
107
146
  c.flag 'parse', desc: 'Change how messages are treated. Defaults to client, unlike chat.postMessage. See below.'
108
147
  c.action do |_global_options, options, _args|
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+ # This file was auto-generated by lib/tasks/web.rake
3
+
4
+ desc 'ChatScheduledmessages methods.'
5
+ command 'chat_scheduledMessages' do |g|
6
+ g.desc 'Returns a list of scheduled messages.'
7
+ g.long_desc %( Returns a list of scheduled messages. )
8
+ g.command 'list' do |c|
9
+ c.flag 'channel', desc: 'The channel of the scheduled messages.'
10
+ c.flag 'cursor', desc: 'For pagination purposes, this is the cursor value returned from a previous call to chat.scheduledmessages.list indicating where you want to start this call from.'
11
+ c.flag 'latest', desc: 'A UNIX timestamp of the latest value in the time range.'
12
+ c.flag 'limit', desc: 'Maximum number of original entries to return.'
13
+ c.flag 'oldest', desc: 'A UNIX timestamp of the oldest value in the time range.'
14
+ c.action do |_global_options, options, _args|
15
+ puts JSON.dump($client.chat_scheduledMessages_list(options))
16
+ end
17
+ end
18
+ end
@@ -1,6 +1,7 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
- desc "Interface with all kinds of conversations the same way, whether they're public or private channels, direct messages, or otherwise."
4
+ desc 'Conversations methods.'
4
5
  command 'conversations' do |g|
5
6
  g.desc 'Archives a conversation.'
6
7
  g.long_desc %( Archives a conversation. )
@@ -50,6 +51,7 @@ command 'conversations' do |g|
50
51
  g.command 'info' do |c|
51
52
  c.flag 'channel', desc: 'Conversation ID to learn more about.'
52
53
  c.flag 'include_locale', desc: 'Set this to true to receive the locale for this conversation. Defaults to false.'
54
+ c.flag 'include_num_members', desc: 'Set to true to include the member count for the specified conversation. Defaults to false.'
53
55
  c.action do |_global_options, options, _args|
54
56
  puts JSON.dump($client.conversations_info(options))
55
57
  end
@@ -59,7 +61,7 @@ command 'conversations' do |g|
59
61
  g.long_desc %( Invites users to a channel. )
60
62
  g.command 'invite' do |c|
61
63
  c.flag 'channel', desc: 'The ID of the public or private channel to invite user(s) to.'
62
- c.flag 'users', desc: 'A comma separated list of user IDs. Up to 30 users may be listed.'
64
+ c.flag 'users', desc: 'A comma separated list of user IDs. Up to 1000 users may be listed.'
63
65
  c.action do |_global_options, options, _args|
64
66
  puts JSON.dump($client.conversations_invite(options))
65
67
  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
  desc 'Dialog methods.'
@@ -1,6 +1,7 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
- desc 'Adjust and view Do Not Disturb settings for team members.'
4
+ desc 'Dnd methods.'
4
5
  command 'dnd' do |g|
5
6
  g.desc "Ends the current user's Do Not Disturb session immediately."
6
7
  g.long_desc %( Ends the current user's Do Not Disturb session immediately. )
@@ -36,8 +37,8 @@ command 'dnd' do |g|
36
37
  end
37
38
  end
38
39
 
39
- g.desc 'Retrieves the Do Not Disturb status for users on a team.'
40
- g.long_desc %( Retrieves the Do Not Disturb status for users on a team. )
40
+ g.desc 'Retrieves the Do Not Disturb status for up to 50 users on a team.'
41
+ g.long_desc %( Retrieves the Do Not Disturb status for up to 50 users on a team. )
41
42
  g.command 'teamInfo' do |c|
42
43
  c.flag 'users', desc: 'Comma-separated list of users to fetch Do Not Disturb status for.'
43
44
  c.action do |_global_options, options, _args|
@@ -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
  desc 'Emoji methods.'
@@ -1,6 +1,7 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
- desc 'Get info on files uploaded to Slack, upload new files to Slack.'
4
+ desc 'Files methods.'
4
5
  command 'files' do |g|
5
6
  g.desc 'Deletes a file.'
6
7
  g.long_desc %( Deletes a file. )
@@ -37,21 +38,10 @@ command 'files' do |g|
37
38
  g.long_desc %( Lists & filters team files. )
38
39
  g.command 'list' do |c|
39
40
  c.flag 'channel', desc: 'Filter files appearing in a specific channel, indicated by its ID.'
41
+ c.flag 'show_files_hidden_by_limit', desc: 'Show truncated file info for files hidden due to being too old, and the team who owns the file being over the file limit.'
40
42
  c.flag 'ts_from', desc: 'Filter files created after this timestamp (inclusive).'
41
43
  c.flag 'ts_to', desc: 'Filter files created before this timestamp (inclusive).'
42
- c.flag 'types', desc: 'Filter files by type:
43
-
44
- all - All files
45
- spaces - Posts
46
- snippets - Snippets
47
- images - Image files
48
- gdocs - Google docs
49
- zips - Zip files
50
- pdfs - PDF files
51
-
52
-
53
- You can pass multiple values in the types argument, like types=spaces,snippets.The default value is all, which does not filter the list.
54
- .'
44
+ c.flag 'types', desc: 'Filter files by type (see below). You can pass multiple values in the types argument, like types=spaces,snippets.The default value is all, which does not filter the list.'
55
45
  c.flag 'user', desc: 'Filter files created by a single user.'
56
46
  c.action do |_global_options, options, _args|
57
47
  puts JSON.dump($client.files_list(options))
@@ -1,17 +1,8 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
4
  desc 'FilesComments methods.'
4
5
  command 'files_comments' do |g|
5
- g.desc 'Add a comment to an existing file.'
6
- g.long_desc %( Add a comment to an existing file. )
7
- g.command 'add' do |c|
8
- c.flag 'comment', desc: 'Text of the comment to add.'
9
- c.flag 'file', desc: 'File to add a comment to.'
10
- c.action do |_global_options, options, _args|
11
- puts JSON.dump($client.files_comments_add(options))
12
- end
13
- end
14
-
15
6
  g.desc 'Deletes an existing comment on a file.'
16
7
  g.long_desc %( Deletes an existing comment on a file. )
17
8
  g.command 'delete' do |c|
@@ -21,15 +12,4 @@ command 'files_comments' do |g|
21
12
  puts JSON.dump($client.files_comments_delete(options))
22
13
  end
23
14
  end
24
-
25
- g.desc 'Edit an existing file comment.'
26
- g.long_desc %( Edit an existing file comment. )
27
- g.command 'edit' do |c|
28
- c.flag 'comment', desc: 'Text of the comment to edit.'
29
- c.flag 'file', desc: 'File containing the comment to edit.'
30
- c.flag 'id', desc: 'The comment to edit.'
31
- c.action do |_global_options, options, _args|
32
- puts JSON.dump($client.files_comments_edit(options))
33
- end
34
- end
35
15
  end
@@ -0,0 +1,78 @@
1
+ # frozen_string_literal: true
2
+ # This file was auto-generated by lib/tasks/web.rake
3
+
4
+ desc 'FilesRemote methods.'
5
+ command 'files_remote' do |g|
6
+ g.desc 'Adds a file from a remote service'
7
+ g.long_desc %( Adds a file from a remote service )
8
+ g.command 'add' do |c|
9
+ c.flag 'external_id', desc: 'Creator defined GUID for the file.'
10
+ c.flag 'external_url', desc: 'URL of the remote file.'
11
+ c.flag 'title', desc: 'Title of the file being shared.'
12
+ c.flag 'filetype', desc: 'type of file.'
13
+ c.flag 'indexable_file_contents', desc: 'A text file (txt, pdf, doc, etc.) containing textual search terms that are used to improve discovery of the remote file.'
14
+ c.flag 'preview_image', desc: 'Preview of the document via multipart/form-data.'
15
+ c.action do |_global_options, options, _args|
16
+ puts JSON.dump($client.files_remote_add(options))
17
+ end
18
+ end
19
+
20
+ g.desc 'Retrieve information about a remote file added to Slack'
21
+ g.long_desc %( Retrieve information about a remote file added to Slack )
22
+ g.command 'info' do |c|
23
+ c.flag 'external_id', desc: 'Creator defined GUID for the file.'
24
+ c.flag 'file', desc: 'Specify a file by providing its ID.'
25
+ c.action do |_global_options, options, _args|
26
+ puts JSON.dump($client.files_remote_info(options))
27
+ end
28
+ end
29
+
30
+ g.desc 'Retrieve information about a remote file added to Slack'
31
+ g.long_desc %( Retrieve information about a remote file added to Slack )
32
+ g.command 'list' do |c|
33
+ c.flag 'channel', desc: 'Filter files appearing in a specific channel, indicated by its ID.'
34
+ c.flag 'cursor', desc: "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."
35
+ c.flag 'limit', desc: 'The maximum number of items to return.'
36
+ c.flag 'ts_from', desc: 'Filter files created after this timestamp (inclusive).'
37
+ c.flag 'ts_to', desc: 'Filter files created before this timestamp (inclusive).'
38
+ c.action do |_global_options, options, _args|
39
+ puts JSON.dump($client.files_remote_list(options))
40
+ end
41
+ end
42
+
43
+ g.desc 'Remove a remote file.'
44
+ g.long_desc %( Remove a remote file. )
45
+ g.command 'remove' do |c|
46
+ c.flag 'external_id', desc: 'Creator defined GUID for the file.'
47
+ c.flag 'file', desc: 'Specify a file by providing its ID.'
48
+ c.action do |_global_options, options, _args|
49
+ puts JSON.dump($client.files_remote_remove(options))
50
+ end
51
+ end
52
+
53
+ g.desc 'Share a remote file into a channel.'
54
+ g.long_desc %( Share a remote file into a channel. )
55
+ g.command 'share' do |c|
56
+ c.flag 'channels', desc: 'Comma-separated list of channel IDs where the file will be shared.'
57
+ c.flag 'external_id', desc: 'Creator defined GUID for the file.'
58
+ c.flag 'file', desc: 'Specify a file by providing its ID.'
59
+ c.action do |_global_options, options, _args|
60
+ puts JSON.dump($client.files_remote_share(options))
61
+ end
62
+ end
63
+
64
+ g.desc 'Updates an existing remote file.'
65
+ g.long_desc %( Updates an existing remote file. )
66
+ g.command 'update' do |c|
67
+ c.flag 'external_id', desc: 'Creator defined GUID for the file.'
68
+ c.flag 'external_url', desc: 'URL of the remote file.'
69
+ c.flag 'file', desc: 'Specify a file by providing its ID.'
70
+ c.flag 'filetype', desc: 'type of file.'
71
+ c.flag 'indexable_file_contents', desc: 'File containing contents that can be used to improve searchability for the remote file.'
72
+ c.flag 'preview_image', desc: 'Preview of the document via multipart/form-data.'
73
+ c.flag 'title', desc: 'Title of the file being shared.'
74
+ c.action do |_global_options, options, _args|
75
+ puts JSON.dump($client.files_remote_update(options))
76
+ end
77
+ end
78
+ end
@@ -1,6 +1,7 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
- desc "Get info on your team's private channels."
4
+ desc 'Groups methods.'
4
5
  command 'groups' do |g|
5
6
  g.desc 'Archives a private channel.'
6
7
  g.long_desc %( Archives a private channel. )
@@ -1,6 +1,7 @@
1
+ # frozen_string_literal: true
1
2
  # This file was auto-generated by lib/tasks/web.rake
2
3
 
3
- desc 'Get info on your direct messages.'
4
+ desc 'Im methods.'
4
5
  command 'im' do |g|
5
6
  g.desc 'Close a direct message channel.'
6
7
  g.long_desc %( Close a direct message channel. )
@@ -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
  desc 'Migration methods.'