forked from bcdice/bcdice-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.rb
118 lines (94 loc) · 2.14 KB
/
server.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
# frozen_string_literal: true
$:.unshift __dir__
$:.unshift File.join(__dir__, "bcdice", "src")
$:.unshift File.join(__dir__, "lib")
require 'sinatra'
require 'sinatra/jsonp'
require "sinatra/reloader" if development?
require 'bcdice_wrap'
require 'load_admin_info'
require 'exception'
module BCDiceAPI
VERSION = "0.9.0"
end
configure :production do
set :dump_errors, false
end
helpers do
def diceroll(system, command)
dicebot = BCDice::DICEBOTS[system]
if dicebot.nil?
raise UnsupportedDicebot
end
if command.nil? || command.empty?
raise CommandError
end
bcdice = BCDiceMaker.new.newBcDice
bcdice.setDiceBot(dicebot)
bcdice.setMessage(command)
bcdice.setCollectRandResult(true)
result, secret = bcdice.dice_command
if result.nil?
result, secret = bcdice.try_calc_command(command)
end
dices = bcdice.getRandResults.map {|dice| {faces: dice[1], value: dice[0]}}
detailed_rands = bcdice.detailed_rand_results.map do |dice|
dice = dice.to_h
dice[:faces] = dice[:sides]
dice.delete(:faces)
dice
end
if result.nil?
raise CommandError
end
{
ok: true,
result: result,
secret: secret,
dices: dices,
detailed_rands: detailed_rands,
}
end
end
before do
response.headers['Access-Control-Allow-Origin'] = '*'
end
get "/" do
"Hello. This is BCDice-API."
end
get "/v1/version" do
jsonp api: BCDiceAPI::VERSION, bcdice: BCDice::VERSION
end
get "/v1/admin" do
jsonp BCDiceAPI::ADMIN
end
get "/v1/systems" do
jsonp systems: BCDice::SYSTEMS
end
get "/v1/names" do
jsonp names: BCDice::NAMES
end
get "/v1/systeminfo" do
dicebot = BCDice::DICEBOTS[params[:system]]
if dicebot.nil?
raise UnsupportedDicebot
end
jsonp ok: true, systeminfo: dicebot.info
end
get "/v1/diceroll" do
jsonp diceroll(params[:system], params[:command])
end
not_found do
jsonp ok: false, reason: "not found"
end
error UnsupportedDicebot do
status 400
jsonp ok: false, reason: "unsupported dicebot"
end
error CommandError do
status 400
jsonp ok: false, reason: "unsupported command"
end
error do
jsonp ok: false
end