forked from antirez/try.redis
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtry-redis.rb
260 lines (208 loc) · 6.05 KB
/
try-redis.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#!/usr/bin/env ruby
require 'logger'
require 'bundler'
require 'json'
Bundler.require(:default, ENV['RACK_ENV'])
require_relative 'namespace_tools'
REDIS_PORT = ENV['REDIS_PORT'] || 6379
REDIS_HOST = ENV['REDIS_HOST'] || 'localhost'
GROUPED_HELP_FILE = File.expand_path("redis-doc/grouped_help.json", File.dirname(__FILE__))
GROUPED_HELP = JSON.parse File.read(GROUPED_HELP_FILE)
def production?
ENV['RACK_ENV'] == 'production'
end
def development?
ENV['RACK_ENV'] == 'development'
end
def test?
ENV['RACK_ENV'] == 'test'
end
class TryRedis < Sinatra::Base
#see the logging for development mode
configure :development do
enable :logging
disable :dump_errors
set :session_secret, "MWRWTEYhNW10V2x3OXAuego="
end
enable :sessions
enable :static
set :public_folder, "public"
get("/") { haml :index }
get("/style.css") { sass :style }
get("/eval") do
if parameter_set?("session_id")
@session_id = params["session_id"].to_s
else
@session_id = session["session_id"].to_s
end
evaluate_redis(params["command"]).merge(:session_id => @session_id).to_json
end
include NamespaceTools
def parameter_set? attr
!params["session_id"].nil? &&
!params[attr].empty? &&
params["session_id"] != "null"
end
def internal_command(command, *args)
case command.downcase
when "namespace" then namespace
when "help" then help args.first
when "tutorial" then tutorial :reset
when /prev|previous/ then tutorial :previous
when "next" then tutorial :next
when /^t(\d+)/ then tutorial $1
end
end
def evaluate_redis(command)
# Attempt to parse the given command string.
argv =
begin
cli_split(command.to_s)
rescue Exception => e
return { "error" => e.message }
end
return { "error" => false } unless argv[0]
# Test if the command is an internal TryRedis command.
internal_result = internal_command(*argv)
return { "notification" => internal_result } if internal_result
begin
{ "response" => execute_redis(argv) }
rescue Exception => e
{ "error" => "(error) #{e.message}" }
end
end
def namespace
@session_id
end
def execute_redis(argv)
# Apply the current namespace to any fields that need it.
argv = parse_command(namespace, *argv)
# If command parser finds an error, return it
raise argv[:error] if argv.kind_of?(Hash) && argv[:error]
# Issue the default help text if the command was not recognized.
raise "I'm sorry, I don't recognize that command. #{help}" unless argv.kind_of? Array
if (err=throttle_commands(argv))
return err
end
# Connect to the Redis server.
raw_redis, redis = redis_connect
if (result = bypass(redis, raw_redis, argv))
result
else
# Send the command to Redis.
result = redis.public_send(*argv)
if INTEGER_COMMANDS.include?(argv[0])
result = "(integer) #{result}"
else
if FLATTEN_COMMANDS.include?(argv[0])
result = result.flatten
end
result = to_redis_output result, argv[0], argv[1]
end
result
end
ensure
begin
# Disconnect from the server.
redis.quit if redis
rescue Exception => e
STDERR.puts e.message
e.backtrace.each {|bt| STDERR.puts bt}
end
end
def bypass(redis, raw_redis, argv)
queue = "transactions-#{namespace}"
if argv.first == "multi"
raw_redis.del queue
raw_redis.rpush queue, 'multi'
return "OK"
elsif raw_redis.llen(queue).to_i >= 1
case argv.first
when 'discard'
raw_redis.del(queue)
'OK'
when 'exec'
# First will always be multi
commands = raw_redis.lrange(queue, 1, -1)
raw_redis.del(queue)
redis.multi
commands.map do |c|
cmd = JSON.parse(c)
redis.public_send(*cmd)
end
to_redis_output redis.exec, 'exec'
else
raw_redis.rpush queue, argv.to_json
'QUEUED'
end
elsif %w(discard exec).include? argv.first
raise "ERR #{argv.first.upcase} without MULTI"
end
end
def help(keyword = "")
if keyword && keyword[0] == "@"
return grouped_help(keyword[1..-1].downcase)
end
helpdocs[keyword.to_s.downcase]
end
def grouped_help group
GROUPED_HELP[group] || "No help for this group. Try one of #{GROUPED_HELP.keys*", "}."
end
def helpdocs
return @helpdocs if @helpdocs
raw_docs =
Dir["redis-doc/*.markdown"].map do |filename|
command = filename.scan(/redis-doc\/(.*).markdown/).first.first
doc = file_to_html(filename)
[ command, doc ]
end
cmds = raw_docs.map {|c, d| "<a href=\"#help\">#{c.upcase}</a>"}.sort.join(", ")
raw_docs << [ "", "Please type HELP for one of these commands: " + cmds ]
@helpdocs ||= Hash[*raw_docs.flatten]
end
def tutorial(index)
case index
when :reset
tutorial 1
when :previous
tutorial session[:tutorial].to_i - 1
when :next
tutorial session[:tutorial].to_i + 1
else
index = index.to_i
index = 0 unless tutorialdocs[index]
session[:tutorial] = index
doc = tutorialdocs[index]
if (1 ... tutorialdocs.count - 1).include? index
doc += '<p class="tutorial_next">Type <a href="#run">NEXT</a> to continue the tutorial.</p>'
end
doc
end
end
def tutorialdocs
@tutorialdocs ||=
Dir["tutorial/*.markdown"].sort.map do |filename|
file_to_html(filename)
end
end
def file_to_html(filename)
RDiscount.new(File.read(filename)).to_html
end
def redis_connect
logger = if test?
nil
else
Logger.new(File.join(File.dirname(__FILE__),'log','redis.log'))
end
if logger
logger.level = Logger::WARN
end
raw_redis = Redis.new(
:host => REDIS_HOST,
:port => REDIS_PORT,
:logger => logger
)
redis = Redis::Namespace.new namespace, redis: raw_redis
[raw_redis, redis]
end
end