Class: Dropbox::API::Client
- Inherits:
-
Object
- Object
- Dropbox::API::Client
- Includes:
- Files
- Defined in:
- lib/dropbox-api/client.rb,
lib/dropbox-api/client/files.rb
Defined Under Namespace
Modules: Files
Instance Attribute Summary collapse
-
#connection ⇒ Object
Returns the value of attribute connection.
-
#raw ⇒ Object
Returns the value of attribute raw.
Instance Method Summary collapse
- #account ⇒ Object
- #delta(cursor = nil) ⇒ Object
- #find(filename) ⇒ Object
- #folder_changed?(path = '', hash = '') ⇒ Boolean
-
#initialize(options = {}) ⇒ Client
constructor
A new instance of Client.
- #ls(path = '') ⇒ Object
- #mkdir(path) ⇒ Object
- #search(term, options = {}) ⇒ Object
Methods included from Files
#copy_from_copy_ref, #download, #upload
Constructor Details
#initialize(options = {}) ⇒ Client
Returns a new instance of Client.
11 12 13 14 15 16 |
# File 'lib/dropbox-api/client.rb', line 11 def initialize( = {}) @connection = Dropbox::API::Connection.new(:token => .delete(:token), :secret => .delete(:secret)) @raw = Dropbox::API::Raw.new :connection => @connection @options = end |
Instance Attribute Details
#connection ⇒ Object
Returns the value of attribute connection.
9 10 11 |
# File 'lib/dropbox-api/client.rb', line 9 def connection @connection end |
#raw ⇒ Object
Returns the value of attribute raw.
9 10 11 |
# File 'lib/dropbox-api/client.rb', line 9 def raw @raw end |
Instance Method Details
#account ⇒ Object
35 36 37 |
# File 'lib/dropbox-api/client.rb', line 35 def account Dropbox::API::Object.init(self.raw.account, self) end |
#delta(cursor = nil) ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/dropbox-api/client.rb', line 52 def delta(cursor=nil) entries = [] has_more = true params = cursor ? {:cursor => cursor} : {} while has_more response = raw.delta(params) params[:cursor] = response['cursor'] has_more = response['has_more'] entries.push *response['entries'] end files = entries.map do |entry| entry.last || {:is_deleted => true, :path => entry.first} end Delta.new(params[:cursor], Dropbox::API::Object.convert(files, self)) end |
#find(filename) ⇒ Object
20 21 22 23 24 |
# File 'lib/dropbox-api/client.rb', line 20 def find(filename) data = self.raw.(:path => filename) data.delete('contents') Dropbox::API::Object.convert(data, self) end |
#folder_changed?(path = '', hash = '') ⇒ Boolean
30 31 32 33 |
# File 'lib/dropbox-api/client.rb', line 30 def folder_changed?(path = '', hash = '') = Dropbox::API::Dir.init({'path' => path}, self).(path,hash) return (.kind_of? Dropbox::API::Response::NotModified) ? false : end |
#ls(path = '') ⇒ Object
26 27 28 |
# File 'lib/dropbox-api/client.rb', line 26 def ls(path = '') Dropbox::API::Dir.init({'path' => path}, self).ls end |