-
Notifications
You must be signed in to change notification settings - Fork 0
/
opsAlarm.go
58 lines (50 loc) · 1.8 KB
/
opsAlarm.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
package wildlifenl
import (
"context"
"net/http"
"github.com/UtrechtUniversity/wildlifenl/models"
"github.com/UtrechtUniversity/wildlifenl/stores"
"github.com/danielgtaylor/huma/v2"
)
type AlarmHolder struct {
Body *models.Alarm `json:"alarm"`
}
type AlarmsHolder struct {
Body []models.Alarm `json:"alarms"`
}
type alarmOperations Operations
func newAlarmOperations() *alarmOperations {
return &alarmOperations{Endpoint: "alarm"}
}
func (o *alarmOperations) RegisterGetAll(api huma.API) {
name := "Get All Alarms"
description := "Retrieve all alarms."
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{}) (*AlarmsHolder, error) {
alarms, err := stores.NewAlarmStore(relationalDB).GetAll()
if err != nil {
return nil, handleError(err)
}
return &AlarmsHolder{Body: alarms}, nil
})
}
func (o *alarmOperations) RegisterGetMine(api huma.API) {
name := "Get My Alarms"
description := "Retrieve my alarms."
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) (*AlarmsHolder, error) {
alarms, err := stores.NewAlarmStore(relationalDB).GetByUser(input.credential.UserID)
if err != nil {
return nil, handleError(err)
}
return &AlarmsHolder{Body: alarms}, nil
})
}