Class: Dropbox::Client
- Inherits:
-
Object
- Object
- Dropbox::Client
- Defined in:
- lib/dropbox/client.rb
Overview
Client contains all the methods that map to the Dropbox API endpoints.
Instance Method Summary collapse
-
#append_upload_session(cursor, body, close = false) ⇒ Dropbox::UploadSessionCursor
Append more data to an upload session.
-
#check_save_url_job_status(async_job_id) ⇒ nil, ...
Check the status of a save_url job.
-
#continue_list_folder(cursor) ⇒ Array<Dropbox::Metadata>
Get the contents of a folder that are after a cursor.
-
#copy(from_path, to_path) ⇒ Dropbox::Metadata
Copy a file or folder to a different location in the user’s Dropbox.
-
#create_folder(path) ⇒ Dropbox::FolderMetadata
Create a folder at a given path.
-
#delete(path) ⇒ Dropbox::Metadata
Delete the file or folder at a given path.
-
#download(path) ⇒ Dropbox::FileMetadata, HTTP::Response::Body
Download a file from a user’s Dropbox.
-
#finish_upload_session(cursor, path, body, options = {}) ⇒ Dropbox::FileMetadata
Finish an upload session and save the uploaded data to the given file path.
-
#get_account(account_id) ⇒ Dropbox::BasicAccount
Get information about a user’s account.
-
#get_account_batch(account_ids) ⇒ Array<Dropbox::BasicAccount>
Get information about multiple user accounts.
-
#get_copy_reference(path) ⇒ Dropbox::Metadata, String
Get a copy reference to a file or folder.
-
#get_current_account ⇒ Dropbox::FullAccount
Get information about the current user’s account.
-
#get_latest_list_folder_cursor(path) ⇒ String
Get a cursor for a folder’s current state.
-
#get_metadata(path) ⇒ Dropbox::Metadata
Get the metadata for a file or folder.
-
#get_preview(path) ⇒ Dropbox::FileMetadata, HTTP::Response::Body
Get a preview for a file.
-
#get_space_usage ⇒ Dropbox::SpaceUsage
Get the space usage information for the current user’s account.
-
#get_temporary_link(path) ⇒ Dropbox::FileMetadata, String
Get a temporary link to stream content of a file.
-
#get_thumbnail(path, format = 'jpeg', size = 'w64h64') ⇒ Dropbox::FileMetadata, HTTP::Response::Body
Get a thumbnail for an image.
-
#initialize(access_token) ⇒ Client
constructor
A new instance of Client.
-
#list_folder(path) ⇒ Array<Dropbox::Metadata>
Get the contents of a folder.
-
#list_revisions(path) ⇒ Array<Dropbox::FileMetadata>, Boolean
Get the revisions of a file.
-
#move(from_path, to_path) ⇒ Dropbox::Metadata
Move a file or folder to a different location in the user’s Dropbox.
-
#permanently_delete(path) ⇒ void
Permanently delete the file or folder at a given path.
-
#restore(path, rev) ⇒ Dropbox::FileMetadata
Restore a file to a specific revision.
-
#revoke_token ⇒ void
Disable the access token used to authenticate the call.
-
#save_copy_reference(copy_reference, path) ⇒ Dropbox::Metadata
Save a copy reference to the user’s Dropbox.
-
#save_url(path, url) ⇒ String, Dropbox::FileMetadata
Save a specified URL into a file in user’s Dropbox.
-
#search(path, query, start = 0, max_results = 100, mode = 'filename') ⇒ Array<Dropbox::Metadata>
Search for files and folders.
-
#start_upload_session(body, close = false) ⇒ Dropbox::UploadSessionCursor
Start an upload session to upload a file using multiple requests.
-
#upload(path, body, options = {}) ⇒ Dropbox::FileMetadata
Create a new file.
Constructor Details
#initialize(access_token) ⇒ Client
Returns a new instance of Client.
9 10 11 12 13 14 15 |
# File 'lib/dropbox/client.rb', line 9 def initialize(access_token) unless access_token =~ /^[a-z0-9_-]{64}$/i raise ClientError.invalid_access_token end @access_token = access_token end |
Instance Method Details
#append_upload_session(cursor, body, close = false) ⇒ Dropbox::UploadSessionCursor
Append more data to an upload session.
260 261 262 263 264 265 |
# File 'lib/dropbox/client.rb', line 260 def append_upload_session(cursor, body, close=false) args = {cursor: cursor.to_h, close: close} resp = upload_request('/files/upload_session/append_v2', body, args) cursor.offset += body.length cursor end |
#check_save_url_job_status(async_job_id) ⇒ nil, ...
Check the status of a save_url job.
209 210 211 212 |
# File 'lib/dropbox/client.rb', line 209 def check_save_url_job_status(async_job_id) resp = request('/files/save_url/check_job_status', async_job_id: async_job_id) parse_tagged_response(resp) end |
#continue_list_folder(cursor) ⇒ Array<Dropbox::Metadata>
Get the contents of a folder that are after a cursor.
138 139 140 141 |
# File 'lib/dropbox/client.rb', line 138 def continue_list_folder(cursor) resp = request('/files/list_folder/continue', cursor: cursor) resp['entries'].map { |e| parse_tagged_response(e) } end |
#copy(from_path, to_path) ⇒ Dropbox::Metadata
Copy a file or folder to a different location in the user’s Dropbox.
30 31 32 33 |
# File 'lib/dropbox/client.rb', line 30 def copy(from_path, to_path) resp = request('/files/copy', from_path: from_path, to_path: to_path) parse_tagged_response(resp) end |
#create_folder(path) ⇒ Dropbox::FolderMetadata
Create a folder at a given path.
60 61 62 63 |
# File 'lib/dropbox/client.rb', line 60 def create_folder(path) resp = request('/files/create_folder', path: path) FolderMetadata.new(resp) end |
#delete(path) ⇒ Dropbox::Metadata
Delete the file or folder at a given path.
69 70 71 72 |
# File 'lib/dropbox/client.rb', line 69 def delete(path) resp = request('/files/delete', path: path) parse_tagged_response(resp) end |
#download(path) ⇒ Dropbox::FileMetadata, HTTP::Response::Body
Download a file from a user’s Dropbox.
79 80 81 82 |
# File 'lib/dropbox/client.rb', line 79 def download(path) resp, body = content_request('/files/download', path: path) return FileMetadata.new(resp), body end |
#finish_upload_session(cursor, path, body, options = {}) ⇒ Dropbox::FileMetadata
Finish an upload session and save the uploaded data to the given file path.
275 276 277 278 279 280 281 |
# File 'lib/dropbox/client.rb', line 275 def finish_upload_session(cursor, path, body, ={}) [:client_modified] = Time.now.utc.iso8601 [:path] = path args = {cursor: cursor.to_h, commit: } resp = upload_request('/files/upload_session/finish', body, args) FileMetadata.new(resp) end |
#get_account(account_id) ⇒ Dropbox::BasicAccount
Get information about a user’s account.
287 288 289 290 |
# File 'lib/dropbox/client.rb', line 287 def get_account(account_id) resp = request('/users/get_account', account_id: account_id) BasicAccount.new(resp) end |
#get_account_batch(account_ids) ⇒ Array<Dropbox::BasicAccount>
Get information about multiple user accounts.
296 297 298 299 |
# File 'lib/dropbox/client.rb', line 296 def get_account_batch(account_ids) resp = request('/users/get_account_batch', account_ids: account_ids) resp.map { |a| BasicAccount.new(a) } end |
#get_copy_reference(path) ⇒ Dropbox::Metadata, String
Get a copy reference to a file or folder.
40 41 42 43 44 |
# File 'lib/dropbox/client.rb', line 40 def get_copy_reference(path) resp = request('/files/copy_reference/get', path: path) = parse_tagged_response(resp['metadata']) return , resp['copy_reference'] end |
#get_current_account ⇒ Dropbox::FullAccount
Get information about the current user’s account.
304 305 306 307 |
# File 'lib/dropbox/client.rb', line 304 def get_current_account resp = request('/users/get_current_account') FullAccount.new(resp) end |
#get_latest_list_folder_cursor(path) ⇒ String
Get a cursor for a folder’s current state.
147 148 149 150 |
# File 'lib/dropbox/client.rb', line 147 def get_latest_list_folder_cursor(path) resp = request('/files/list_folder/get_latest_cursor', path: path) resp['cursor'] end |
#get_metadata(path) ⇒ Dropbox::Metadata
Get the metadata for a file or folder.
88 89 90 91 |
# File 'lib/dropbox/client.rb', line 88 def (path) resp = request('/files/get_metadata', path: path) parse_tagged_response(resp) end |
#get_preview(path) ⇒ Dropbox::FileMetadata, HTTP::Response::Body
Get a preview for a file.
98 99 100 101 |
# File 'lib/dropbox/client.rb', line 98 def get_preview(path) resp, body = content_request('/files/get_preview', path: path) return FileMetadata.new(resp), body end |
#get_space_usage ⇒ Dropbox::SpaceUsage
Get the space usage information for the current user’s account.
312 313 314 315 |
# File 'lib/dropbox/client.rb', line 312 def get_space_usage resp = request('/users/get_space_usage') SpaceUsage.new(resp) end |
#get_temporary_link(path) ⇒ Dropbox::FileMetadata, String
Get a temporary link to stream content of a file.
108 109 110 111 |
# File 'lib/dropbox/client.rb', line 108 def get_temporary_link(path) resp = request('/files/get_temporary_link', path: path) return FileMetadata.new(resp['metadata']), resp['link'] end |
#get_thumbnail(path, format = 'jpeg', size = 'w64h64') ⇒ Dropbox::FileMetadata, HTTP::Response::Body
Get a thumbnail for an image.
120 121 122 123 |
# File 'lib/dropbox/client.rb', line 120 def get_thumbnail(path, format='jpeg', size='w64h64') resp, body = content_request('/files/get_thumbnail', path: path, format: format, size: size) return FileMetadata.new(resp), body end |
#list_folder(path) ⇒ Array<Dropbox::Metadata>
Get the contents of a folder.
129 130 131 132 |
# File 'lib/dropbox/client.rb', line 129 def list_folder(path) resp = request('/files/list_folder', path: path) resp['entries'].map { |e| parse_tagged_response(e) } end |
#list_revisions(path) ⇒ Array<Dropbox::FileMetadata>, Boolean
Get the revisions of a file.
157 158 159 160 161 |
# File 'lib/dropbox/client.rb', line 157 def list_revisions(path) resp = request('/files/list_revisions', path: path) entries = resp['entries'].map { |e| FileMetadata.new(e) } return entries, resp['is_deleted'] end |
#move(from_path, to_path) ⇒ Dropbox::Metadata
Move a file or folder to a different location in the user’s Dropbox.
168 169 170 171 |
# File 'lib/dropbox/client.rb', line 168 def move(from_path, to_path) resp = request('/files/move', from_path: from_path, to_path: to_path) parse_tagged_response(resp) end |
#permanently_delete(path) ⇒ void
This method returns an undefined value.
Permanently delete the file or folder at a given path.
177 178 179 180 |
# File 'lib/dropbox/client.rb', line 177 def permanently_delete(path) request('/files/permanently_delete', path: path) nil end |
#restore(path, rev) ⇒ Dropbox::FileMetadata
Restore a file to a specific revision.
187 188 189 190 |
# File 'lib/dropbox/client.rb', line 187 def restore(path, rev) resp = request('/files/restore', path: path, rev: rev) FileMetadata.new(resp) end |
#revoke_token ⇒ void
This method returns an undefined value.
Disable the access token used to authenticate the call.
20 21 22 23 |
# File 'lib/dropbox/client.rb', line 20 def revoke_token r = HTTP.auth('Bearer ' + @access_token).post(API + '/auth/token/revoke') raise ApiError.new(r) if r.code != 200 end |
#save_copy_reference(copy_reference, path) ⇒ Dropbox::Metadata
Save a copy reference to the user’s Dropbox.
51 52 53 54 |
# File 'lib/dropbox/client.rb', line 51 def save_copy_reference(copy_reference, path) resp = request('/files/copy_reference/save', copy_reference: copy_reference, path: path) parse_tagged_response(resp['metadata']) end |
#save_url(path, url) ⇒ String, Dropbox::FileMetadata
Save a specified URL into a file in user’s Dropbox.
198 199 200 201 |
# File 'lib/dropbox/client.rb', line 198 def save_url(path, url) resp = request('/files/save_url', path: path, url: url) parse_tagged_response(resp) end |
#search(path, query, start = 0, max_results = 100, mode = 'filename') ⇒ Array<Dropbox::Metadata>
Search for files and folders.
222 223 224 225 226 227 |
# File 'lib/dropbox/client.rb', line 222 def search(path, query, start=0, max_results=100, mode='filename') resp = request('/files/search', path: path, query: query, start: start, max_results: max_results, mode: mode) matches = resp['matches'].map { |m| parse_tagged_response(m['metadata']) } return matches end |
#start_upload_session(body, close = false) ⇒ Dropbox::UploadSessionCursor
Start an upload session to upload a file using multiple requests.
249 250 251 252 |
# File 'lib/dropbox/client.rb', line 249 def start_upload_session(body, close=false) resp = upload_request('/files/upload_session/start', body, close: close) UploadSessionCursor.new(resp['session_id'], body.length) end |
#upload(path, body, options = {}) ⇒ Dropbox::FileMetadata
Create a new file.
237 238 239 240 241 242 |
# File 'lib/dropbox/client.rb', line 237 def upload(path, body, ={}) [:client_modified] = Time.now.utc.iso8601 [:path] = path resp = upload_request('/files/upload', body, .merge(path: path)) FileMetadata.new(resp) end |