-
Notifications
You must be signed in to change notification settings - Fork 0
/
opsInteractionType.go
80 lines (70 loc) · 3.02 KB
/
opsInteractionType.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
package wildlifenl
import (
"context"
"net/http"
"github.com/UtrechtUniversity/wildlifenl/models"
"github.com/UtrechtUniversity/wildlifenl/stores"
"github.com/danielgtaylor/huma/v2"
)
type InteractionTypeHolder struct {
Body *models.InteractionType `json:"interactionType"`
}
type InteractionTypesHolder struct {
Body []models.InteractionType `json:"interactionTypes"`
}
type InteractionTypeUpdateInput struct {
ID int `path:"id" doc:"The ID of the interaction type to be updated."`
Body *models.InteractionType `json:"interactionType"`
}
type interactionTypeOperations Operations
func newInteractionTypeOperations() *interactionTypeOperations {
return &interactionTypeOperations{Endpoint: "interactionType"}
}
func (o *interactionTypeOperations) RegisterGetAll(api huma.API) {
name := "Get All InteractionTypes"
description := "Retrieve all interaction types."
path := "/" + o.Endpoint + "s/"
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 *struct{}) (*InteractionTypesHolder, error) {
interactionTypes, err := stores.NewInteractionTypeStore(relationalDB).GetAll()
if err != nil {
return nil, handleError(err)
}
return &InteractionTypesHolder{Body: interactionTypes}, nil
})
}
func (o *interactionTypeOperations) RegisterAdd(api huma.API) {
name := "Add Interaction Type"
description := "Add a new interaction type."
path := "/" + o.Endpoint + "/"
scopes := []string{"administrator"}
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 *InteractionTypeHolder) (*InteractionTypeHolder, error) {
interactionType, err := stores.NewInteractionTypeStore(relationalDB).Add(input.Body)
if err != nil {
return nil, handleError(err)
}
return &InteractionTypeHolder{Body: interactionType}, nil
})
}
func (o *interactionTypeOperations) RegisterUpdate(api huma.API) {
name := "Update Interaction Type"
description := "Update an existing interaction type."
path := "/" + o.Endpoint + "/{id}"
scopes := []string{"administrator"}
method := http.MethodPut
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 *InteractionTypeUpdateInput) (*InteractionTypeHolder, error) {
interactionType, err := stores.NewInteractionTypeStore(relationalDB).Update(input.ID, input.Body)
if err != nil {
return nil, handleError(err)
}
return &InteractionTypeHolder{Body: interactionType}, nil
})
}