Class: SkullIsland::Resources::Upstream
- Inherits:
-
SkullIsland::Resource
- Object
- SkullIsland::Resource
- SkullIsland::Resources::Upstream
- Includes:
- Helpers::Meta
- Defined in:
- lib/skull_island/resources/upstream.rb
Overview
The Upstream resource class
Instance Attribute Summary
Attributes inherited from SkullIsland::Resource
Class Method Summary collapse
-
.batch_import(data, verbose: false, test: false, project: nil, time: nil) ⇒ Object
rubocop:disable Metrics/CyclomaticComplexity rubocop:disable Metrics/PerceivedComplexity rubocop:disable Metrics/AbcSize.
Instance Method Summary collapse
-
#add_target!(details) ⇒ Object
Convenience method to add upstream targets.
-
#algorithm ⇒ Object
The algorithm property.
-
#created_at ⇒ Object
The created_at property.
-
#export(options = {}) ⇒ Object
rubocop:disable Metrics/AbcSize.
-
#hash_fallback ⇒ Object
The hash_fallback property.
-
#hash_fallback_header ⇒ Object
The hash_fallback_header property.
-
#hash_on ⇒ Object
The hash_on property.
-
#hash_on_cookie ⇒ Object
The hash_on_cookie property.
-
#hash_on_cookie_path ⇒ Object
The hash_on_cookie_path property.
-
#hash_on_header ⇒ Object
The hash_on_header property.
-
#health ⇒ Object
rubocop:enable Metrics/CyclomaticComplexity rubocop:enable Metrics/PerceivedComplexity rubocop:enable Metrics/AbcSize.
-
#healthchecks ⇒ Object
The healthchecks property.
-
#host_header ⇒ Object
The host_header property.
-
#modified_existing? ⇒ Boolean
rubocop:enable Metrics/AbcSize.
-
#name ⇒ Object
The name property.
-
#slots ⇒ Object
The slots property.
-
#tags ⇒ Object
The tags property.
- #target(target_id) ⇒ Object
- #targets ⇒ Object
Methods included from Helpers::Meta
#add_meta, #import_time, #import_time=, #metatags, #postprocess_tags, #preprocess_tags, #project, #project=, #raw_tags, #remove_meta, #supports_meta?
Methods inherited from SkullIsland::Resource
all, cleanup_except, find, from_hash, gen_getter_method, gen_property_methods, gen_setter_method, get, immutable, #initialize, property, relative_uri, #relative_uri, where
Methods included from Helpers::ResourceClass
#determine_getter_names, #determine_setter_names, #human, #i18n_key, #immutable?, #param_key, #properties, #route_key
Methods included from Helpers::Resource
#<=>, #datetime_from_params, #delayed_set, #destroy, #digest, #digest_properties, #find_by_digest, #fresh?, #host_regex, #id, #id_property, #immutable?, #import_update_or_skip, #lookup, #model_name, #new?, #persisted?, #postprocess_created_at, #postprocess_updated_at, #properties, #prune_for_save, #recursive_erubi, #reload, #required_properties, #save, #save_uri, #supports_meta?, #tainted?, #to_param, #to_s, #update
Methods included from Validations::Resource
#validate_id, #validate_mutability, #validate_required_properties, #validate_tags
Constructor Details
This class inherits a constructor from SkullIsland::Resource
Class Method Details
.batch_import(data, verbose: false, test: false, project: nil, time: nil) ⇒ Object
rubocop:disable Metrics/CyclomaticComplexity rubocop:disable Metrics/PerceivedComplexity rubocop:disable Metrics/AbcSize
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/skull_island/resources/upstream.rb', line 29 def self.batch_import(data, verbose: false, test: false, project: nil, time: nil) raise(Exceptions::InvalidArguments) unless data.is_a?(Array) known_ids = [] data.each_with_index do |rdata, index| resource = new resource.name = rdata['name'] resource.algorithm = rdata['algorithm'] if rdata['algorithm'] resource.slots = rdata['slots'] if rdata['slots'] resource.hash_on = rdata['hash_on'] resource.hash_fallback = rdata['hash_fallback'] if rdata['hash_fallback'] resource.hash_on_header = rdata['hash_on_header'] if rdata['hash_on_header'] if rdata['hash_fallback_header'] resource.hash_fallback_header = rdata['hash_fallback_header'] end resource. = rdata['hash_on_cookie'] if rdata['hash_on_cookie'] if rdata['hash_on_cookie_path'] resource. = rdata['hash_on_cookie_path'] end resource.healthchecks = rdata['healthchecks'] if rdata['healthchecks'] resource.host_header = rdata['host_header'] if rdata['host_header'] resource. = rdata['tags'] if rdata['tags'] resource.project = project if project resource.import_time = (time || Time.now.utc.to_i) if project resource.import_update_or_skip(index: index, verbose: verbose, test: test) known_ids << resource.id puts '[INFO] Processing UpstreamTarget entries...' if verbose UpstreamTarget.batch_import( (rdata['targets'] || []).map { |t| t.merge('upstream' => { 'id' => resource.id }) }, verbose: verbose, test: test, project: project, time: time ) end cleanup_except(project, known_ids) if project end |
Instance Method Details
#add_target!(details) ⇒ Object
Convenience method to add upstream targets
84 85 86 87 88 89 90 91 92 93 |
# File 'lib/skull_island/resources/upstream.rb', line 84 def add_target!(details) r = if details.is_a?(UpstreamTarget) details else UpstreamTarget.from_hash(details, api_client: api_client) end r.upstream = self r.save end |
#algorithm ⇒ Object
The algorithm property
13 |
# File 'lib/skull_island/resources/upstream.rb', line 13 property :algorithm, validate: true |
#created_at ⇒ Object
The created_at property
23 |
# File 'lib/skull_island/resources/upstream.rb', line 23 property :created_at, read_only: true, postprocess: true |
#export(options = {}) ⇒ Object
rubocop:disable Metrics/AbcSize
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
# File 'lib/skull_island/resources/upstream.rb', line 119 def export( = {}) hash = { 'name' => name, 'slots' => slots, 'hash_on' => hash_on, 'hash_fallback' => hash_fallback, 'hash_on_header' => hash_on_header, 'hash_fallback_header' => hash_fallback_header, 'hash_on_cookie' => , 'hash_on_cookie_path' => , 'healthchecks' => healthchecks } hash['algorithm'] = algorithm if algorithm hash['targets'] = targets.collect { |target| target.export(exclude: 'upstream') } hash['host_header'] = host_header if host_header hash['tags'] = unless .empty? [*[:exclude]].each do |exclude| hash.delete(exclude.to_s) end [*[:include]].each do |inc| hash[inc.to_s] = send(inc.to_sym) end hash.reject { |_, value| value.nil? } end |
#hash_fallback ⇒ Object
The hash_fallback property
16 |
# File 'lib/skull_island/resources/upstream.rb', line 16 property :hash_fallback, validate: true |
#hash_fallback_header ⇒ Object
The hash_fallback_header property
18 |
# File 'lib/skull_island/resources/upstream.rb', line 18 property :hash_fallback_header, validate: true |
#hash_on ⇒ Object
The hash_on property
15 |
# File 'lib/skull_island/resources/upstream.rb', line 15 property :hash_on, validate: true |
#hash_on_cookie ⇒ Object
The hash_on_cookie property
19 |
# File 'lib/skull_island/resources/upstream.rb', line 19 property :hash_on_cookie, validate: true |
#hash_on_cookie_path ⇒ Object
The hash_on_cookie_path property
20 |
# File 'lib/skull_island/resources/upstream.rb', line 20 property :hash_on_cookie_path, validate: true |
#hash_on_header ⇒ Object
The hash_on_header property
17 |
# File 'lib/skull_island/resources/upstream.rb', line 17 property :hash_on_header, validate: true |
#health ⇒ Object
rubocop:enable Metrics/CyclomaticComplexity rubocop:enable Metrics/PerceivedComplexity rubocop:enable Metrics/AbcSize
73 74 75 76 77 78 79 80 81 |
# File 'lib/skull_island/resources/upstream.rb', line 73 def health if new? # No health status for new Upstreams nil else health_json = api_client.get("#{relative_uri}/health") health_json['data'] end end |
#healthchecks ⇒ Object
The healthchecks property
21 |
# File 'lib/skull_island/resources/upstream.rb', line 21 property :healthchecks, validate: true |
#host_header ⇒ Object
The host_header property
22 |
# File 'lib/skull_island/resources/upstream.rb', line 22 property :host_header, validate: true |
#modified_existing? ⇒ Boolean
rubocop:enable Metrics/AbcSize
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/skull_island/resources/upstream.rb', line 145 def modified_existing? return false unless new? # Find routes of the same name same_name = self.class.where(:name, name) existing = same_name.size == 1 ? same_name.first : nil if existing @entity['id'] = existing.id save else false end end |
#name ⇒ Object
The name property
12 |
# File 'lib/skull_island/resources/upstream.rb', line 12 property :name, required: true, validate: true |
#slots ⇒ Object
The slots property
14 |
# File 'lib/skull_island/resources/upstream.rb', line 14 property :slots, validate: true |
#tags ⇒ Object
The tags property
24 |
# File 'lib/skull_island/resources/upstream.rb', line 24 property :tags, validate: true, preprocess: true, postprocess: true |
#target(target_id) ⇒ Object
95 96 97 |
# File 'lib/skull_island/resources/upstream.rb', line 95 def target(target_id) targets.where(:id, target_id).first end |
#targets ⇒ Object
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/skull_island/resources/upstream.rb', line 99 def targets target_list_data = api_client.get("#{relative_uri}/targets") root = 'data' # root for API JSON response data # TODO: do something with lazy requests... ResourceCollection.new( target_list_data[root].map do |record| UpstreamTarget.new( entity: record, lazy: false, tainted: false, api_client: api_client ) end, type: UpstreamTarget, api_client: api_client ) end |