-
Notifications
You must be signed in to change notification settings - Fork 0
/
controllers.go
95 lines (70 loc) · 1.54 KB
/
controllers.go
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
package main
import (
"github.com/kataras/iris"
"log"
)
type OrderAPI struct {
*iris.Context
}
type OrderItemAPI struct {
*iris.Context
}
type TransactionAPI struct {
*iris.Context
}
func (request OrderAPI) Post() {
order := Order{}
request.ReadJSON(&order)
err := order.Save()
if err != nil {
log.Print(err)
request.JSON(iris.StatusBadRequest,iris.Map{"err": err.Error()})
return
}
request.JSON(iris.StatusOK, iris.Map{"id": order.Id})
}
func (request OrderItemAPI) Post() {
order := Order{}
err := order.FindId(request.Param("id"))
if err != nil {
log.Print(err)
request.EmitError(iris.StatusNotFound)
return
}
orderItem := OrderItem{}
request.ReadJSON(&orderItem)
err = orderItem.Save(order.Id)
if err != nil {
log.Print(err)
request.JSON(iris.StatusBadRequest,iris.Map{"err": err.Error()})
return
}
request.Text(iris.StatusOK, "")
}
func (request OrderAPI) Get() {
order := Order{}
err := order.GetOrder(request.Param("id"))
if err != nil {
log.Print(err)
request.EmitError(iris.StatusNotFound)
return
}
request.ReadJSON(&order)
request.JSON(iris.StatusOK, order)
}
func (request TransactionAPI) Post() {
order := Order{}
err := order.FindId(request.Param("id"))
if err != nil {
log.Print(err)
request.EmitError(iris.StatusNotFound)
return
}
transaction := Transaction{}
request.ReadJSON(&transaction)
err = transaction.Save(order.Id)
if err != nil {
request.JSON(iris.StatusBadRequest,iris.Map{"err": err.Error()})
}
request.JSON(iris.StatusOK, iris.Map{"id": transaction.Id})
}