Class: Files::MessageComment

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of MessageComment.



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

def attributes
  @attributes
end

#optionsObject (readonly)

Returns the value of attribute options.



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

def options
  @options
end

Class Method Details

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



106
107
108
# File 'lib/files.com/models/message_comment.rb', line 106

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

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

Parameters:

user_id - int64 - User ID.  Provide a value of `0` to operate the current session's user.
body (required) - string - Comment body.


129
130
131
132
133
134
135
136
# File 'lib/files.com/models/message_comment.rb', line 129

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

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

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



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

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("/message_comments/#{params[:id]}", :delete, params, options)
  response.data
end

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



162
163
164
# File 'lib/files.com/models/message_comment.rb', line 162

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

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

Parameters:

id (required) - int64 - Message Comment ID.


112
113
114
115
116
117
118
119
120
# File 'lib/files.com/models/message_comment.rb', line 112

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("/message_comments/#{params[:id]}", :get, params, options)
  MessageComment.new(response.data, options)
end

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



122
123
124
# File 'lib/files.com/models/message_comment.rb', line 122

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

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

Parameters:

user_id - int64 - User ID.  Provide a value of `0` to operate the current session's user.
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.
message_id (required) - int64 - Message comment to return comments for.


92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/files.com/models/message_comment.rb', line 92

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

  List.new(MessageComment, params) do
    Api.send_request("/message_comments", :get, params, options)
  end
end

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

Parameters:

body (required) - string - Comment body.


140
141
142
143
144
145
146
147
148
149
150
# File 'lib/files.com/models/message_comment.rb', line 140

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: 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: body") unless params.dig(:body)

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

Instance Method Details

#bodyObject

string - Comment body.



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

def body
  @attributes[:body]
end

#body=(value) ⇒ Object



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

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

#delete(params = {}) ⇒ Object



62
63
64
65
66
67
68
69
70
# File 'lib/files.com/models/message_comment.rb', line 62

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

#destroy(params = {}) ⇒ Object



72
73
74
# File 'lib/files.com/models/message_comment.rb', line 72

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

#idObject

int64 - Message Comment ID



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

def id
  @attributes[:id]
end

#id=(value) ⇒ Object



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

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

#reactionsObject

array - Reactions to this comment.



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

def reactions
  @attributes[:reactions]
end

#reactions=(value) ⇒ Object



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

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

#saveObject



76
77
78
79
80
81
82
83
# File 'lib/files.com/models/message_comment.rb', line 76

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

#update(params = {}) ⇒ Object

Parameters:

body (required) - string - Comment body.


50
51
52
53
54
55
56
57
58
59
60
# File 'lib/files.com/models/message_comment.rb', line 50

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: 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: body") unless params.dig(:body)

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

#user_idObject

int64 - User ID. Provide a value of ‘0` to operate the current session’s user.



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

def user_id
  @attributes[:user_id]
end

#user_id=(value) ⇒ Object



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

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