-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapi.rb
75 lines (61 loc) · 1.56 KB
/
api.rb
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
require 'roda'
require 'primalize'
require 'models/playground'
class API < Roda
plugin :json, classes: [Hash, Array, Primalize::Many]
plugin :json_parser, parser: proc { |string| JSON.parse(string, symbolize_names: true) }
plugin :empty_root
plugin :all_verbs
route do |r|
r.on 'playgrounds' do
r.on :app_id do |id|
playground = Playground.find(id)
r.get do
PlaygroundResponse.new(playground: playground)
end
r.put do
playground.update r.params[:playground]
PlaygroundResponse.new(playground: playground)
end
end
r.post do
playground = Playground.new(r.params[:playground])
if playground.save
PlaygroundResponse.new(playground: playground)
else
PlaygroundErrorResponse.new(errors: playground.errors.to_a)
end
end
PlaygroundsResponse.new(
playgrounds: Playground.all,
)
end
end
class PlaygroundSerializer < Primalize::Single
attributes(
id: string,
name: optional(string),
html: string,
css: string,
ruby: string,
)
end
class PlaygroundsResponse < Primalize::Many
attributes(
playgrounds: enumerable(PlaygroundSerializer),
)
end
class PlaygroundResponse < Primalize::Many
attributes(
playground: PlaygroundSerializer,
)
end
class ErrorSerializer < Primalize::Single
attributes(message: string)
end
class ErrorResponse < Primalize::Many
attributes(
errors: enumerable(ErrorSerializer),
)
end
end