Module: Slack::Web::Api::Endpoints::Files
- Included in:
- Slack::Web::Api::Endpoints
- Defined in:
- lib/slack/web/api/endpoints/files.rb
Instance Method Summary collapse
-
#files_delete(options = {}) ⇒ Object
Deletes a file.
-
#files_edit(options = {}) ⇒ Object
Change the properties of a file (undocumented).
-
#files_info(options = {}) ⇒ Object
Gets information about a file.
-
#files_list(options = {}) ⇒ Object
List for a team, in a channel, or from a user with applied filters.
-
#files_revokePublicURL(options = {}) ⇒ Object
Revokes public/external sharing access for a file.
-
#files_share(options = {}) ⇒ Object
Share an existing file in a channel (undocumented).
-
#files_sharedPublicURL(options = {}) ⇒ Object
Enables a file for public/external sharing.
-
#files_upload(options = {}) ⇒ Object
Uploads or creates a file.
Instance Method Details
#files_delete(options = {}) ⇒ Object
Deletes a file.
16 17 18 19 |
# File 'lib/slack/web/api/endpoints/files.rb', line 16 def files_delete( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? post('files.delete', ) end |
#files_edit(options = {}) ⇒ Object
Change the properties of a file (undocumented)
31 32 33 34 35 36 |
# File 'lib/slack/web/api/endpoints/files.rb', line 31 def files_edit( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? throw ArgumentError.new('Required arguments :title missing') if [:title].nil? logger.warn('The files.edit method is undocumented.') post('files.edit', ) end |
#files_info(options = {}) ⇒ Object
Gets information about a file.
49 50 51 52 53 54 55 56 57 58 |
# File 'lib/slack/web/api/endpoints/files.rb', line 49 def files_info( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? if block_given? Pagination::Cursor.new(self, :files_info, ).each do |page| yield page end else post('files.info', ) end end |
#files_list(options = {}) ⇒ Object
List for a team, in a channel, or from a user with applied filters.
79 80 81 82 83 |
# File 'lib/slack/web/api/endpoints/files.rb', line 79 def files_list( = {}) = .merge(channel: conversations_id()['channel']['id']) if [:channel] = .merge(user: users_id()['user']['id']) if [:user] post('files.list', ) end |
#files_revokePublicURL(options = {}) ⇒ Object
Revokes public/external sharing access for a file
92 93 94 95 |
# File 'lib/slack/web/api/endpoints/files.rb', line 92 def files_revokePublicURL( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? post('files.revokePublicURL', ) end |
#files_share(options = {}) ⇒ Object
Share an existing file in a channel (undocumented)
105 106 107 108 109 110 111 |
# File 'lib/slack/web/api/endpoints/files.rb', line 105 def files_share( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? = .merge(channel: conversations_id()['channel']['id']) if [:channel] logger.warn('The files.share method is undocumented.') post('files.share', ) end |
#files_sharedPublicURL(options = {}) ⇒ Object
Enables a file for public/external sharing.
120 121 122 123 |
# File 'lib/slack/web/api/endpoints/files.rb', line 120 def files_sharedPublicURL( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? post('files.sharedPublicURL', ) end |
#files_upload(options = {}) ⇒ Object
Uploads or creates a file.
146 147 148 |
# File 'lib/slack/web/api/endpoints/files.rb', line 146 def files_upload( = {}) post('files.upload', ) end |