Class: SkullIsland::Resources::Certificate

Inherits:
SkullIsland::Resource show all
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 inherited from SkullIsland::Resource

all, 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, #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) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/skull_island/resources/certificate.rb', line 16

def self.batch_import(data, verbose: false, test: false)
  raise(Exceptions::InvalidArguments) unless data.is_a?(Array)

  data.each_with_index do |resource_data, index|
    resource = new
    resource.cert = resource_data['cert']
    resource.key = resource_data['key']
    resource.snis = resource_data['snis'] if resource_data['snis']
    resource.tags = resource_data['tags'] if resource_data['tags']
    resource.import_update_or_skip(index: index, verbose: verbose, test: test)
  end
end

Instance Method Details

#certObject

The cert property



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

property :cert, required: true, validate: true

#created_atObject

The created_at property



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

property :created_at, read_only: true, postprocess: true

#export(options = {}) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/skull_island/resources/certificate.rb', line 29

def export(options = {})
  hash = { 'cert' => cert, 'key' => key }
  hash['snis'] = snis if snis && !snis.empty?
  hash['tags'] = tags if tags
  [*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



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

property :key, required: true, validate: true

#modified_existing?Boolean

Returns:

  • (Boolean)


42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/skull_island/resources/certificate.rb', line 42

def modified_existing?
  return false unless new?

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

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

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

#snisObject

The snis property



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

property :snis, validate: true

#tagsObject

The tags property



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

property :tags, validate: true