Class: Files::Message

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of Message.



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

def attributes
  @attributes
end

#optionsObject (readonly)

Returns the value of attribute options.



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

def options
  @options
end

Class Method Details

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



127
128
129
# File 'lib/files.com/models/message.rb', line 127

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

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

Parameters:

user_id - integer - User ID. If not provided, this operation will operate on your own user.
project_id (required) - integer - Project to attach the message to.
subject (required) - string - Message subject.
body (required) - string - Message body.


152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/files.com/models/message.rb', line 152

def self.create(params = {}, options = {})
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params.dig(:user_id) and !params.dig(:user_id).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: project_id must be an Integer") if params.dig(:project_id) and !params.dig(:project_id).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: subject must be an String") if params.dig(:subject) and !params.dig(:subject).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: body must be an String") if params.dig(:body) and !params.dig(:body).is_a?(String)
  raise MissingParameterError.new("Parameter missing: project_id") unless params.dig(:project_id)
  raise MissingParameterError.new("Parameter missing: subject") unless params.dig(:subject)
  raise MissingParameterError.new("Parameter missing: body") unless params.dig(:body)

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

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



185
186
187
188
189
190
191
192
193
# File 'lib/files.com/models/message.rb', line 185

def self.delete(id, params = {}, options = {})
  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, _options = Api.send_request("/messages/#{params[:id]}", :delete, params, options)
  response.data
end

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



195
196
197
# File 'lib/files.com/models/message.rb', line 195

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

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

Parameters:

id (required) - integer - Message ID.


133
134
135
136
137
138
139
140
141
# File 'lib/files.com/models/message.rb', line 133

def self.find(id, params = {}, options = {})
  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, options = Api.send_request("/messages/#{params[:id]}", :get, params, options)
  Message.new(response.data, options)
end

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



143
144
145
# File 'lib/files.com/models/message.rb', line 143

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

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

Parameters:

user_id - integer - User ID. If not provided, this operation will operate on your own user.
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.
project_id (required) - integer - Project to return messages for.


115
116
117
118
119
120
121
122
123
124
125
# File 'lib/files.com/models/message.rb', line 115

def self.list(params = {}, options = {})
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params.dig(:user_id) and !params.dig(:user_id).is_a?(Integer)
  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: project_id must be an Integer") if params.dig(:project_id) and !params.dig(:project_id).is_a?(Integer)
  raise MissingParameterError.new("Parameter missing: project_id") unless params.dig(:project_id)

  response, options = Api.send_request("/messages", :get, params, options)
  response.data.map { |object| Message.new(object, options) }
end

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

Parameters:

project_id (required) - integer - Project to attach the message to.
subject (required) - string - Message subject.
body (required) - string - Message body.


169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# File 'lib/files.com/models/message.rb', line 169

def self.update(id, params = {}, options = {})
  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: project_id must be an Integer") if params.dig(:project_id) and !params.dig(:project_id).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: subject must be an String") if params.dig(:subject) and !params.dig(:subject).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: body must be an String") if params.dig(:body) and !params.dig(:body).is_a?(String)
  raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id)
  raise MissingParameterError.new("Parameter missing: project_id") unless params.dig(:project_id)
  raise MissingParameterError.new("Parameter missing: subject") unless params.dig(:subject)
  raise MissingParameterError.new("Parameter missing: body") unless params.dig(:body)

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

Instance Method Details

#bodyObject

string - Message body.



31
32
33
# File 'lib/files.com/models/message.rb', line 31

def body
  @attributes[:body]
end

#body=(value) ⇒ Object



35
36
37
# File 'lib/files.com/models/message.rb', line 35

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

#commentsObject

array - Comments.



40
41
42
# File 'lib/files.com/models/message.rb', line 40

def comments
  @attributes[:comments]
end

#comments=(value) ⇒ Object



44
45
46
# File 'lib/files.com/models/message.rb', line 44

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

#delete(params = {}) ⇒ Object



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

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("/messages/#{@attributes[:id]}", :delete, params, @options)
end

#destroy(params = {}) ⇒ Object



96
97
98
# File 'lib/files.com/models/message.rb', line 96

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

#idObject

int64 - Message ID



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

def id
  @attributes[:id]
end

#id=(value) ⇒ Object



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

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

#project_idObject

int64 - Project to attach the message to.



58
59
60
# File 'lib/files.com/models/message.rb', line 58

def project_id
  @attributes[:project_id]
end

#project_id=(value) ⇒ Object



62
63
64
# File 'lib/files.com/models/message.rb', line 62

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

#saveObject



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

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

#subjectObject

string - Message subject.



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

def subject
  @attributes[:subject]
end

#subject=(value) ⇒ Object



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

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

#update(params = {}) ⇒ Object

Parameters:

project_id (required) - integer - Project to attach the message to.
subject (required) - string - Message subject.
body (required) - string - Message body.


70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/files.com/models/message.rb', line 70

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: project_id must be an Integer") if params.dig(:project_id) and !params.dig(:project_id).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: subject must be an String") if params.dig(:subject) and !params.dig(:subject).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: body must be an String") if params.dig(:body) and !params.dig(:body).is_a?(String)
  raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id)
  raise MissingParameterError.new("Parameter missing: project_id") unless params.dig(:project_id)
  raise MissingParameterError.new("Parameter missing: subject") unless params.dig(:subject)
  raise MissingParameterError.new("Parameter missing: body") unless params.dig(:body)

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

#user_idObject

int64 - User ID. If not provided, this operation will operate on your own user.



49
50
51
# File 'lib/files.com/models/message.rb', line 49

def user_id
  @attributes[:user_id]
end

#user_id=(value) ⇒ Object



53
54
55
# File 'lib/files.com/models/message.rb', line 53

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