-
Notifications
You must be signed in to change notification settings - Fork 0
/
opsZone.go
175 lines (160 loc) · 5.8 KB
/
opsZone.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
package wildlifenl
import (
"context"
"net/http"
"github.com/UtrechtUniversity/wildlifenl/models"
"github.com/UtrechtUniversity/wildlifenl/stores"
"github.com/danielgtaylor/huma/v2"
)
type ZoneHolder struct {
Body *models.Zone `json:"zone"`
}
type ZonesHolder struct {
Body []models.Zone `json:"zones"`
}
type NewZoneInput struct {
Input
Body *models.ZoneRecord `json:"zone"`
}
type SetZoneSpeciesInput struct {
Input
Body *struct {
ZondeID string `json:"zoneID" format:"uuid" doc:"The ID of the zone."`
Species []struct {
SpeciesID string `json:"speciesID" format:"uuid" doc:"The ID of the species to set for this zone."`
}
}
}
type DeactivateZoneInput struct {
Input
ID string `path:"id" doc:"The ID of this zone." format:"uuid"`
}
type zoneOperations Operations
func newZoneOperations() *zoneOperations {
return &zoneOperations{Endpoint: "zone"}
}
func (o *zoneOperations) RegisterGet(api huma.API) {
name := "Get Zone By ID"
description := "Retrieve a specific zone by ID."
path := "/" + o.Endpoint + "/{id}"
scopes := []string{"administrator"}
method := http.MethodGet
huma.Register(api, huma.Operation{
OperationID: name, Summary: name, Path: path, Method: method, Tags: []string{o.Endpoint}, Description: generateDescription(description, scopes), Security: []map[string][]string{{"auth": scopes}},
}, func(ctx context.Context, input *struct {
ID string `path:"id" doc:"The ID of this zone." format:"uuid"`
}) (*ZoneHolder, error) {
zone, err := stores.NewZoneStore(relationalDB).Get(input.ID)
if err != nil {
return nil, handleError(err)
}
return &ZoneHolder{Body: zone}, nil
})
}
func (o *zoneOperations) RegisterGetAll(api huma.API) {
name := "Get All Zones"
description := "Retrieve all zones."
path := "/" + o.Endpoint + "s/"
scopes := []string{"administrator", "researcher"}
method := http.MethodGet
huma.Register(api, huma.Operation{
OperationID: name, Summary: name, Path: path, Method: method, Tags: []string{o.Endpoint}, Description: generateDescription(description, scopes), Security: []map[string][]string{{"auth": scopes}},
}, func(ctx context.Context, input *struct{}) (*ZonesHolder, error) {
zones, err := stores.NewZoneStore(relationalDB).GetAll()
if err != nil {
return nil, handleError(err)
}
return &ZonesHolder{Body: zones}, nil
})
}
func (o *zoneOperations) RegisterAdd(api huma.API) {
name := "Add Zone"
description := "Add a new zone."
path := "/" + o.Endpoint + "/"
scopes := []string{}
method := http.MethodPost
huma.Register(api, huma.Operation{
OperationID: name, Summary: name, Path: path, Method: method, Tags: []string{o.Endpoint}, Description: generateDescription(description, scopes), Security: []map[string][]string{{"auth": scopes}},
}, func(ctx context.Context, input *NewZoneInput) (*ZoneHolder, error) {
species, err := stores.NewZoneStore(relationalDB).Add(input.credential.UserID, input.Body)
if err != nil {
return nil, handleError(err)
}
return &ZoneHolder{Body: species}, nil
})
}
func (o *zoneOperations) RegisterGetMine(api huma.API) {
name := "Get My Zones"
description := "Retrieve my zones."
path := "/" + o.Endpoint + "s/me/"
scopes := []string{}
method := http.MethodGet
huma.Register(api, huma.Operation{
OperationID: name, Summary: name, Path: path, Method: method, Tags: []string{o.Endpoint}, Description: generateDescription(description, scopes), Security: []map[string][]string{{"auth": scopes}},
}, func(ctx context.Context, input *Input) (*ZonesHolder, error) {
zones, err := stores.NewZoneStore(relationalDB).GetByUser(input.credential.UserID)
if err != nil {
return nil, handleError(err)
}
return &ZonesHolder{Body: zones}, nil
})
}
func (o *zoneOperations) RegisterSetSpecies(api huma.API) {
name := "Set Zone Species"
description := "Set the species for which this zone should create alarms."
path := "/" + o.Endpoint + "/species/"
scopes := []string{}
method := http.MethodPost
huma.Register(api, huma.Operation{
OperationID: name, Summary: name, Path: path, Method: method, Tags: []string{o.Endpoint}, Description: generateDescription(description, scopes), Security: []map[string][]string{{"auth": scopes}},
}, func(ctx context.Context, input *SetZoneSpeciesInput) (*ZoneHolder, error) {
store := stores.NewZoneStore(relationalDB)
zone, err := store.Get(input.Body.ZondeID)
if err != nil {
return nil, handleError(err)
}
if zone == nil || zone.User.ID != input.credential.UserID {
return nil, generateNotFoundForThisUserError(o.Endpoint, input.Body.ZondeID)
}
speciesIDs := make([]string, 0)
for _, species := range input.Body.Species {
speciesIDs = append(speciesIDs, species.SpeciesID)
}
zone, err = store.SetZoneSpecies(input.Body.ZondeID, speciesIDs)
if err != nil {
return nil, handleError(err)
}
return &ZoneHolder{Body: zone}, nil
})
}
func (o *zoneOperations) RegisterDeactivate(api huma.API) {
name := "Deactivate Zone"
description := "Deactivate a zone."
path := "/" + o.Endpoint + "/{id}"
scopes := []string{}
method := http.MethodDelete
huma.Register(api, huma.Operation{
OperationID: name, Summary: name, Path: path, Method: method, Tags: []string{o.Endpoint}, Description: generateDescription(description, scopes), Security: []map[string][]string{{"auth": scopes}},
}, func(ctx context.Context, input *DeactivateZoneInput) (*ZoneHolder, error) {
store := stores.NewZoneStore(relationalDB)
var zone models.Zone
zones, err := store.GetByUser(input.credential.UserID)
if err != nil {
return nil, handleError(err)
}
for _, z := range zones {
if z.ID == input.ID {
zone = z
break
}
}
if zone.ID == "" {
return nil, generateNotFoundForThisUserError(o.Endpoint, input.ID)
}
result, err := stores.NewZoneStore(relationalDB).Deactivate(zone.ID)
if err != nil {
return nil, handleError(err)
}
return &ZoneHolder{Body: result}, nil
})
}