Class: SkullIsland::Resources::CACertificate
- Inherits:
-
SkullIsland::Resource
- Object
- SkullIsland::Resource
- SkullIsland::Resources::CACertificate
- Includes:
- Helpers::Meta
- Defined in:
- lib/skull_island/resources/ca_certificate.rb
Overview
The CA Certificate resource class
Instance Attribute Summary
Attributes inherited from SkullIsland::Resource
Class Method Summary collapse
Instance Method Summary collapse
-
#cert ⇒ Object
The cert property.
-
#created_at ⇒ Object
The created_at property.
- #export(options = {}) ⇒ Object
- #modified_existing? ⇒ Boolean
-
#tags ⇒ Object
The tags 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, #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
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/skull_island/resources/ca_certificate.rb', line 16 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 |resource_data, index| resource = new resource.delayed_set(:cert, resource_data) 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 end cleanup_except(project, known_ids) if project end |
Instance Method Details
#cert ⇒ Object
The cert property
12 |
# File 'lib/skull_island/resources/ca_certificate.rb', line 12 property :cert, required: true, validate: true |
#created_at ⇒ Object
The created_at property
13 |
# File 'lib/skull_island/resources/ca_certificate.rb', line 13 property :created_at, read_only: true, postprocess: true |
#export(options = {}) ⇒ Object
34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/skull_island/resources/ca_certificate.rb', line 34 def export( = {}) hash = { 'cert' => cert } 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
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/skull_island/resources/ca_certificate.rb', line 46 def modified_existing? return false unless new? # Find CA certs of the same cert same_cert = self.class.where(:cert, cert) existing = same_cert.size == 1 ? same_cert.first : nil if existing @entity['id'] = existing.id save else false end end |
#tags ⇒ Object
The tags property
14 |
# File 'lib/skull_island/resources/ca_certificate.rb', line 14 property :tags, validate: true, preprocess: true, postprocess: true |