Class: ActiveFedora::Fedora

Inherits:
Object
  • Object
show all
Defined in:
lib/active_fedora/fedora.rb

Constant Summary collapse

SLASH =
'/'.freeze
BLANK =
''.freeze

Instance Method Summary collapse

Constructor Details

#initialize(config) ⇒ Fedora

Returns a new instance of Fedora.



3
4
5
6
# File 'lib/active_fedora/fedora.rb', line 3

def initialize(config)
  @config = config
  init_base_path
end

Instance Method Details

#authorized_connectionObject



64
65
66
67
68
69
70
# File 'lib/active_fedora/fedora.rb', line 64

def authorized_connection
  options = {}
  options[:ssl] = ssl_options if ssl_options
  connection = Faraday.new(host, options)
  connection.basic_auth(user, password)
  connection
end

#base_pathObject



12
13
14
# File 'lib/active_fedora/fedora.rb', line 12

def base_path
  @config[:base_path] || '/'
end

#clean_connectionObject



36
37
38
# File 'lib/active_fedora/fedora.rb', line 36

def clean_connection
  @clean_connection ||= CleanConnection.new(connection)
end

#connectionObject



28
29
30
31
32
33
34
# File 'lib/active_fedora/fedora.rb', line 28

def connection
  # The InboundRelationConnection does provide more data, useful for
  # things like ldp:IndirectContainers, but it's imposes a significant
  # performance penalty on every request
  #   @connection ||= InboundRelationConnection.new(CachingConnection.new(authorized_connection))
  @connection ||= CachingConnection.new(authorized_connection, omit_ldpr_interaction_model: true)
end

#hostObject



8
9
10
# File 'lib/active_fedora/fedora.rb', line 8

def host
  @config[:url]
end

#init_base_pathObject

Call this to create a Container Resource to act as the base path for this connection



48
49
50
51
52
53
54
55
56
57
# File 'lib/active_fedora/fedora.rb', line 48

def init_base_path
  connection.head(root_resource_path)
  ActiveFedora::Base.logger.info "Attempted to init base path `#{root_resource_path}`, but it already exists" if ActiveFedora::Base.logger
  false
rescue Ldp::NotFound
  unless host.downcase.end_with?("/rest")
    ActiveFedora::Base.logger.warn "Fedora URL (#{host}) does not end with /rest. This could be a problem. Check your fedora.yml config"
  end
  connection.put(root_resource_path, BLANK).success?
end

#ldp_resource_serviceObject



40
41
42
# File 'lib/active_fedora/fedora.rb', line 40

def ldp_resource_service
  @service ||= LdpResourceService.new(connection)
end

#passwordObject



20
21
22
# File 'lib/active_fedora/fedora.rb', line 20

def password
  @config[:password]
end

#root_resource_pathObject

Remove a leading slash from the base_path



60
61
62
# File 'lib/active_fedora/fedora.rb', line 60

def root_resource_path
  @root_resource_path ||= base_path.sub(SLASH, BLANK)
end

#ssl_optionsObject



24
25
26
# File 'lib/active_fedora/fedora.rb', line 24

def ssl_options
  @config[:ssl]
end

#userObject



16
17
18
# File 'lib/active_fedora/fedora.rb', line 16

def user
  @config[:user]
end