summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormr <mr@mrautenberg.de>2011-02-10 09:20:20 +0100
committermr <mr@mrautenberg.de>2011-02-10 09:20:20 +0100
commit03795f02e06b3a9c635abf92c112a9dec142364b (patch)
treebf628ab1fd342d61c945ca2ab40128c1ae0ca695 /lib
parent766d0eccb1a5d9f3016d9d85469dc68641b779ff (diff)
A&A fixes
Diffstat (limited to 'lib')
-rw-r--r--lib/helper.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/helper.rb b/lib/helper.rb
index 6ca3901..415ca11 100644
--- a/lib/helper.rb
+++ b/lib/helper.rb
@@ -9,7 +9,7 @@ helpers do
end
elsif !env["session"] && subjectid
unless authorized?(subjectid)
- LOGGER.debug "URI not authorized: #{request.env['rack.url_scheme']}://#{request.env['HTTP_HOST']}#{request.env['REQUEST_URI']} with request: #{request.env['REQUEST_METHOD']}"
+ LOGGER.debug "URI not authorized: clean: " + clean_uri("#{request.env['rack.url_scheme']}://#{request.env['HTTP_HOST']}#{request.env['REQUEST_URI']}").to_s + " full: #{request.env['rack.url_scheme']}://#{request.env['HTTP_HOST']}#{request.env['REQUEST_URI']} with request: #{request.env['REQUEST_METHOD']}"
raise OpenTox::NotAuthorizedError.new "Not authorized"
end
else
@@ -28,9 +28,11 @@ helpers do
#cleans URI from querystring and file-extension. Sets port 80 to emptystring
# @param [String] uri
def clean_uri(uri)
- uri = uri.sub(" ", "%20")
+ uri = uri.sub(" ", "%20") #dirty hacks => to fix
+ uri = uri[0,uri.index("InChI=")]
+
out = URI.parse(uri)
- out.path = out.path[0, out.path.index(/[0-9]/)] if out.path.index(/[0-9]/) #cuts after id for a&a
+ out.path = out.path[0, out.path.length - (out.path.reverse.rindex(/\/{1}\d+\/{1}/))] if out.path.index(/\/{1}\d+\/{1}/) #cuts after /id/ for a&a
"#{out.scheme}:" + (out.port != 80 ? out.port : "") + "//#{out.host}#{out.path.chomp('/')}"
end