-
Notifications
You must be signed in to change notification settings - Fork 0
/
opsConveyance.go
77 lines (68 loc) · 2.82 KB
/
opsConveyance.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
package wildlifenl
import (
"context"
"net/http"
"github.com/UtrechtUniversity/wildlifenl/models"
"github.com/UtrechtUniversity/wildlifenl/stores"
"github.com/danielgtaylor/huma/v2"
)
type ConveyanceHolder struct {
Body *models.Conveyance `json:"conveyance"`
}
type ConveyancesHolder struct {
Body []models.Conveyance `json:"conveyances"`
}
type conveyanceOperations Operations
func newConveyanceOperations() *conveyanceOperations {
return &conveyanceOperations{Endpoint: "conveyance"}
}
func (o *conveyanceOperations) RegisterGetAll(api huma.API) {
name := "Get All Conveyances [deprecated]"
description := "Retrieve all conveyances. DEPRECATED"
path := "/" + o.Endpoint + "s/"
scopes := []string{"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{}) (*ConveyancesHolder, error) {
conveyances, err := stores.NewConveyanceStore(relationalDB).GetAll()
if err != nil {
return nil, handleError(err)
}
return &ConveyancesHolder{Body: conveyances}, nil
})
}
func (o *conveyanceOperations) RegisterGetMine(api huma.API) {
name := "Get My Conveyances"
description := "Retrieve my conveyances."
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) (*ConveyancesHolder, error) {
conveyances, err := stores.NewConveyanceStore(relationalDB).GetByUser(input.credential.UserID)
if err != nil {
return nil, handleError(err)
}
return &ConveyancesHolder{Body: conveyances}, nil
})
}
func (o *conveyanceOperations) RegisterGetByExperiment(api huma.API) {
name := "Get Conveyances By Experiment"
description := "Retrieve all conveyances for a specific experiment."
path := "/" + o.Endpoint + "s/experiment/{id}"
scopes := []string{"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 {
ID string `path:"id" format:"uuid" doc:"The ID of the experiment to retrieve conveyances for."`
}) (*ConveyancesHolder, error) {
conveyances, err := stores.NewConveyanceStore(relationalDB).GetByExperiment(input.ID)
if err != nil {
return nil, handleError(err)
}
return &ConveyancesHolder{Body: conveyances}, nil
})
}