Class: Dor::Configuration

Inherits:
Confstruct::Configuration
  • Object
show all
Includes:
ActiveSupport::Callbacks
Defined in:
lib/dor/config.rb

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Configuration

Returns a new instance of Configuration.



12
13
14
15
# File 'lib/dor/config.rb', line 12

def initialize(*args)
  super *args
  run_callbacks(:initialize) { }
end

Instance Method Details

#autoconfigure(url, cert_file = Config.ssl.cert_file, key_file = Config.ssl.key_file, key_pass = Config.ssl.key_pass) ⇒ Object



32
33
34
35
36
# File 'lib/dor/config.rb', line 32

def autoconfigure(url, cert_file = Config.ssl.cert_file, key_file = Config.ssl.key_file, key_pass = Config.ssl.key_pass)
  client = make_rest_client(url, cert_file, key_file, key_pass)
  config = Confstruct::Configuration.symbolize_hash JSON.parse(client.get(accept: 'application/json'))
  configure(config)
end

#configure(*args) ⇒ Object

Call the super method with callbacks and with $VERBOSE temporarily disabled



18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/dor/config.rb', line 18

def configure(*args)
  result = self
  temp_verbose = $VERBOSE
  $VERBOSE = nil
  begin
    run_callbacks :configure do
      result = super(*args)
    end
  ensure
    $VERBOSE = temp_verbose
  end
  result
end

#default_ssl_cert_storeObject



137
138
139
# File 'lib/dor/config.rb', line 137

def default_ssl_cert_store
  @default_ssl_cert_store ||= RestClient::Request.default_ssl_cert_store
end

#fedora_configObject



120
121
122
123
124
125
126
127
# File 'lib/dor/config.rb', line 120

def fedora_config
  fedora_uri = URI.parse(fedora.url)
  connection_opts = { :url => fedora.safeurl, :user => fedora_uri.user, :password => fedora_uri.password }
  connection_opts[:ssl_client_cert] = OpenSSL::X509::Certificate.new(File.read(ssl.cert_file)) if ssl.cert_file.present?
  connection_opts[:ssl_client_key] = OpenSSL::PKey::RSA.new(File.read(ssl.key_file), ssl.key_pass) if ssl.key_file.present?
  connection_opts[:ssl_cert_store] = default_ssl_cert_store
  connection_opts
end

#init(*args) ⇒ Object

Act like an ActiveFedora.configurator



118
# File 'lib/dor/config.rb', line 118

def init(*args); end

#make_rest_client(url, cert = Config.ssl.cert_file, key = Config.ssl.key_file, pass = Config.ssl.key_pass) ⇒ Object



43
44
45
46
47
48
# File 'lib/dor/config.rb', line 43

def make_rest_client(url, cert = Config.ssl.cert_file, key = Config.ssl.key_file, pass = Config.ssl.key_pass)
  params = {}
  params[:ssl_client_cert] = OpenSSL::X509::Certificate.new(File.read(cert)) if cert
  params[:ssl_client_key]  = OpenSSL::PKey::RSA.new(File.read(key), pass) if key
  RestClient::Resource.new(url, params)
end

#make_solr_connection(add_opts = {}) ⇒ Object



52
53
54
55
56
57
# File 'lib/dor/config.rb', line 52

def make_solr_connection(add_opts = {})
  opts = Dor::Config.solr.opts.merge(add_opts).merge(
    :url => Dor::Config.solr.url
  )
  ::RSolr.connect(opts)
end

#predicate_configObject



133
134
135
# File 'lib/dor/config.rb', line 133

def predicate_config
  YAML.load(File.read(File.expand_path('../../../config/predicate_mappings.yml', __FILE__)))
end

#sanitizeObject



39
40
41
# File 'lib/dor/config.rb', line 39

def sanitize
  dup
end

#solr_configObject



129
130
131
# File 'lib/dor/config.rb', line 129

def solr_config
  { :url => solr.url }
end