-
Notifications
You must be signed in to change notification settings - Fork 4
/
todos.rb
47 lines (39 loc) · 872 Bytes
/
todos.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
require 'sinatra'
require 'json'
require 'rack/contrib'
class Todos < Sinatra::Base
enable :static
set :public, 'public'
use Rack::PostBodyContentTypeParser
def todos
@todos ||= DB.collection('todos')
end
def todo_as_json(todo)
{
:id => todo['_id'].to_s,
:title => todo['title'],
:isDone => todo['isDone']
}
end
get '/' do
redirect to('/index.html')
end
get '/todos' do
content_type :json
todos.find.map { |todo| todo_as_json(todo) }.to_json
end
post '/todos' do
id = todos.insert(
:title => params[:title],
:isDone => params[:isDone] == 'true',
:updatedAt => Time.now
)
todo = todos.find_one(id)
content_type :json
todo_as_json(todo).to_json
end
delete '/todos/:id' do
todos.remove({:_id => BSON::ObjectId(params[:id])})
200
end
end