Class: SkullIsland::Resources::Consumer
- Inherits:
-
SkullIsland::Resource
- Object
- SkullIsland::Resource
- SkullIsland::Resources::Consumer
- Includes:
- Helpers::Meta
- Defined in:
- lib/skull_island/resources/consumer.rb
Overview
The Consumer 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_credential!(details) ⇒ Object
-
#created_at ⇒ Object
The created_at property.
-
#credentials ⇒ Object
rubocop:enable Metrics/AbcSize rubocop:enable Metrics/CyclomaticComplexity rubocop:enable Metrics/PerceivedComplexity.
-
#custom_id ⇒ Object
The custom_id property.
- #export(options = {}) ⇒ Object
- #modified_existing? ⇒ Boolean
-
#plugins ⇒ Object
Provides a collection of related Plugin instances.
-
#tags ⇒ Object
The tags property.
-
#username ⇒ Object
The username property.
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, #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
20 21 22 23 24 25 26 27 28 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 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/skull_island/resources/consumer.rb', line 20 def self.batch_import(data, verbose: false, test: false, project: nil, time: nil) raise(Exceptions::InvalidArguments) unless data.is_a?(Array) known_ids = [] # rubocop:disable Metrics/BlockLength data.each_with_index do |resource_data, index| resource = new resource.username = resource_data['username'] resource.custom_id = resource_data['custom_id'] resource. = resource_data['tags'] if resource_data['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 known_basic_auths = BasicauthCredential.batch_import( ( resource_data.dig('credentials', 'basic-auth') || [] ).map { |t| t.merge('consumer' => { 'id' => resource.id }) }, verbose: verbose, test: test ) known_jwt_auths = JWTCredential.batch_import( ( resource_data.dig('credentials', 'jwt') || [] ).map { |t| t.merge('consumer' => { 'id' => resource.id }) }, verbose: verbose, test: test ) known_key_auths = KeyauthCredential.batch_import( ( resource_data.dig('credentials', 'key-auth') || [] ).map { |t| t.merge('consumer' => { 'id' => resource.id }) }, verbose: verbose, test: test ) next unless project BasicauthCredential.all.reject { |res| known_basic_auths.include?(res.id) }.map do |res| puts "[WARN] ! Removing #{res.class.name} (#{res.id})" res.destroy end JWTCredential.all.reject { |res| known_jwt_auths.include?(res.id) }.map do |res| puts "[WARN] ! Removing #{res.class.name} (#{res.id})" res.destroy end KeyauthCredential.all.reject { |res| known_key_auths.include?(res.id) }.map do |res| puts "[WARN] ! Removing #{res.class.name} (#{res.id})" res.destroy end end # rubocop:enable Metrics/BlockLength cleanup_except(project, known_ids) if project end |
Instance Method Details
#add_credential!(details) ⇒ Object
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/skull_island/resources/consumer.rb', line 82 def add_credential!(details) r = if [BasicauthCredential, JWTCredential, KeyauthCredential].include? details.class details elsif details.is_a?(Hash) && details.key?(:algorithm) cred = JWTCredential.new(api_client: api_client) cred.algorithm = details[:algorithm] cred.key = details[:key] if details[:key] cred.secret = details[:secret] if details[:secret] cred.rsa_public_key = details[:rsa_public_key] if details[:rsa_public_key] cred elsif details.is_a?(Hash) && details.key?(:key) cred = KeyauthCredential.new(api_client: api_client) cred.key = details[:key] cred elsif details.is_a?(Hash) && details.key?(:username) cred = BasicauthCredential.new(api_client: api_client) cred.username = details[:username] cred.password = details[:password] cred end r.consumer = self r.save end |
#created_at ⇒ Object
The created_at property
14 |
# File 'lib/skull_island/resources/consumer.rb', line 14 property :created_at, read_only: true, postprocess: true |
#credentials ⇒ Object
rubocop:enable Metrics/AbcSize rubocop:enable Metrics/CyclomaticComplexity rubocop:enable Metrics/PerceivedComplexity
110 111 112 113 114 115 116 117 118 119 |
# File 'lib/skull_island/resources/consumer.rb', line 110 def credentials creds = {} keyauth_creds = KeyauthCredential.where(:consumer, self, api_client: api_client) creds['key-auth'] = keyauth_creds if keyauth_creds basicauth_creds = BasicauthCredential.where(:consumer, self, api_client: api_client) creds['basic-auth'] = basicauth_creds if basicauth_creds jwt_creds = JWTCredential.where(:consumer, self, api_client: api_client) creds['jwt'] = jwt_creds if jwt_creds creds end |
#custom_id ⇒ Object
The custom_id property
13 |
# File 'lib/skull_island/resources/consumer.rb', line 13 property :custom_id |
#export(options = {}) ⇒ Object
126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/skull_island/resources/consumer.rb', line 126 def export( = {}) hash = { 'username' => username, 'custom_id' => custom_id } creds = credentials_for_export hash['credentials'] = creds unless creds.empty? 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 |
#modified_existing? ⇒ Boolean
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/skull_island/resources/consumer.rb', line 140 def modified_existing? return false unless new? # Find consumers of the same username same_username = self.class.where(:username, username) existing = same_username.size == 1 ? same_username.first : nil if existing @entity['id'] = existing.id save else false end end |
#plugins ⇒ Object
Provides a collection of related Plugin instances
122 123 124 |
# File 'lib/skull_island/resources/consumer.rb', line 122 def plugins Plugin.where(:consumer, self, api_client: api_client) end |
#tags ⇒ Object
The tags property
15 |
# File 'lib/skull_island/resources/consumer.rb', line 15 property :tags, validate: true, preprocess: true, postprocess: true |
#username ⇒ Object
The username property
12 |
# File 'lib/skull_island/resources/consumer.rb', line 12 property :username |