Class: Cloudpt::API::Client
- Inherits:
-
Object
- Object
- Cloudpt::API::Client
- Includes:
- Files
- Defined in:
- lib/cloudpt-api/client.rb,
lib/cloudpt-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
-
#initialize(options = {}) ⇒ Client
constructor
A new instance of Client.
- #list(path = '') ⇒ Object
- #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/cloudpt-api/client.rb', line 11 def initialize( = {}) @connection = Cloudpt::API::Connection.new(:token => .delete(:token), :secret => .delete(:secret)) @raw = Cloudpt::API::Raw.new :connection => @connection @options = end |
Instance Attribute Details
#connection ⇒ Object
Returns the value of attribute connection.
9 10 11 |
# File 'lib/cloudpt-api/client.rb', line 9 def connection @connection end |
#raw ⇒ Object
Returns the value of attribute raw.
9 10 11 |
# File 'lib/cloudpt-api/client.rb', line 9 def raw @raw end |
Instance Method Details
#account ⇒ Object
34 35 36 |
# File 'lib/cloudpt-api/client.rb', line 34 def account Cloudpt::API::Object.init(self.raw.account, self) end |
#delta(cursor = nil) ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/cloudpt-api/client.rb', line 51 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], Cloudpt::API::Object.convert(files, self)) end |
#find(filename) ⇒ Object
20 21 22 23 24 |
# File 'lib/cloudpt-api/client.rb', line 20 def find(filename) data = self.raw.(:path => filename) data.delete('contents') Cloudpt::API::Object.convert(data, self) end |
#list(path = '') ⇒ Object
26 27 28 |
# File 'lib/cloudpt-api/client.rb', line 26 def list(path = '') response = raw.list :path => path end |
#ls(path = '') ⇒ Object
30 31 32 |
# File 'lib/cloudpt-api/client.rb', line 30 def ls(path = '') Cloudpt::API::Dir.init({'path' => path}, self).ls end |