-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathmock_subaccounts.go
127 lines (107 loc) · 3.21 KB
/
mock_subaccounts.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
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
package mailgun
import (
"net/http"
"github.com/go-chi/chi/v5"
)
func (ms *mockServer) addSubaccountRoutes(r chi.Router) {
ms.subaccountList = append(ms.subaccountList, Subaccount{
Id: "enabled.subaccount",
Name: "mailgun.test",
Status: "enabled",
}, Subaccount{
Id: "disabled.subaccount",
Name: "mailgun.test",
Status: "disabled",
})
r.Get("/accounts/subaccounts", ms.listSubaccounts)
r.Post("/accounts/subaccounts", ms.createSubaccount)
r.Get("/accounts/subaccounts/{subaccountID}", ms.getSubaccount)
r.Post("/accounts/subaccounts/{subaccountID}/enable", ms.enableSubaccount)
r.Post("/accounts/subaccounts/{subaccountID}/disable", ms.disableSubaccount)
}
func (ms *mockServer) listSubaccounts(w http.ResponseWriter, r *http.Request) {
defer ms.mutex.Unlock()
ms.mutex.Lock()
var list subaccountsListResponse
for _, subaccount := range ms.subaccountList {
list.Items = append(list.Items, subaccount)
}
skip := stringToInt(r.FormValue("skip"))
limit := stringToInt(r.FormValue("limit"))
if limit == 0 {
limit = 100
}
if skip > len(list.Items) {
skip = len(list.Items)
}
end := limit + skip
if end > len(list.Items) {
end = len(list.Items)
}
// If we are at the end of the list
if skip == end {
toJSON(w, subaccountsListResponse{
Total: len(list.Items),
Items: []Subaccount{},
})
return
}
toJSON(w, subaccountsListResponse{
Total: len(list.Items),
Items: list.Items[skip:end],
})
}
func (ms *mockServer) getSubaccount(w http.ResponseWriter, r *http.Request) {
defer ms.mutex.Unlock()
ms.mutex.Lock()
for _, s := range ms.subaccountList {
if s.Id == chi.URLParam(r, "subaccountID") {
toJSON(w, SubaccountResponse{Item: s})
return
}
}
w.WriteHeader(http.StatusNotFound)
toJSON(w, okResp{Message: "Not Found"})
}
func (ms *mockServer) createSubaccount(w http.ResponseWriter, r *http.Request) {
defer ms.mutex.Unlock()
ms.mutex.Lock()
ms.subaccountList = append(ms.subaccountList, Subaccount{
Id: "test",
Name: r.FormValue("name"),
Status: "active",
})
toJSON(w, okResp{Message: "Subaccount has been created"})
}
func (ms *mockServer) enableSubaccount(w http.ResponseWriter, r *http.Request) {
defer ms.mutex.Unlock()
ms.mutex.Lock()
for _, subaccount := range ms.subaccountList {
if subaccount.Id == chi.URLParam(r, "subaccountID") && subaccount.Status == "disabled" {
subaccount.Status = "enabled"
toJSON(w, SubaccountResponse{Item: subaccount})
return
}
if subaccount.Id == chi.URLParam(r, "subaccountID") && subaccount.Status == "enabled" {
toJSON(w, okResp{Message: "subaccount is already enabled"})
return
}
}
toJSON(w, okResp{Message: "Not Found"})
}
func (ms *mockServer) disableSubaccount(w http.ResponseWriter, r *http.Request) {
defer ms.mutex.Unlock()
ms.mutex.Lock()
for _, subaccount := range ms.subaccountList {
if subaccount.Id == chi.URLParam(r, "subaccountID") && subaccount.Status == "enabled" {
subaccount.Status = "disabled"
toJSON(w, SubaccountResponse{Item: subaccount})
return
}
if subaccount.Id == chi.URLParam(r, "subaccountID") && subaccount.Status == "disabled" {
toJSON(w, okResp{Message: "subaccount is already disabled"})
return
}
}
toJSON(w, okResp{Message: "Not Found"})
}