summaryrefslogtreecommitdiff
path: root/lib/opentox.rb
blob: f71eaa20de1fe3903ad5942f1eccd68a7bda0d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
require 'sinatra/base'
require "sinatra/reloader"
require File.join(ENV["HOME"],".opentox","config","default.rb")

ENV["RACK_ENV"] ||= "production"

module OpenTox

  # Base class for OpenTox services
  class Service < Sinatra::Base
    include Backend

    # use OpenTox error handling
    set :raise_errors, false
    set :show_exceptions, false
    set :static, false

    configure :development do
      register Sinatra::Reloader
    end

    before do
      request.content_type ? response['Content-Type'] = request.content_type : response['Content-Type'] = request.env['HTTP_ACCEPT']
    end

    # Attention: Error within tasks are catched by Task.create
    error do
      error = request.env['sinatra.error']
      if error.respond_to? :report
        body = error.report.to_turtle
      else
        response['Content-Type'] = "text/plain"
        body = error.message
        body += "\n#{error.backtrace}"
      end
      error.respond_to?(:http_code) ? code = error.http_code : code = 500
      halt code, body
    end

    # Default methods, may be overwritten by derived services
    # see http://jcalcote.wordpress.com/2008/10/16/put-or-post-the-rest-of-the-story/

    # Get a list of objects at the server
    get '/?' do
      FourStore.list request.env['HTTP_ACCEPT']
    end

    # Create a new URI, does not accept a payload (use put for this purpose)
    post '/?' do
      uri = uri(SecureRandom.uuid)
      FourStore.put uri, request.body.read, request.content_type
      response['Content-Type'] = "text/uri-list"
      uri
    end

    # Get resource representation
    get '/:id/?' do
      FourStore.get(uri("/#{params[:id]}"), request.env['HTTP_ACCEPT'])
    end

    # Modify (add rdf) a resource
    post '/:id/?' do
      FourStore.post uri("/#{params[:id]}"), request.body.read, request.content_type
    end

    # Create or updata a resource
    put '/:id/?' do
      FourStore.put uri("/#{params[:id]}"), request.body.read, request.content_type
    end

    # Delete a resource
    delete '/:id/?' do
      FourStore.delete uri("/#{params[:id]}")
    end

  end
end