Module: Rubydora::RestApiClient
- Extended by:
- ActiveSupport::Concern
- Includes:
- ActiveSupport::Benchmarkable, FedoraUrlHelpers
- Included in:
- Repository
- Defined in:
- lib/rubydora/rest_api_client.rb
Overview
Provide low-level access to the Fedora Commons REST API
Constant Summary
collapse
- VALID_CLIENT_OPTIONS =
[:user, :password, :timeout, :open_timeout, :ssl_client_cert, :ssl_client_key]
FedoraUrlHelpers::API_DOCUMENTATION
Instance Method Summary
collapse
#datastream_content_url, #datastream_history_url, #datastream_url, #dissemination_url, #export_object_url, #find_objects_url, #new_object_relationship_url, #next_pid_url, #object_relationship_url, #object_url, #object_versions_url, #object_xml_url, #url_for, #validate_object_url
Instance Method Details
#add_datastream(options = {}) ⇒ String
275
276
277
278
279
280
281
282
283
284
285
|
# File 'lib/rubydora/rest_api_client.rb', line 275
def add_datastream options = {}
query_options = options.dup
pid = query_options.delete(:pid)
dsid = query_options.delete(:dsid)
file = query_options.delete(:content)
content_type = query_options.delete(:content_type) || query_options[:mimeType] || (MIME::Types.type_for(file.path).first if file.respond_to? :path) || 'application/octet-stream'
run_hook :before_add_datastream, :pid => pid, :dsid => dsid, :file => file, :options => options
client[datastream_url(pid, dsid, query_options)].post file, :content_type => content_type.to_s, :multipart => true
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#add_relationship(options = {}) ⇒ String
345
346
347
348
349
350
351
352
|
# File 'lib/rubydora/rest_api_client.rb', line 345
def add_relationship options = {}
query_options = options.dup
pid = query_options.delete(:pid) || query_options[:subject]
run_hook :before_add_relationship, :pid => pid, :options => options
client[new_object_relationship_url(pid, query_options)].post nil
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#client(config = {}) ⇒ RestClient::Resource
Create an authorized HTTP client for the Fedora REST API TODO trap for these errors specifically: RestClient::Request::Unauthorized, Errno::ECONNREFUSED
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# File 'lib/rubydora/rest_api_client.rb', line 48
def client config = {}
client_config = self.config.merge(config)
client_config.symbolize_keys!
if config.empty? or @config_hash.nil? or (client_config.hash == @config_hash)
@config_hash = client_config.hash
url = client_config[:url]
client_config.delete_if { |k,v| not VALID_CLIENT_OPTIONS.include?(k) }
client_config[:open_timeout] ||= client_config[:timeout]
@client ||= RestClient::Resource.new(url, client_config)
else
raise ArgumentError, "Attemping to re-initialize #{self.class}#client with different configuration parameters"
end
end
|
#datastream(options = {}) ⇒ String
Also known as:
datastreams
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
# File 'lib/rubydora/rest_api_client.rb', line 191
def datastream options = {}
query_options = options.dup
pid = query_options.delete(:pid)
dsid = query_options.delete(:dsid)
query_options[:format] ||= 'xml'
val = nil
message = dsid.nil? ? "Loaded datastream list for #{pid}" : "Loaded datastream #{pid}/#{dsid}"
benchmark message, :level=>:debug do
val = client[datastream_url(pid, dsid, query_options)].get
end
val
rescue RestClient::Unauthorized => e
logger.error "Unauthorized at #{client.url}/#{datastream_url(pid, dsid, query_options)}"
raise e
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#datastream_dissemination(options = {}, &block_response) ⇒ String
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
# File 'lib/rubydora/rest_api_client.rb', line 253
def datastream_dissemination options = {}, &block_response
query_options = options.dup
pid = query_options.delete(:pid)
dsid = query_options.delete(:dsid)
method = query_options.delete(:method)
method ||= :get
raise self.class.name + "#datastream_dissemination requires a DSID" unless dsid
if block_given?
resource = safe_subresource(datastream_content_url(pid, dsid, query_options), :block_response => block_response)
else
resource = client[datastream_content_url(pid, dsid, query_options)]
end
resource.send(method)
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#datastream_versions(options = {}) ⇒ String
Also known as:
datastream_history
232
233
234
235
236
237
238
239
240
241
242
243
244
|
# File 'lib/rubydora/rest_api_client.rb', line 232
def datastream_versions options = {}
query_options = options.dup
pid = query_options.delete(:pid)
dsid = query_options.delete(:dsid)
raise ArgumentError, "Must supply dsid" unless dsid
query_options[:format] ||= 'xml'
client[datastream_history_url(pid, dsid, query_options)].get
rescue RestClient::ResourceNotFound => e
return nil
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#dissemination(options = {}, &block_response) ⇒ String
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
|
# File 'lib/rubydora/rest_api_client.rb', line 373
def dissemination options = {}, &block_response
query_options = options.dup
pid = query_options.delete(:pid)
sdef = query_options.delete(:sdef)
method = query_options.delete(:method)
query_options[:format] ||= 'xml' unless pid and sdef and method
if block_given?
resource = safe_subresource(dissemination_url(pid,sdef,method,query_options), :block_response => block_response)
else
resource = client[dissemination_url(pid,sdef,method,query_options)]
end
resource.get
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#export(options = {}) ⇒ String
122
123
124
125
126
127
128
|
# File 'lib/rubydora/rest_api_client.rb', line 122
def export options = {}
query_options = options.dup
pid = query_options.delete(:pid)
client[export_object_url(pid, query_options)].get
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#find_objects(options = {}, &block_response) ⇒ String
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# File 'lib/rubydora/rest_api_client.rb', line 76
def find_objects options = {}, &block_response
query_options = options.dup
raise ArgumentError,"Cannot have both :terms and :query parameters" if query_options[:terms] and query_options[:query]
query_options[:resultFormat] ||= 'xml'
resource = client[find_objects_url(query_options)]
if block_given?
resource.query_options[:block_response] = block_response
end
return resource.get
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#ingest(options = {}) ⇒ String
107
108
109
110
111
112
113
114
115
116
|
# File 'lib/rubydora/rest_api_client.rb', line 107
def ingest options = {}
query_options = options.dup
pid = query_options.delete(:pid) || 'new'
file = query_options.delete(:file)
assigned_pid = client[object_url(pid, query_options)].post file, :content_type => 'text/xml'
run_hook :after_ingest, :pid => assigned_pid, :file => file, :options => options
assigned_pid
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#modify_datastream(options = {}) ⇒ String
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
# File 'lib/rubydora/rest_api_client.rb', line 292
def modify_datastream options = {}
query_options = options.dup
pid = query_options.delete(:pid)
dsid = query_options.delete(:dsid)
file = query_options.delete(:content)
content_type = query_options.delete(:content_type) || query_options[:mimeType] || (MIME::Types.type_for(file.path).first if file.respond_to? :path) || 'application/octet-stream'
rest_client_options = {}
if file
rest_client_options[:multipart] = true
rest_client_options[:content_type] = content_type
end
run_hook :before_modify_datastream, :pid => pid, :dsid => dsid, :file => file, :content_type => content_type, :options => options
client[datastream_url(pid, dsid, query_options)].put(file, rest_client_options)
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#modify_object(options = {}) ⇒ String
134
135
136
137
138
139
140
141
|
# File 'lib/rubydora/rest_api_client.rb', line 134
def modify_object options = {}
query_options = options.dup
pid = query_options.delete(:pid)
run_hook :before_modify_object, :pid => pid, :options => options
client[object_url(pid, query_options)].put nil
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#next_pid(options = {}) ⇒ String
65
66
67
68
69
70
71
|
# File 'lib/rubydora/rest_api_client.rb', line 65
def next_pid options = {}
query_options = options.dup
query_options[:format] ||= 'xml'
client[next_pid_url(query_options)].post nil
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#object(options = {}) ⇒ String
94
95
96
97
98
99
100
101
|
# File 'lib/rubydora/rest_api_client.rb', line 94
def object options = {}
query_options = options.dup
pid = query_options.delete(:pid)
query_options[:format] ||= 'xml'
client[object_url(pid, query_options)].get
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#object_versions(options = {}) ⇒ String
160
161
162
163
164
165
166
167
168
|
# File 'lib/rubydora/rest_api_client.rb', line 160
def object_versions options = {}
query_options = options.dup
pid = query_options.delete(:pid)
query_options[:format] ||= 'xml'
raise ArgumentError, "Must have a pid" unless pid
client[object_versions_url(pid, query_options)].get
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#object_xml(options = {}) ⇒ String
174
175
176
177
178
179
180
181
182
|
# File 'lib/rubydora/rest_api_client.rb', line 174
def object_xml options = {}
query_options = options.dup
pid = query_options.delete(:pid)
raise ArgumentError, "Missing required parameter :pid" unless pid
query_options[:format] ||= 'xml'
client[object_xml_url(pid, query_options)].get
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#purge_datastream(options = {}) ⇒ String
317
318
319
320
321
322
323
324
325
|
# File 'lib/rubydora/rest_api_client.rb', line 317
def purge_datastream options = {}
query_options = options.dup
pid = query_options.delete(:pid)
dsid = query_options.delete(:dsid)
run_hook :before_purge_datastream, :pid => pid, :dsid => dsid
client[datastream_url(pid, dsid, query_options)].delete
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#purge_object(options = {}) ⇒ String
147
148
149
150
151
152
153
154
|
# File 'lib/rubydora/rest_api_client.rb', line 147
def purge_object options = {}
query_options = options.dup
pid = query_options.delete(:pid)
run_hook :before_purge_object, :pid => pid, :options => options
client[object_url(pid, query_options)].delete
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#purge_relationship(options = {}) ⇒ String
358
359
360
361
362
363
364
365
|
# File 'lib/rubydora/rest_api_client.rb', line 358
def purge_relationship options = {}
query_options = options.dup
pid = query_options.delete(:pid) || query_options[:subject]
run_hook :before_purge_relationship, :pid => pid, :options => options
client[object_relationship_url(pid, query_options)].delete
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#relationships(options = {}) ⇒ String
331
332
333
334
335
336
337
338
339
|
# File 'lib/rubydora/rest_api_client.rb', line 331
def relationships options = {}
query_options = options.dup
pid = query_options.delete(:pid) || query_options[:subject]
raise ArgumentError, "Missing required parameter :pid" unless pid
query_options[:format] ||= 'xml'
client[object_relationship_url(pid, query_options)].get
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|
#safe_subresource(subresource, options = Hash.new) ⇒ Object
391
392
393
394
395
396
397
398
399
400
|
# File 'lib/rubydora/rest_api_client.rb', line 391
def safe_subresource(subresource, options=Hash.new)
url = client.concat_urls(client.url, subresource)
options = client.options.dup.merge! options
block = client.block
if block
client.class.new(url, options, &block)
else
client.class.new(url, options)
end
end
|
#set_datastream_options(options = {}) ⇒ String
217
218
219
220
221
222
223
224
225
|
# File 'lib/rubydora/rest_api_client.rb', line 217
def set_datastream_options options = {}
query_options = options.dup
pid = query_options.delete(:pid)
dsid = query_options.delete(:dsid)
run_hook :before_set_datastream_options, :pid => pid, :dsid => dsid, :options => options
client[datastream_url(pid, dsid, query_options)].put nil
rescue Exception => exception
rescue_with_handler(exception) || raise
end
|