Class: Files::Group
- Inherits:
-
Object
- Object
- Files::Group
- Defined in:
- lib/files.com/models/group.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: name - string - Group name.
- .delete(id, params = {}, options = {}) ⇒ Object
- .destroy(id, params = {}, options = {}) ⇒ Object
-
.find(id, params = {}, options = {}) ⇒ Object
Parameters: id (required) - int64 - Group ID.
- .get(id, params = {}, options = {}) ⇒ Object
-
.list(params = {}, options = {}) ⇒ Object
Parameters: cursor - string - Used for pagination.
-
.update(id, params = {}, options = {}) ⇒ Object
Parameters: name - string - Group name.
Instance Method Summary collapse
-
#admin_ids ⇒ Object
string - Comma-delimited list of user IDs who are group administrators (separated by commas).
- #admin_ids=(value) ⇒ Object
- #delete(params = {}) ⇒ Object
- #destroy(params = {}) ⇒ Object
-
#id ⇒ Object
int64 - Group ID.
- #id=(value) ⇒ Object
-
#initialize(attributes = {}, options = {}) ⇒ Group
constructor
A new instance of Group.
-
#name ⇒ Object
string - Group name.
- #name=(value) ⇒ Object
-
#notes ⇒ Object
string - Notes about this group.
- #notes=(value) ⇒ Object
- #save ⇒ Object
-
#update(params = {}) ⇒ Object
Parameters: name - string - Group name.
-
#user_ids ⇒ Object
string - Comma-delimited list of user IDs who belong to this group (separated by commas).
- #user_ids=(value) ⇒ Object
-
#usernames ⇒ Object
string - Comma-delimited list of usernames who belong to this group (separated by commas).
- #usernames=(value) ⇒ Object
Constructor Details
#initialize(attributes = {}, options = {}) ⇒ Group
Returns a new instance of Group.
7 8 9 10 |
# File 'lib/files.com/models/group.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/group.rb', line 5 def attributes @attributes end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/files.com/models/group.rb', line 5 def @options end |
Class Method Details
.all(params = {}, options = {}) ⇒ Object
136 137 138 |
# File 'lib/files.com/models/group.rb', line 136 def self.all(params = {}, = {}) list(params, ) end |
.create(params = {}, options = {}) ⇒ Object
Parameters:
name - string - Group name.
notes - string - Group notes.
user_ids - string - A list of user ids. If sent as a string, should be comma-delimited.
admin_ids - string - A list of group admin user ids. If sent as a string, should be comma-delimited.
161 162 163 164 165 166 167 168 169 |
# File 'lib/files.com/models/group.rb', line 161 def self.create(params = {}, = {}) raise InvalidParameterError.new("Bad parameter: name must be an String") if params[:name] and !params[:name].is_a?(String) raise InvalidParameterError.new("Bad parameter: notes must be an String") if params[:notes] and !params[:notes].is_a?(String) raise InvalidParameterError.new("Bad parameter: user_ids must be an String") if params[:user_ids] and !params[:user_ids].is_a?(String) raise InvalidParameterError.new("Bad parameter: admin_ids must be an String") if params[:admin_ids] and !params[:admin_ids].is_a?(String) response, = Api.send_request("/groups", :post, params, ) Group.new(response.data, ) end |
.delete(id, params = {}, options = {}) ⇒ Object
190 191 192 193 194 195 196 197 198 |
# File 'lib/files.com/models/group.rb', line 190 def self.delete(id, params = {}, = {}) 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, = Api.send_request("/groups/#{params[:id]}", :delete, params, ) response.data end |
.destroy(id, params = {}, options = {}) ⇒ Object
200 201 202 |
# File 'lib/files.com/models/group.rb', line 200 def self.destroy(id, params = {}, = {}) delete(id, params, ) end |
.find(id, params = {}, options = {}) ⇒ Object
Parameters:
id (required) - int64 - Group ID.
142 143 144 145 146 147 148 149 150 |
# File 'lib/files.com/models/group.rb', line 142 def self.find(id, params = {}, = {}) 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, = Api.send_request("/groups/#{params[:id]}", :get, params, ) Group.new(response.data, ) end |
.get(id, params = {}, options = {}) ⇒ Object
152 153 154 |
# File 'lib/files.com/models/group.rb', line 152 def self.get(id, params = {}, = {}) find(id, params, ) 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).
sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[name]=desc`). Valid fields are `name`.
filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `name`.
filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `name`.
filter_gteq - object - If set, return records where the specified field is greater than or equal to the supplied value. Valid fields are `name`.
filter_like - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `name`.
filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `name`.
filter_lteq - object - If set, return records where the specified field is less than or equal to the supplied value. Valid fields are `name`.
ids - string - Comma-separated list of group ids to include in results.
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/files.com/models/group.rb', line 119 def self.list(params = {}, = {}) 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) raise InvalidParameterError.new("Bad parameter: sort_by must be an Hash") if params[:sort_by] and !params[:sort_by].is_a?(Hash) raise InvalidParameterError.new("Bad parameter: filter must be an Hash") if params[:filter] and !params[:filter].is_a?(Hash) raise InvalidParameterError.new("Bad parameter: filter_gt must be an Hash") if params[:filter_gt] and !params[:filter_gt].is_a?(Hash) raise InvalidParameterError.new("Bad parameter: filter_gteq must be an Hash") if params[:filter_gteq] and !params[:filter_gteq].is_a?(Hash) raise InvalidParameterError.new("Bad parameter: filter_like must be an Hash") if params[:filter_like] and !params[:filter_like].is_a?(Hash) raise InvalidParameterError.new("Bad parameter: filter_lt must be an Hash") if params[:filter_lt] and !params[:filter_lt].is_a?(Hash) raise InvalidParameterError.new("Bad parameter: filter_lteq must be an Hash") if params[:filter_lteq] and !params[:filter_lteq].is_a?(Hash) raise InvalidParameterError.new("Bad parameter: ids must be an String") if params[:ids] and !params[:ids].is_a?(String) List.new(Group, params) do Api.send_request("/groups", :get, params, ) end end |
.update(id, params = {}, options = {}) ⇒ Object
Parameters:
name - string - Group name.
notes - string - Group notes.
user_ids - string - A list of user ids. If sent as a string, should be comma-delimited.
admin_ids - string - A list of group admin user ids. If sent as a string, should be comma-delimited.
176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/files.com/models/group.rb', line 176 def self.update(id, params = {}, = {}) 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: name must be an String") if params[:name] and !params[:name].is_a?(String) raise InvalidParameterError.new("Bad parameter: notes must be an String") if params[:notes] and !params[:notes].is_a?(String) raise InvalidParameterError.new("Bad parameter: user_ids must be an String") if params[:user_ids] and !params[:user_ids].is_a?(String) raise InvalidParameterError.new("Bad parameter: admin_ids must be an String") if params[:admin_ids] and !params[:admin_ids].is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params[:id] response, = Api.send_request("/groups/#{params[:id]}", :patch, params, ) Group.new(response.data, ) end |
Instance Method Details
#admin_ids ⇒ Object
string - Comma-delimited list of user IDs who are group administrators (separated by commas)
31 32 33 |
# File 'lib/files.com/models/group.rb', line 31 def admin_ids @attributes[:admin_ids] end |
#admin_ids=(value) ⇒ Object
35 36 37 |
# File 'lib/files.com/models/group.rb', line 35 def admin_ids=(value) @attributes[:admin_ids] = value end |
#delete(params = {}) ⇒ Object
85 86 87 88 89 90 91 92 93 |
# File 'lib/files.com/models/group.rb', line 85 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("/groups/#{@attributes[:id]}", :delete, params, @options) end |
#destroy(params = {}) ⇒ Object
95 96 97 |
# File 'lib/files.com/models/group.rb', line 95 def destroy(params = {}) delete(params) end |
#id ⇒ Object
int64 - Group ID
13 14 15 |
# File 'lib/files.com/models/group.rb', line 13 def id @attributes[:id] end |
#id=(value) ⇒ Object
17 18 19 |
# File 'lib/files.com/models/group.rb', line 17 def id=(value) @attributes[:id] = value end |
#name ⇒ Object
string - Group name
22 23 24 |
# File 'lib/files.com/models/group.rb', line 22 def name @attributes[:name] end |
#name=(value) ⇒ Object
26 27 28 |
# File 'lib/files.com/models/group.rb', line 26 def name=(value) @attributes[:name] = value end |
#notes ⇒ Object
string - Notes about this group
40 41 42 |
# File 'lib/files.com/models/group.rb', line 40 def notes @attributes[:notes] end |
#notes=(value) ⇒ Object
44 45 46 |
# File 'lib/files.com/models/group.rb', line 44 def notes=(value) @attributes[:notes] = value end |
#save ⇒ Object
99 100 101 102 103 104 105 106 |
# File 'lib/files.com/models/group.rb', line 99 def save if @attributes[:id] update(@attributes) else new_obj = Group.create(@attributes, @options) @attributes = new_obj.attributes end end |
#update(params = {}) ⇒ Object
Parameters:
name - string - Group name.
notes - string - Group notes.
user_ids - string - A list of user ids. If sent as a string, should be comma-delimited.
admin_ids - string - A list of group admin user ids. If sent as a string, should be comma-delimited.
71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/files.com/models/group.rb', line 71 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: name must be an String") if params[:name] and !params[:name].is_a?(String) raise InvalidParameterError.new("Bad parameter: notes must be an String") if params[:notes] and !params[:notes].is_a?(String) raise InvalidParameterError.new("Bad parameter: user_ids must be an String") if params[:user_ids] and !params[:user_ids].is_a?(String) raise InvalidParameterError.new("Bad parameter: admin_ids must be an String") if params[:admin_ids] and !params[:admin_ids].is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params[:id] Api.send_request("/groups/#{@attributes[:id]}", :patch, params, @options) end |
#user_ids ⇒ Object
string - Comma-delimited list of user IDs who belong to this group (separated by commas)
49 50 51 |
# File 'lib/files.com/models/group.rb', line 49 def user_ids @attributes[:user_ids] end |
#user_ids=(value) ⇒ Object
53 54 55 |
# File 'lib/files.com/models/group.rb', line 53 def user_ids=(value) @attributes[:user_ids] = value end |
#usernames ⇒ Object
string - Comma-delimited list of usernames who belong to this group (separated by commas)
58 59 60 |
# File 'lib/files.com/models/group.rb', line 58 def usernames @attributes[:usernames] end |
#usernames=(value) ⇒ Object
62 63 64 |
# File 'lib/files.com/models/group.rb', line 62 def usernames=(value) @attributes[:usernames] = value end |