-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
53 lines (50 loc) · 1.32 KB
/
app.js
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
var express = require("express")
var tools = require("./routes")
var app = express();
app.use(express.json())
app.get("/", (req,res) => {
res.sendFile(__dirname + "/public/index.html")
})
app.post("/api/query", (req,res) => {
tools.query(req.body.query)
.then((d) => {
res.send(d)
})
})
app.post("/api/tournament/tabs", (req,res) => {
tools.getTabs(req.body.tourn_id)
.then((d) => {
res.send(d)
})
})
app.post("/api/tournament/events", (req,res) => {
tools.fetchEvents(req.body.tourn_id)
.then((d) => {
res.send(d)
})
})
app.post("/api/tournament/pairings", (req,res) => {
tools.getPairings(req.body.tourn_id,req.body.round_id)
.then((d) => {
res.send(d)
})
})
app.post("/api/tournament/rounds", (req,res) => {
tools.getRounds(req.body.tourn_id,req.body.event_id)
.then((d) => {
res.send(d)
})
})
app.post("/api/tournament/paradigm", (req,res) => {
tools.getParadigm(req.body.tourn_id,req.body.judge_id)
.then((d) => {
res.send(d)
})
})
app.post("/api/tournament/get", (req,res) => {
tools.getTournament(req.body.tourn_id)
.then((d) => {
res.send(d)
})
})
app.listen(3000, () => console.log("Listening on port 3000!"))