-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsessions.rb
58 lines (50 loc) · 1.55 KB
/
sessions.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
# Copyright (C) 2011 Marek Jelen
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
require 'bundler/setup'
require 'em-hiredis'
require 'goliath'
EventMachine.next_tick do
REDIS = EM::Hiredis.connect
end
class Session < Goliath::API
def response(env)
send("handle_#{env['REQUEST_METHOD'].downcase}".to_sym, env)
[200, {}, Goliath::Response::STREAMING]
end
def handle_get(env)
action = REDIS.hget(env['HTTP_X_APPID'], env['REQUEST_URI'])
action.callback do |value|
env.stream_send(value)
env.stream_close
end
action.errback do |error|
puts error
env.stream_send('FAIL')
env.stream_close
end
end
def handle_put(env)
action = REDIS.hset(env['HTTP_X_APPID'], env['REQUEST_URI'], env['rack.input'].read)
action.callback do
env.stream_send('OK')
env.stream_close
end
action.errback do |error|
puts error
env.stream_send('FAIL')
env.stream_close
end
end
end