Class: Files::Project
- Inherits:
-
Object
- Object
- Files::Project
- Defined in:
- lib/files.com/models/project.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
- .all(params = {}, options = {}) ⇒ Object
-
.create(params = {}, options = {}) ⇒ Object
Parameters: global_access (required) - string - Global permissions.
- .delete(id, params = {}, options = {}) ⇒ Object
- .destroy(id, params = {}, options = {}) ⇒ Object
-
.find(id, params = {}, options = {}) ⇒ Object
Parameters: id (required) - int64 - Project ID.
- .get(id, params = {}, options = {}) ⇒ Object
-
.list(params = {}, options = {}) ⇒ Object
Parameters: page - int64 - Current page number.
-
.update(id, params = {}, options = {}) ⇒ Object
Parameters: global_access (required) - string - Global permissions.
Instance Method Summary collapse
- #delete(params = {}) ⇒ Object
- #destroy(params = {}) ⇒ Object
-
#global_access ⇒ Object
string - Global access settings.
- #global_access=(value) ⇒ Object
-
#id ⇒ Object
int64 - Project ID.
- #id=(value) ⇒ Object
-
#initialize(attributes = {}, options = {}) ⇒ Project
constructor
A new instance of Project.
- #save ⇒ Object
-
#update(params = {}) ⇒ Object
Parameters: global_access (required) - string - Global permissions.
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 = {}, = {}) @attributes = attributes || {} @options = || {} end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
5 6 7 |
# File 'lib/files.com/models/project.rb', line 5 def attributes @attributes end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/files.com/models/project.rb', line 5 def @options end |
Class Method Details
.all(params = {}, options = {}) ⇒ Object
83 84 85 |
# File 'lib/files.com/models/project.rb', line 83 def self.all(params = {}, = {}) list(params, ) end |
.create(params = {}, options = {}) ⇒ Object
Parameters:
global_access (required) - string - Global permissions. Can be: `none`, `anyone_with_read`, `anyone_with_full`.
105 106 107 108 109 110 111 |
# File 'lib/files.com/models/project.rb', line 105 def self.create(params = {}, = {}) raise InvalidParameterError.new("Bad parameter: global_access must be an String") if params.dig(:global_access) and !params.dig(:global_access).is_a?(String) raise MissingParameterError.new("Parameter missing: global_access") unless params.dig(:global_access) response, = Api.send_request("/projects", :post, params, ) Project.new(response.data, ) end |
.delete(id, params = {}, options = {}) ⇒ Object
127 128 129 130 131 132 133 134 135 |
# File 'lib/files.com/models/project.rb', line 127 def self.delete(id, params = {}, = {}) params ||= {} params[:id] = id raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params.dig(:id) and !params.dig(:id).is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) response, = Api.send_request("/projects/#{params[:id]}", :delete, params, ) response.data end |
.destroy(id, params = {}, options = {}) ⇒ Object
137 138 139 |
# File 'lib/files.com/models/project.rb', line 137 def self.destroy(id, params = {}, = {}) delete(id, params, ) end |
.find(id, params = {}, options = {}) ⇒ Object
Parameters:
id (required) - int64 - Project ID.
89 90 91 92 93 94 95 96 97 |
# File 'lib/files.com/models/project.rb', line 89 def self.find(id, params = {}, = {}) params ||= {} params[:id] = id raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params.dig(:id) and !params.dig(:id).is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) response, = Api.send_request("/projects/#{params[:id]}", :get, params, ) Project.new(response.data, ) end |
.get(id, params = {}, options = {}) ⇒ Object
99 100 101 |
# File 'lib/files.com/models/project.rb', line 99 def self.get(id, params = {}, = {}) find(id, params, ) end |
.list(params = {}, options = {}) ⇒ Object
Parameters:
page - int64 - Current page number.
per_page - int64 - 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.
cursor - string - Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
72 73 74 75 76 77 78 79 80 81 |
# File 'lib/files.com/models/project.rb', line 72 def self.list(params = {}, = {}) 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: cursor must be an String") if params.dig(:cursor) and !params.dig(:cursor).is_a?(String) List.new(Project, params) do Api.send_request("/projects", :get, params, ) end end |
.update(id, params = {}, options = {}) ⇒ Object
Parameters:
global_access (required) - string - Global permissions. Can be: `none`, `anyone_with_read`, `anyone_with_full`.
115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/files.com/models/project.rb', line 115 def self.update(id, params = {}, = {}) params ||= {} params[:id] = id raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params.dig(:id) and !params.dig(:id).is_a?(Integer) raise InvalidParameterError.new("Bad parameter: global_access must be an String") if params.dig(:global_access) and !params.dig(:global_access).is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) raise MissingParameterError.new("Parameter missing: global_access") unless params.dig(:global_access) response, = Api.send_request("/projects/#{params[:id]}", :patch, params, ) Project.new(response.data, ) 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.dig(:id) and !params.dig(:id).is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params.dig(: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_access ⇒ Object
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 |
#id ⇒ Object
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 |
#save ⇒ Object
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.dig(:id) and !params.dig(:id).is_a?(Integer) raise InvalidParameterError.new("Bad parameter: global_access must be an String") if params.dig(:global_access) and !params.dig(:global_access).is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) raise MissingParameterError.new("Parameter missing: global_access") unless params.dig(:global_access) Api.send_request("/projects/#{@attributes[:id]}", :patch, params, @options) end |