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_completeUploadExternal(options = {}) ⇒ Object
Finishes an upload started with files.getUploadURLExternal.
-
#files_delete(options = {}) ⇒ Object
Deletes a file.
-
#files_edit(options = {}) ⇒ Object
Change the properties of a file (undocumented).
-
#files_getUploadURLExternal(options = {}) ⇒ Object
Gets a URL for an edge external file upload.
-
#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_completeUploadExternal(options = {}) ⇒ Object
Finishes an upload started with files.getUploadURLExternal
22 23 24 25 |
# File 'lib/slack/web/api/endpoints/files.rb', line 22 def files_completeUploadExternal( = {}) raise ArgumentError, 'Required arguments :files missing' if [:files].nil? post('files.completeUploadExternal', ) end |
#files_delete(options = {}) ⇒ Object
Deletes a file.
34 35 36 37 |
# File 'lib/slack/web/api/endpoints/files.rb', line 34 def files_delete( = {}) raise ArgumentError, 'Required arguments :file missing' if [:file].nil? post('files.delete', ) end |
#files_edit(options = {}) ⇒ Object
Change the properties of a file (undocumented)
49 50 51 52 53 54 |
# File 'lib/slack/web/api/endpoints/files.rb', line 49 def files_edit( = {}) raise ArgumentError, 'Required arguments :file missing' if [:file].nil? raise ArgumentError, 'Required arguments :title missing' if [:title].nil? logger.warn('The files.edit method is undocumented.') post('files.edit', ) end |
#files_getUploadURLExternal(options = {}) ⇒ Object
Gets a URL for an edge external file upload
69 70 71 72 73 |
# File 'lib/slack/web/api/endpoints/files.rb', line 69 def files_getUploadURLExternal( = {}) raise ArgumentError, 'Required arguments :filename missing' if [:filename].nil? raise ArgumentError, 'Required arguments :length missing' if [:length].nil? post('files.getUploadURLExternal', ) end |
#files_info(options = {}) ⇒ Object
Gets information about a file.
86 87 88 89 90 91 92 93 94 95 |
# File 'lib/slack/web/api/endpoints/files.rb', line 86 def files_info( = {}) raise ArgumentError, '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.
116 117 118 119 120 |
# File 'lib/slack/web/api/endpoints/files.rb', line 116 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
129 130 131 132 |
# File 'lib/slack/web/api/endpoints/files.rb', line 129 def files_revokePublicURL( = {}) raise ArgumentError, 'Required arguments :file missing' if [:file].nil? post('files.revokePublicURL', ) end |
#files_share(options = {}) ⇒ Object
Share an existing file in a channel (undocumented)
142 143 144 145 146 147 148 |
# File 'lib/slack/web/api/endpoints/files.rb', line 142 def files_share( = {}) raise ArgumentError, 'Required arguments :file missing' if [:file].nil? raise ArgumentError, '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.
157 158 159 160 |
# File 'lib/slack/web/api/endpoints/files.rb', line 157 def files_sharedPublicURL( = {}) raise ArgumentError, 'Required arguments :file missing' if [:file].nil? post('files.sharedPublicURL', ) end |
#files_upload(options = {}) ⇒ Object
Uploads or creates a file.
183 184 185 |
# File 'lib/slack/web/api/endpoints/files.rb', line 183 def files_upload( = {}) post('files.upload', ) end |