Class: Files::History

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of History.



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

def attributes
  @attributes
end

#optionsObject (readonly)

Returns the value of attribute options.



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

def options
  @options
end

Class Method Details

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



182
183
184
# File 'lib/files.com/models/history.rb', line 182

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

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

Parameters:

start_at - string - Leave blank or set to a date/time to filter earlier entries.
end_at - string - Leave blank or set to a date/time to filter later entries.
display - string - Display format. Leave blank or set to `full` or `parent`.
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.


171
172
173
174
175
176
177
178
179
180
# File 'lib/files.com/models/history.rb', line 171

def self.list(params = {}, options = {})
  raise InvalidParameterError.new("Bad parameter: start_at must be an String") if params.dig(:start_at) and !params.dig(:start_at).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: end_at must be an String") if params.dig(:end_at) and !params.dig(:end_at).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: display must be an String") if params.dig(:display) and !params.dig(:display).is_a?(String)
  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)

  response, options = Api.send_request("/history", :get, params, options)
end

.list_for_file(path, params = {}, options = {}) ⇒ Object

Parameters:

start_at - string - Leave blank or set to a date/time to filter earlier entries.
end_at - string - Leave blank or set to a date/time to filter later entries.
display - string - Display format. Leave blank or set to `full` or `parent`.
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.
path (required) - string - Path to operate on.


85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/files.com/models/history.rb', line 85

def self.list_for_file(path, params = {}, options = {})
  params ||= {}
  params[:path] = path
  raise InvalidParameterError.new("Bad parameter: start_at must be an String") if params.dig(:start_at) and !params.dig(:start_at).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: end_at must be an String") if params.dig(:end_at) and !params.dig(:end_at).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: display must be an String") if params.dig(:display) and !params.dig(:display).is_a?(String)
  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: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  response, options = Api.send_request("/history/files(/*path)", :get, params, options)
end

.list_for_folder(path, params = {}, options = {}) ⇒ Object

Parameters:

start_at - string - Leave blank or set to a date/time to filter earlier entries.
end_at - string - Leave blank or set to a date/time to filter later entries.
display - string - Display format. Leave blank or set to `full` or `parent`.
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.
path (required) - string - Path to operate on.


108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/files.com/models/history.rb', line 108

def self.list_for_folder(path, params = {}, options = {})
  params ||= {}
  params[:path] = path
  raise InvalidParameterError.new("Bad parameter: start_at must be an String") if params.dig(:start_at) and !params.dig(:start_at).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: end_at must be an String") if params.dig(:end_at) and !params.dig(:end_at).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: display must be an String") if params.dig(:display) and !params.dig(:display).is_a?(String)
  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: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  response, options = Api.send_request("/history/folders(/*path)", :get, params, options)
end

.list_for_user(user_id, params = {}, options = {}) ⇒ Object

Parameters:

start_at - string - Leave blank or set to a date/time to filter earlier entries.
end_at - string - Leave blank or set to a date/time to filter later entries.
display - string - Display format. Leave blank or set to `full` or `parent`.
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.
user_id (required) - integer - User ID.


131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/files.com/models/history.rb', line 131

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

  response, options = Api.send_request("/history/users/#{params[:user_id]}", :get, params, options)
end

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

Parameters:

start_at - string - Leave blank or set to a date/time to filter earlier entries.
end_at - string - Leave blank or set to a date/time to filter later entries.
display - string - Display format. Leave blank or set to `full` or `parent`.
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.


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

def self.list_logins(params = {}, options = {})
  raise InvalidParameterError.new("Bad parameter: start_at must be an String") if params.dig(:start_at) and !params.dig(:start_at).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: end_at must be an String") if params.dig(:end_at) and !params.dig(:end_at).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: display must be an String") if params.dig(:display) and !params.dig(:display).is_a?(String)
  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)

  response, options = Api.send_request("/history/login", :get, params, options)
end

Instance Method Details

#actionObject

string - Type of action



63
64
65
# File 'lib/files.com/models/history.rb', line 63

def action
  @attributes[:action]
end

#destinationObject

string - The destination path for this action, if applicable



28
29
30
# File 'lib/files.com/models/history.rb', line 28

def destination
  @attributes[:destination]
end

#displayObject

string - Friendly displayed output



33
34
35
# File 'lib/files.com/models/history.rb', line 33

def display
  @attributes[:display]
end

#failure_typeObject

string - Failure type. If action was a user login or session failure, why did it fail?



68
69
70
# File 'lib/files.com/models/history.rb', line 68

def failure_type
  @attributes[:failure_type]
end

#idObject

int64 - Action ID



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

def id
  @attributes[:id]
end

#interfaceObject

string - Interface on which this action occurred.



73
74
75
# File 'lib/files.com/models/history.rb', line 73

def interface
  @attributes[:interface]
end

#ipObject

string - IP Address that performed this action



38
39
40
# File 'lib/files.com/models/history.rb', line 38

def ip
  @attributes[:ip]
end

#pathObject

string - Path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.



18
19
20
# File 'lib/files.com/models/history.rb', line 18

def path
  @attributes[:path]
end

#sourceObject

string - The source path for this action, if applicable



43
44
45
# File 'lib/files.com/models/history.rb', line 43

def source
  @attributes[:source]
end

#targetsObject

array - Targets



48
49
50
# File 'lib/files.com/models/history.rb', line 48

def targets
  @attributes[:targets]
end

#user_idObject

int64 - User ID



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

def user_id
  @attributes[:user_id]
end

#usernameObject

string - Username



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

def username
  @attributes[:username]
end

#whenObject

date-time - Action occurrence date/time



23
24
25
# File 'lib/files.com/models/history.rb', line 23

def when
  @attributes[:when]
end