Class: Files::History
- Inherits:
-
Object
- Object
- Files::History
- Defined in:
- lib/files.com/models/history.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
-
.list(params = {}, options = {}) ⇒ Object
Parameters: start_at - string - Leave blank or set to a date/time to filter earlier entries.
-
.list_for_file(path, params = {}, options = {}) ⇒ Object
Parameters: start_at - string - Leave blank or set to a date/time to filter earlier entries.
-
.list_for_folder(path, params = {}, options = {}) ⇒ Object
Parameters: start_at - string - Leave blank or set to a date/time to filter earlier entries.
-
.list_for_user(user_id, params = {}, options = {}) ⇒ Object
Parameters: start_at - string - Leave blank or set to a date/time to filter earlier entries.
-
.list_logins(params = {}, options = {}) ⇒ Object
Parameters: start_at - string - Leave blank or set to a date/time to filter earlier entries.
Instance Method Summary collapse
-
#action ⇒ Object
string - Type of action.
-
#destination ⇒ Object
string - The destination path for this action, if applicable.
-
#display ⇒ Object
string - Friendly displayed output.
-
#failure_type ⇒ Object
string - Failure type.
-
#id ⇒ Object
int64 - Action ID.
-
#initialize(attributes = {}, options = {}) ⇒ History
constructor
A new instance of History.
-
#interface ⇒ Object
string - Interface on which this action occurred.
-
#ip ⇒ Object
string - IP Address that performed this action.
-
#path ⇒ Object
string - Path This must be slash-delimited, but it must neither start nor end with a slash.
-
#source ⇒ Object
string - The source path for this action, if applicable.
-
#targets ⇒ Object
array - Targets.
-
#user_id ⇒ Object
int64 - User ID.
-
#username ⇒ Object
string - Username.
-
#when ⇒ Object
date-time - Action occurrence date/time.
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 = {}, = {}) @attributes = attributes || {} @options = || {} end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
5 6 7 |
# File 'lib/files.com/models/history.rb', line 5 def attributes @attributes end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/files.com/models/history.rb', line 5 def @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 = {}, = {}) list(params, ) 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 = {}, = {}) 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, = Api.send_request("/history", :get, params, ) 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 = {}, = {}) 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, = Api.send_request("/history/files(/*path)", :get, params, ) 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 = {}, = {}) 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, = Api.send_request("/history/folders(/*path)", :get, params, ) 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 = {}, = {}) 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, = Api.send_request("/history/users/#{params[:user_id]}", :get, params, ) 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 = {}, = {}) 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, = Api.send_request("/history/login", :get, params, ) end |
Instance Method Details
#action ⇒ Object
string - Type of action
63 64 65 |
# File 'lib/files.com/models/history.rb', line 63 def action @attributes[:action] end |
#destination ⇒ Object
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 |
#display ⇒ Object
string - Friendly displayed output
33 34 35 |
# File 'lib/files.com/models/history.rb', line 33 def display @attributes[:display] end |
#failure_type ⇒ Object
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 |
#id ⇒ Object
int64 - Action ID
13 14 15 |
# File 'lib/files.com/models/history.rb', line 13 def id @attributes[:id] end |
#interface ⇒ Object
string - Interface on which this action occurred.
73 74 75 |
# File 'lib/files.com/models/history.rb', line 73 def interface @attributes[:interface] end |
#ip ⇒ Object
string - IP Address that performed this action
38 39 40 |
# File 'lib/files.com/models/history.rb', line 38 def ip @attributes[:ip] end |
#path ⇒ Object
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 |
#source ⇒ Object
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 |
#targets ⇒ Object
array - Targets
48 49 50 |
# File 'lib/files.com/models/history.rb', line 48 def targets @attributes[:targets] end |
#user_id ⇒ Object
int64 - User ID
53 54 55 |
# File 'lib/files.com/models/history.rb', line 53 def user_id @attributes[:user_id] end |
#username ⇒ Object
string - Username
58 59 60 |
# File 'lib/files.com/models/history.rb', line 58 def username @attributes[:username] end |
#when ⇒ Object
date-time - Action occurrence date/time
23 24 25 |
# File 'lib/files.com/models/history.rb', line 23 def when @attributes[:when] end |