Class: Files::Group

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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 = {}, 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/group.rb', line 5

def attributes
  @attributes
end

#optionsObject (readonly)

Returns the value of attribute options.



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

def options
  @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 = {}, options = {})
  list(params, options)
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 = {}, options = {})
  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, options = Api.send_request("/groups", :post, params, options)
  Group.new(response.data, options)
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 = {}, 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("/groups/#{params[:id]}", :delete, params, options)
  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 = {}, options = {})
  delete(id, params, options)
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 = {}, 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("/groups/#{params[:id]}", :get, params, options)
  Group.new(response.data, options)
end

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



152
153
154
# File 'lib/files.com/models/group.rb', line 152

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

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

Parameters:

cursor - string - Used for pagination.  Send a cursor value to resume an existing list from the point at which you left off.  Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
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[last_login_at]=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 = {}, 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)
  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, options)
  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 = {}, 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: 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, options = Api.send_request("/groups/#{params[:id]}", :patch, params, options)
  Group.new(response.data, options)
end

Instance Method Details

#admin_idsObject

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

#idObject

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

#nameObject

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

#notesObject

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

#saveObject



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_idsObject

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

#usernamesObject

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