-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.go
52 lines (40 loc) · 1.19 KB
/
map.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
package http
import (
"context"
"net/http"
"github.com/alexfalkowski/bezeichner/server/service"
"github.com/alexfalkowski/go-service/meta"
)
type (
// MapIdentifiersRequest for some identifiers.
MapIdentifiersRequest struct {
IDs []string `json:"ids,omitempty"`
}
// MapIdentifiersResponse for some identifiers.
MapIdentifiersResponse struct {
Meta map[string]string `json:"meta,omitempty"`
Error *Error `json:"error,omitempty"`
IDs []string `json:"ids,omitempty"`
}
mapErrorer struct{}
)
// MapIdentifiers for HTTP.
func (s *Server) MapIdentifiers(ctx context.Context, req *MapIdentifiersRequest) (*MapIdentifiersResponse, error) {
resp := &MapIdentifiersResponse{}
ids, err := s.service.MapIdentifiers(req.IDs)
if err != nil {
return resp, err
}
resp.IDs = ids
resp.Meta = meta.CamelStrings(ctx, "")
return resp, nil
}
func (*mapErrorer) Error(ctx context.Context, err error) *MapIdentifiersResponse {
return &MapIdentifiersResponse{Meta: meta.CamelStrings(ctx, ""), Error: &Error{Message: err.Error()}}
}
func (*mapErrorer) Status(err error) int {
if service.IsNotFoundError(err) {
return http.StatusNotFound
}
return http.StatusInternalServerError
}