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
# File 'lib/active_fedora/fedora.rb', line 3

def initialize(config)
  @config = config
end

Instance Method Details

#authorized_connectionObject



74
75
76
77
78
79
80
# File 'lib/active_fedora/fedora.rb', line 74

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



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

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

#build_connectionObject



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

def build_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))
  CachingConnection.new(authorized_connection, omit_ldpr_interaction_model: true)
end

#clean_connectionObject



34
35
36
# File 'lib/active_fedora/fedora.rb', line 34

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

#connectionObject



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

def connection
  @connection ||= begin
    init_base_path
    build_connection
  end
end

#hostObject



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

def host
  @config[:url]
end

#init_base_pathObject

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



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

def init_base_path
  return if @initialized
  connection = build_connection

  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
  @initialized = true
  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
  @initialized = connection.put(root_resource_path, BLANK).success?
end

#ldp_resource_serviceObject



38
39
40
# File 'lib/active_fedora/fedora.rb', line 38

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

#passwordObject



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

def password
  @config[:password]
end

#root_resource_pathObject

Remove a leading slash from the base_path



62
63
64
# File 'lib/active_fedora/fedora.rb', line 62

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

#ssl_optionsObject



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

def ssl_options
  @config[:ssl]
end

#userObject



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

def user
  @config[:user]
end