Class: SkullIsland::Resources::Certificate

Inherits:
SkullIsland::Resource show all
Includes:
Helpers::Meta
Defined in:
lib/skull_island/resources/certificate.rb

Overview

The Certificate resource class

Instance Attribute Summary

Attributes inherited from SkullIsland::Resource

#api_client, #entity, #errors

Class Method Summary collapse

Instance Method Summary collapse

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/PerceivedComplexity rubocop:disable Metrics/CyclomaticComplexity



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/skull_island/resources/certificate.rb', line 21

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.delayed_set(:key, resource_data)
    resource.snis = resource_data['snis'] if resource_data['snis']
    resource.tags = resource_data['tags'] if resource_data['tags']
    resource.name = resource_data['name'] if resource_data['name']
    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

  known_ids
end

Instance Method Details

#certObject

The cert property



12
# File 'lib/skull_island/resources/certificate.rb', line 12

property :cert, required: true, validate: true

#created_atObject

property :name The created_at property



16
# File 'lib/skull_island/resources/certificate.rb', line 16

property :created_at, read_only: true, postprocess: true

#export(options = {}) ⇒ Object

rubocop:disable Metrics/AbcSize



47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/skull_island/resources/certificate.rb', line 47

def export(options = {})
  hash = { 'cert' => cert, 'key' => key }
  hash['snis'] = snis if snis && !snis.empty?
  hash['tags'] = tags unless tags.empty?
  hash['name'] = name if name
  [*options[:exclude]].each do |exclude|
    hash.delete(exclude.to_s)
  end
  [*options[:include]].each do |inc|
    hash[inc.to_s] = send(inc.to_sym)
  end
  hash.reject { |_, value| value.nil? }
end

#keyObject

The key property



13
# File 'lib/skull_island/resources/certificate.rb', line 13

property :key, required: true, validate: true

#modified_existing?Boolean

rubocop:enable Metrics/AbcSize

Returns:

  • (Boolean)


62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/skull_island/resources/certificate.rb', line 62

def modified_existing?
  return false unless new?

  # Find certs of the same "name"
  if name
    same_name = self.class.where(:name, name)

    existing = same_name.size == 1 ? same_name.first : nil
  end

  unless existing
    # Find certs of the same cert and key
    same_key = self.class.where(:key, key)

    existing = same_key.size == 1 ? same_key.first : nil
  end

  if existing
    @entity['id'] = existing.id
    save
  else
    false
  end
end

#nameObject

Simulates retrieving a #name property via a tag



88
89
90
# File 'lib/skull_island/resources/certificate.rb', line 88

def name
  metatags['name']
end

#name=(value) ⇒ Object

Simulates setting a #name property via a tag



93
94
95
# File 'lib/skull_island/resources/certificate.rb', line 93

def name=(value)
  add_meta('name', value.to_s)
end

#snisObject

The snis property



14
# File 'lib/skull_island/resources/certificate.rb', line 14

property :snis, validate: true

#tagsObject

The tags property



17
# File 'lib/skull_island/resources/certificate.rb', line 17

property :tags, validate: true, preprocess: true, postprocess: true