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) - integer - Group ID.
- .get(id, params = {}, options = {}) ⇒ Object
-
.list(params = {}, options = {}) ⇒ Object
Parameters: page - integer - Current page number.
-
.update(id, params = {}, options = {}) ⇒ Object
Parameters: name - string - Group name.
Instance Method Summary collapse
-
#admin_ids ⇒ Object
array - List of user IDs who are group administrators.
- #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
array - List of user IDs who belong to this group.
- #user_ids=(value) ⇒ Object
-
#usernames ⇒ Object
array - List of usernames who belong to this group.
- #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 || {} = || {} 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 end |
Class Method Details
.all(params = {}, options = {}) ⇒ Object
123 124 125 |
# File 'lib/files.com/models/group.rb', line 123 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.
148 149 150 151 152 153 154 155 156 |
# File 'lib/files.com/models/group.rb', line 148 def self.create(params = {}, = {}) raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String) raise InvalidParameterError.new("Bad parameter: notes must be an String") if params.dig(:notes) and !params.dig(:notes).is_a?(String) raise InvalidParameterError.new("Bad parameter: user_ids must be an String") if params.dig(:user_ids) and !params.dig(:user_ids).is_a?(String) raise InvalidParameterError.new("Bad parameter: admin_ids must be an String") if params.dig(:admin_ids) and !params.dig(:admin_ids).is_a?(String) response, = Api.send_request("/groups", :post, params, ) Group.new(response.data, ) end |
.delete(id, params = {}, options = {}) ⇒ Object
177 178 179 180 181 182 183 184 185 |
# File 'lib/files.com/models/group.rb', line 177 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("/groups/#{params[:id]}", :delete, params, ) response.data end |
.destroy(id, params = {}, options = {}) ⇒ Object
187 188 189 |
# File 'lib/files.com/models/group.rb', line 187 def self.destroy(id, params = {}, = {}) delete(id, params, ) end |
.find(id, params = {}, options = {}) ⇒ Object
Parameters:
id (required) - integer - Group ID.
129 130 131 132 133 134 135 136 137 |
# File 'lib/files.com/models/group.rb', line 129 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("/groups/#{params[:id]}", :get, params, ) Group.new(response.data, ) end |
.get(id, params = {}, options = {}) ⇒ Object
139 140 141 |
# File 'lib/files.com/models/group.rb', line 139 def self.get(id, params = {}, = {}) find(id, params, ) end |
.list(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.
ids - string - Comma-separated list of group ids to include in results.
113 114 115 116 117 118 119 120 121 |
# File 'lib/files.com/models/group.rb', line 113 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: ids must be an String") if params.dig(:ids) and !params.dig(:ids).is_a?(String) response, = Api.send_request("/groups", :get, params, ) response.data.map { |object| Group.new(object, ) } 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.
163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'lib/files.com/models/group.rb', line 163 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: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String) raise InvalidParameterError.new("Bad parameter: notes must be an String") if params.dig(:notes) and !params.dig(:notes).is_a?(String) raise InvalidParameterError.new("Bad parameter: user_ids must be an String") if params.dig(:user_ids) and !params.dig(:user_ids).is_a?(String) raise InvalidParameterError.new("Bad parameter: admin_ids must be an String") if params.dig(:admin_ids) and !params.dig(:admin_ids).is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) response, = Api.send_request("/groups/#{params[:id]}", :patch, params, ) Group.new(response.data, ) end |
Instance Method Details
#admin_ids ⇒ Object
array - List of user IDs who are group administrators
22 23 24 |
# File 'lib/files.com/models/group.rb', line 22 def admin_ids @attributes[:admin_ids] end |
#admin_ids=(value) ⇒ Object
26 27 28 |
# File 'lib/files.com/models/group.rb', line 26 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.dig(:id) and !params.dig(:id).is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) Api.send_request("/groups/#{@attributes[:id]}", :delete, params, ) 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
31 32 33 |
# File 'lib/files.com/models/group.rb', line 31 def name @attributes[:name] end |
#name=(value) ⇒ Object
35 36 37 |
# File 'lib/files.com/models/group.rb', line 35 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, ) @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.dig(:id) and !params.dig(:id).is_a?(Integer) raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String) raise InvalidParameterError.new("Bad parameter: notes must be an String") if params.dig(:notes) and !params.dig(:notes).is_a?(String) raise InvalidParameterError.new("Bad parameter: user_ids must be an String") if params.dig(:user_ids) and !params.dig(:user_ids).is_a?(String) raise InvalidParameterError.new("Bad parameter: admin_ids must be an String") if params.dig(:admin_ids) and !params.dig(:admin_ids).is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) Api.send_request("/groups/#{@attributes[:id]}", :patch, params, ) end |
#user_ids ⇒ Object
array - List of user IDs who belong to this group
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
array - List of usernames who belong to this group
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 |