summaryrefslogtreecommitdiff
path: root/lib/opentox.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/opentox.rb')
-rw-r--r--lib/opentox.rb37
1 files changed, 36 insertions, 1 deletions
diff --git a/lib/opentox.rb b/lib/opentox.rb
index 8e20ab2..06026be 100644
--- a/lib/opentox.rb
+++ b/lib/opentox.rb
@@ -28,7 +28,8 @@ module OpenTox
end
before do
- @uri = uri(request.env['REQUEST_URI'])
+ @uri = uri(request.env['PATH_INFO']) # prevent /algorithm/algorithm in algorithm service
+ #@uri = uri(request.env['REQUEST_URI'])
get_subjectid if respond_to? :get_subjectid
# fix IE
request.env['HTTP_ACCEPT'] += ";text/html" if request.env["HTTP_USER_AGENT"]=~/MSIE/
@@ -45,6 +46,7 @@ module OpenTox
after do
Authorization.check_policy(@uri, @subjectid) if env['REQUEST_METHOD'].to_s == "POST" && $aa[:uri]
+
end
@@ -63,6 +65,39 @@ module OpenTox
@content_type = request.content_type
end
end
+
+ # format output according to accept header
+ def render object
+ if object.class == String
+ case @accept
+ when /text\/html/
+ content_type "text/html"
+ object.to_html
+ else
+ content_type 'text/uri-list'
+ object
+ end
+ elsif object.class == Array
+ content_type 'text/uri-list'
+ object.join "\n"
+ else
+ case @accept
+ when "application/rdf+xml"
+ content_type "application/rdf+xml"
+ object.to_rdfxml
+ when /text\/html/
+ content_type "text/html"
+ object.to_html
+ when /turtle/
+ content_type "text/turtle"
+ object.to_turtle
+ else
+ content_type "text/plain"
+ object.to_ntriples
+ end
+
+ end
+ end
end
# Attention: Error within tasks are catched by Task.run