Class: Files::Lock

Inherits:
Object
  • Object
show all
Defined in:
lib/files.com/models/lock.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}, options = {}) ⇒ Lock

Returns a new instance of Lock.



7
8
9
10
# File 'lib/files.com/models/lock.rb', line 7

def initialize(attributes = {}, options = {})
  @attributes = attributes || {}
  @options = options || {}
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



5
6
7
# File 'lib/files.com/models/lock.rb', line 5

def attributes
  @attributes
end

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/files.com/models/lock.rb', line 5

def options
  @options
end

Class Method Details

.create(path, params = {}, options = {}) ⇒ Object

Create Lock

Parameters:

timeout - integer - Lock timeout length


158
159
160
161
162
163
164
165
166
167
# File 'lib/files.com/models/lock.rb', line 158

def self.create(path, params = {}, options = {})
  params ||= {}
  params[:path] = path
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: timeout must be an Integer") if params.dig(:timeout) and !params.dig(:timeout).is_a?(Integer)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  response, options = Api.send_request("/locks/#{URI.encode_www_form_component(params[:path])}", :post, params, options)
  Lock.new(response.data, options)
end

.delete(path, params = {}, options = {}) ⇒ Object

Parameters:

token (required) - string - Lock token


171
172
173
174
175
176
177
178
179
180
181
# File 'lib/files.com/models/lock.rb', line 171

def self.delete(path, params = {}, options = {})
  params ||= {}
  params[:path] = path
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: token must be an String") if params.dig(:token) and !params.dig(:token).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)
  raise MissingParameterError.new("Parameter missing: token") unless params.dig(:token)

  response, _options = Api.send_request("/locks/#{URI.encode_www_form_component(params[:path])}", :delete, params, options)
  response.data
end

.destroy(path, params = {}, options = {}) ⇒ Object



183
184
185
# File 'lib/files.com/models/lock.rb', line 183

def self.destroy(path, params = {}, options = {})
  delete(path, params, options)
end

.list_for(path, params = {}, options = {}) ⇒ Object

Parameters:

page - integer - Current page number.
per_page - integer - Number of records to show per page.  (Max: 10,000, 1,000 or less is recommended).
action - string - Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
path (required) - string - Path to operate on.
include_children - boolean - Include locks from children objects?


141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/files.com/models/lock.rb', line 141

def self.list_for(path, params = {}, options = {})
  params ||= {}
  params[:path] = path
  raise InvalidParameterError.new("Bad parameter: page must be an Integer") if params.dig(:page) and !params.dig(:page).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: action must be an String") if params.dig(:action) and !params.dig(:action).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  response, options = Api.send_request("/locks/#{URI.encode_www_form_component(params[:path])}", :get, params, options)
  response.data.map { |object| Lock.new(object, options) }
end

Instance Method Details

#create(params = {}) ⇒ Object

Create Lock

Parameters:

timeout - integer - Lock timeout length


97
98
99
100
101
102
103
104
105
106
# File 'lib/files.com/models/lock.rb', line 97

def create(params = {})
  params ||= {}
  params[:path] = @attributes[:path]
  raise MissingParameterError.new("Current object doesn't have a path") unless @attributes[:path]
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: timeout must be an Integer") if params.dig(:timeout) and !params.dig(:timeout).is_a?(Integer)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  Api.send_request("/locks/#{URI.encode_www_form_component(@attributes[:path])}", :post, params, @options)
end

#delete(params = {}) ⇒ Object

Parameters:

token (required) - string - Lock token


110
111
112
113
114
115
116
117
118
119
120
# File 'lib/files.com/models/lock.rb', line 110

def delete(params = {})
  params ||= {}
  params[:path] = @attributes[:path]
  raise MissingParameterError.new("Current object doesn't have a path") unless @attributes[:path]
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: token must be an String") if params.dig(:token) and !params.dig(:token).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)
  raise MissingParameterError.new("Parameter missing: token") unless params.dig(:token)

  Api.send_request("/locks/#{URI.encode_www_form_component(@attributes[:path])}", :delete, params, @options)
end

#depthObject

string - Lock depth (0 or infinity)



22
23
24
# File 'lib/files.com/models/lock.rb', line 22

def depth
  @attributes[:depth]
end

#depth=(value) ⇒ Object



26
27
28
# File 'lib/files.com/models/lock.rb', line 26

def depth=(value)
  @attributes[:depth] = value
end

#destroy(params = {}) ⇒ Object



122
123
124
# File 'lib/files.com/models/lock.rb', line 122

def destroy(params = {})
  delete(params)
end

#ownerObject

string - Owner of lock. This can be any arbitrary string.



31
32
33
# File 'lib/files.com/models/lock.rb', line 31

def owner
  @attributes[:owner]
end

#owner=(value) ⇒ Object



35
36
37
# File 'lib/files.com/models/lock.rb', line 35

def owner=(value)
  @attributes[:owner] = value
end

#pathObject

string - Path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.



40
41
42
# File 'lib/files.com/models/lock.rb', line 40

def path
  @attributes[:path]
end

#path=(value) ⇒ Object



44
45
46
# File 'lib/files.com/models/lock.rb', line 44

def path=(value)
  @attributes[:path] = value
end

#saveObject



126
127
128
129
130
131
132
133
# File 'lib/files.com/models/lock.rb', line 126

def save
  if @attributes[:path]
    raise NotImplementedError.new("The Lock object doesn't support updates.")
  else
    new_obj = Lock.create(@attributes, @options)
    @attributes = new_obj.attributes
  end
end

#scopeObject

string - Lock scope(shared or exclusive)



49
50
51
# File 'lib/files.com/models/lock.rb', line 49

def scope
  @attributes[:scope]
end

#scope=(value) ⇒ Object



53
54
55
# File 'lib/files.com/models/lock.rb', line 53

def scope=(value)
  @attributes[:scope] = value
end

#timeoutObject

int64 - Lock timeout



13
14
15
# File 'lib/files.com/models/lock.rb', line 13

def timeout
  @attributes[:timeout]
end

#timeout=(value) ⇒ Object



17
18
19
# File 'lib/files.com/models/lock.rb', line 17

def timeout=(value)
  @attributes[:timeout] = value
end

#tokenObject

string - Lock token. Use to release lock.



58
59
60
# File 'lib/files.com/models/lock.rb', line 58

def token
  @attributes[:token]
end

#token=(value) ⇒ Object



62
63
64
# File 'lib/files.com/models/lock.rb', line 62

def token=(value)
  @attributes[:token] = value
end

#typeObject

string - Lock type



67
68
69
# File 'lib/files.com/models/lock.rb', line 67

def type
  @attributes[:type]
end

#type=(value) ⇒ Object



71
72
73
# File 'lib/files.com/models/lock.rb', line 71

def type=(value)
  @attributes[:type] = value
end

#user_idObject

int64 - Lock creator user ID



76
77
78
# File 'lib/files.com/models/lock.rb', line 76

def user_id
  @attributes[:user_id]
end

#user_id=(value) ⇒ Object



80
81
82
# File 'lib/files.com/models/lock.rb', line 80

def user_id=(value)
  @attributes[:user_id] = value
end

#usernameObject

string - Lock creator username



85
86
87
# File 'lib/files.com/models/lock.rb', line 85

def username
  @attributes[:username]
end

#username=(value) ⇒ Object



89
90
91
# File 'lib/files.com/models/lock.rb', line 89

def username=(value)
  @attributes[:username] = value
end