summaryrefslogtreecommitdiff
path: root/lib/endpoint.rb
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2019-09-03 13:45:36 +0200
committerChristoph Helma <helma@in-silico.ch>2019-09-03 13:45:36 +0200
commitd1032e4f40d9fbb212e85e0db4f0ecd2e8ac9a88 (patch)
tree48922d60d750839dacd5d0a4a6e50ea3fe68da63 /lib/endpoint.rb
parent5bb4c24c6cfc1ddfae14eb9543b283baae2d75be (diff)
parenta84d9eabf1b921086a688f81df28b0f21ba4df19 (diff)
development merged, git links in FAQ.md fixed1.4.0
Diffstat (limited to 'lib/endpoint.rb')
-rw-r--r--lib/endpoint.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/endpoint.rb b/lib/endpoint.rb
new file mode 100644
index 0000000..66b7ab2
--- /dev/null
+++ b/lib/endpoint.rb
@@ -0,0 +1,23 @@
+# Get a list of all endpoints
+# @param [Header] Accept one of text/uri-list,
+# @return [text/uri-list] list of all prediction models
+get "/api/endpoint/?" do
+ models = Model::Validation.all
+ endpoints = models.collect{|m| m.endpoint}.uniq
+ case @accept
+ when "text/uri-list"
+ return endpoints.join("\n") + "\n"
+ when "application/json"
+ return endpoints.to_json
+ else
+ halt 400, "Mime type #{@accept} is not supported."
+ end
+end
+
+get "/api/endpoint/:endpoint/?" do
+ models = Model::Validation.where(endpoint: params[:endpoint])
+ list = []
+ models.each{|m| list << {m.species => uri("/api/model/#{m.id}")} }
+ halt 404, "Endpoint: #{params[:endpoint]} not found." if models.blank?
+ return list.to_json
+end