-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopsAnimal.go
More file actions
94 lines (84 loc) · 3.34 KB
/
opsAnimal.go
File metadata and controls
94 lines (84 loc) · 3.34 KB
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
package wildlifenl
import (
"context"
"net/http"
"github.com/UtrechtUniversity/wildlifenl/models"
"github.com/UtrechtUniversity/wildlifenl/stores"
"github.com/danielgtaylor/huma/v2"
)
type AnimalHolder struct {
Body *models.Animal `json:"animal"`
}
type AnimalsHolder struct {
Body []models.Animal `json:"animals"`
}
type AnimalAddInput struct {
Body *models.AnimalRecord `json:"animal"`
}
type animalOperations Operations
func newAnimalOperations() *animalOperations {
return &animalOperations{Endpoint: "animal"}
}
func (o *animalOperations) RegisterGet(api huma.API) {
name := "Get Animal By ID"
description := "Retrieve a specific animal by ID."
path := "/" + o.Endpoint + "/{id}"
scopes := []string{"herd-manager"}
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 this animal."`
}) (*AnimalHolder, error) {
animal, err := stores.NewAnimalStore(relationalDB, timeseriesDB).Get(input.ID)
if err != nil {
return nil, handleError(err)
}
if animal == nil {
return nil, generateNotFoundByIDError(o.Endpoint, input.ID)
}
return &AnimalHolder{Body: animal}, nil
})
}
func (o *animalOperations) RegisterAdd(api huma.API) {
name := "Add Animal"
description := "Add a new animal."
path := "/" + o.Endpoint + "/"
scopes := []string{"herd-manager"}
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 *AnimalAddInput) (*AnimalHolder, error) {
species, err := stores.NewAnimalStore(relationalDB, timeseriesDB).Add(input.Body)
if err != nil {
return nil, handleError(err)
}
return &AnimalHolder{Body: species}, nil
})
}
func (o *animalOperations) RegisterGetFilter(api huma.API) {
name := "Get Animals By Filter"
description := "Retrieve animals within a spatiotemporal span."
path := "/" + o.Endpoint + "s/"
scopes := []string{"nature-area-manager", "wildlife-manager", "herd-manager"}
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 *SpatiotemporalInput) (*AnimalsHolder, error) {
area := models.Circle{Location: models.Point{Latitude: input.Latitude, Longitude: input.Longitude}, Radius: float64(input.Radius)}
results, err := stores.NewAnimalStore(relationalDB, timeseriesDB).GetFiltered(&area, &input.Start, &input.End)
if err != nil {
return nil, handleError(err)
}
animals := make([]models.Animal, 0)
for _, r := range results {
deployments, err := stores.NewBorneSensorDeploymentStore(relationalDB, timeseriesDB).GetByAnimal(r.ID, input.Start, input.End)
if err != nil {
return nil, handleError(err)
}
r.BorneSensorDeployments = deployments
animals = append(animals, r)
}
return &AnimalsHolder{Body: animals}, nil
})
}