-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.rb
85 lines (73 loc) · 2.01 KB
/
cli.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
require 'rest-client'
require 'json'
require 'highline/import'
require 'pry'
require 'awesome_print'
# NOTE: --host=localhost --port=9292
def parse_args(options = [])
options.inject({}) do |args, opt|
key, value = opt.split('=')
args[key] = value
args
end
end
HOST = parse_args(ARGV)['--host'] || 'localhost'
PORT = parse_args(ARGV)['--port'] || '9292'
URL = "http://#{HOST}:#{PORT}/"
def start_game
bet = 50
cmd = ""
while (cmd != 'q') do
question = "Enter command?" \
"(e - exit; stat - :status; delete - delete :game;" \
" c - create :game; set 10 - set bet; r - create :round; h - :hit;" \
" s - :stay; sp - :split; d - :double; sur - :surrender)"
cmd = ask question
response = case cmd
when 'e', 'exit'
break
when 'delete'
delete :game
when 'c', 'create'
post :game, bet: bet
when 'r', 'round'
post :round, bet: bet
when 'h', 'hit'
post :hit
when 's', 'stay'
post :stay
when 'sp', 'split'
post :split
when 'd', 'double'
post :double
when 'sur', 'surrender'
post :surrender
when 'stat', 'status'
get :status
when /^set\s\d*$/
bet = cmd.split[1].to_i
next
else next
end
ap parse_json(response)
end
end
def delete(action = :game, options = {})
request :delete, action, options
end
def post(action, options = {})
request :post, action, options
end
def get(action = :status, options = {})
request :get, action, options
end
def request(method, action, options = {})
params = { params: options, content_type: :json, accept: :json }
RestClient.send(method, URL + "#{action}.json", params)
rescue => err
err.response.body
end
def parse_json(result)
JSON.parse result
end
start_game