Class: Files::Project

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of Project.



7
8
9
10
# File 'lib/files.com/models/project.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/project.rb', line 5

def attributes
  @attributes
end

#optionsObject (readonly)

Returns the value of attribute options.



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

def options
  @options
end

Class Method Details

.all(params = {}, options = {}) ⇒ Object



79
80
81
# File 'lib/files.com/models/project.rb', line 79

def self.all(params = {}, options = {})
  list(params, options)
end

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

Parameters:

global_access (required) - string - Global permissions.  Can be: `none`, `anyone_with_read`, `anyone_with_full`.


101
102
103
104
105
106
107
# File 'lib/files.com/models/project.rb', line 101

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

  response, options = Api.send_request("/projects", :post, params, options)
  Project.new(response.data, options)
end

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



123
124
125
126
127
128
129
130
131
# File 'lib/files.com/models/project.rb', line 123

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

  response, _options = Api.send_request("/projects/#{params[:id]}", :delete, params, options)
  response.data
end

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



133
134
135
# File 'lib/files.com/models/project.rb', line 133

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

.find(id, params = {}, options = {}) ⇒ Object

Parameters:

id (required) - int64 - Project ID.


85
86
87
88
89
90
91
92
93
# File 'lib/files.com/models/project.rb', line 85

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

  response, options = Api.send_request("/projects/#{params[:id]}", :get, params, options)
  Project.new(response.data, options)
end

.get(id, params = {}, options = {}) ⇒ Object



95
96
97
# File 'lib/files.com/models/project.rb', line 95

def self.get(id, params = {}, options = {})
  find(id, params, options)
end

.list(params = {}, options = {}) ⇒ Object

Parameters:

cursor - string - Used for pagination.  When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`.  Send one of those cursor value here to resume an existing list from the next available record.  Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
per_page - int64 - Number of records to show per page.  (Max: 10,000, 1,000 or less is recommended).


70
71
72
73
74
75
76
77
# File 'lib/files.com/models/project.rb', line 70

def self.list(params = {}, options = {})
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String)
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params[:per_page] and !params[:per_page].is_a?(Integer)

  List.new(Project, params) do
    Api.send_request("/projects", :get, params, options)
  end
end

.update(id, params = {}, options = {}) ⇒ Object

Parameters:

global_access (required) - string - Global permissions.  Can be: `none`, `anyone_with_read`, `anyone_with_full`.


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

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

  response, options = Api.send_request("/projects/#{params[:id]}", :patch, params, options)
  Project.new(response.data, options)
end

Instance Method Details

#delete(params = {}) ⇒ Object



44
45
46
47
48
49
50
51
52
# File 'lib/files.com/models/project.rb', line 44

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

  Api.send_request("/projects/#{@attributes[:id]}", :delete, params, @options)
end

#destroy(params = {}) ⇒ Object



54
55
56
# File 'lib/files.com/models/project.rb', line 54

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

#global_accessObject

string - Global access settings



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

def global_access
  @attributes[:global_access]
end

#global_access=(value) ⇒ Object



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

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

#idObject

int64 - Project ID



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

def id
  @attributes[:id]
end

#id=(value) ⇒ Object



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

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

#saveObject



58
59
60
61
62
63
64
65
# File 'lib/files.com/models/project.rb', line 58

def save
  if @attributes[:id]
    update(@attributes)
  else
    new_obj = Project.create(@attributes, @options)
    @attributes = new_obj.attributes
  end
end

#update(params = {}) ⇒ Object

Parameters:

global_access (required) - string - Global permissions.  Can be: `none`, `anyone_with_read`, `anyone_with_full`.


32
33
34
35
36
37
38
39
40
41
42
# File 'lib/files.com/models/project.rb', line 32

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

  Api.send_request("/projects/#{@attributes[:id]}", :patch, params, @options)
end