-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.rb
165 lines (149 loc) · 3.59 KB
/
main.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
require 'sinatra'
require 'memcached'
$cache = Memcached.new("localhost:11211")
require File.join(File.dirname(__FILE__), 'document')
Document.root_path = File.join(File.dirname(File.expand_path(__FILE__)), 'db', Sinatra::Application.environment.to_s)
class App < Sinatra::Application
set :server, %w[unicorn]
if File.exists?('credentials.yml') and settings.environment != :test
use Rack::Auth::Basic, "Restricted Area" do |username, password|
[username, password] == YAML::load(File.open 'credentials.yml')
end
end
def json_attributes
begin
JSON.parse(request.body.read.to_s)
rescue
false
end
end
before do
content_type 'application/json'
end
get '/documents/:id' do |id|
begin
document = $cache.get("document_#{id}")
rescue Memcached::NotFound
begin
document = Document.find id
$cache.set "document_#{id}", document.to_json
document.to_json
rescue GitDocument::Errors::NotFound
not_found
end
end
end
post '/documents' do
return 400 unless attributes = json_attributes
if attributes["id"]
begin
document = Document.create! attributes
$cache.set "document_#{id}", document.to_json
document.to_json
rescue
409
end
else
406
end
end
put '/documents/:id' do |id|
return 400 unless attributes = json_attributes
begin
document = Document.find id
document.update_attributes(attributes)
$cache.set "document_#{id}", document.to_json
document.to_json
rescue
not_found
end
end
delete '/documents/:id' do |id|
begin
document = Document.find id
document.destroy
$cache.delete("document_#{id}")
document.to_json
rescue
not_found
end
end
get '/documents/:id/history' do |id|
begin
document = Document.find id
document.history.to_json
rescue
not_found
end
end
get '/documents/:id/version/:commit_id' do |id, commit_id|
begin
document = Document.find id
version = document.version(commit_id)
version.to_json
rescue
not_found
end
end
post '/documents/:id/fork/:new_id' do |id, new_id|
begin
document = Document.find id
fork = document.create_fork(new_id)
fork.to_json
rescue
not_found
end
end
put '/documents/:id/merge/:from_id' do |id, from_id|
attributes = json_attributes || {}
begin
document = Document.find id
if attributes["user_id"]
document.create_attribute :user_id
document.user_id = attributes["user_id"]
end
if document.merge!(from_id)
document.reload
document.to_json
else
409
end
rescue
not_found
end
end
get '/documents/:id/pending_merges' do |id|
begin
document = Document.find id
document.pending_merges.to_json
rescue
not_found
end
end
put '/documents/:id/resolve_conflicts/:from_id' do |id, from_id|
return 400 unless attributes = json_attributes
begin
document = Document.find id
if attributes["user_id"]
document.create_attribute :user_id
document.user_id = attributes["user_id"]
end
if document.resolve_conflicts!(from_id, attributes)
document.reload
document.to_json
else
409
end
rescue
not_found
end
end
get '/documents/:id/merge_needed/:from_id' do |id, from_id|
begin
document = Document.find id
document.merge_needed?(from_id).to_json
rescue
not_found
end
end
end