-
Notifications
You must be signed in to change notification settings - Fork 113
/
status.go
219 lines (195 loc) · 6.83 KB
/
status.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
// Copyright 2018-2022 CERN
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// In applying this license, CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
// Package status contains helpers functions
// to create grpc Status with contextual information,
// like traces.
package status
import (
"context"
"errors"
rpc "github.com/cs3org/go-cs3apis/cs3/rpc/v1beta1"
"github.com/cs3org/reva/pkg/appctx"
"github.com/cs3org/reva/pkg/errtypes"
"go.opentelemetry.io/otel/trace"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
// NewOK returns a Status with CODE_OK.
func NewOK(ctx context.Context) *rpc.Status {
return &rpc.Status{
Code: rpc.Code_CODE_OK,
Trace: getTrace(ctx),
}
}
// NewNotFound returns a Status with CODE_NOT_FOUND and logs the msg.
func NewNotFound(ctx context.Context, msg string) *rpc.Status {
log := appctx.GetLogger(ctx).With().CallerWithSkipFrameCount(3).Logger()
log.Warn().Msg(msg)
return &rpc.Status{
Code: rpc.Code_CODE_NOT_FOUND,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewInvalid returns a Status with CODE_INVALID_ARGUMENT and logs the msg.
func NewInvalid(ctx context.Context, msg string) *rpc.Status {
log := appctx.GetLogger(ctx).With().CallerWithSkipFrameCount(3).Logger()
log.Warn().Msg(msg)
return &rpc.Status{
Code: rpc.Code_CODE_INVALID_ARGUMENT,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewInternal returns a Status with CODE_INTERNAL and logs the msg.
// In this case, err MUST be filled for tracking purposes.
func NewInternal(ctx context.Context, err error, msg string) *rpc.Status {
if err == nil {
panic("Internal error triggered without an error context")
}
log := appctx.GetLogger(ctx).With().CallerWithSkipFrameCount(3).Logger()
log.Err(err).Msg(msg)
return &rpc.Status{
Code: rpc.Code_CODE_INTERNAL,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewUnauthenticated returns a Status with CODE_UNAUTHENTICATED and logs the msg.
func NewUnauthenticated(ctx context.Context, err error, msg string) *rpc.Status {
log := appctx.GetLogger(ctx).With().CallerWithSkipFrameCount(3).Logger()
log.Warn().Err(err).Msg(msg)
return &rpc.Status{
Code: rpc.Code_CODE_UNAUTHENTICATED,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewPermissionDenied returns a Status with PERMISSION_DENIED and logs the msg.
func NewPermissionDenied(ctx context.Context, err error, msg string) *rpc.Status {
log := appctx.GetLogger(ctx).With().CallerWithSkipFrameCount(3).Logger()
log.Err(err).Msg(msg)
return &rpc.Status{
Code: rpc.Code_CODE_PERMISSION_DENIED,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewInsufficientStorage returns a Status with INSUFFICIENT_STORAGE and logs the msg.
func NewInsufficientStorage(ctx context.Context, err error, msg string) *rpc.Status {
log := appctx.GetLogger(ctx).With().CallerWithSkipFrameCount(3).Logger()
log.Err(err).Msg(msg)
return &rpc.Status{
Code: rpc.Code_CODE_INSUFFICIENT_STORAGE,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewUnimplemented returns a Status with CODE_UNIMPLEMENTED and logs the msg.
func NewUnimplemented(ctx context.Context, err error, msg string) *rpc.Status {
log := appctx.GetLogger(ctx).With().CallerWithSkipFrameCount(3).Logger()
log.Error().Err(err).Msg(msg)
return &rpc.Status{
Code: rpc.Code_CODE_UNIMPLEMENTED,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewAlreadyExists returns a Status with CODE_ALREADY_EXISTS and logs the msg.
func NewAlreadyExists(ctx context.Context, err error, msg string) *rpc.Status {
log := appctx.GetLogger(ctx).With().CallerWithSkipFrameCount(3).Logger()
log.Error().Err(err).Msg(msg)
return &rpc.Status{
Code: rpc.Code_CODE_ALREADY_EXISTS,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewInvalidArg returns a Status with CODE_INVALID_ARGUMENT.
func NewInvalidArg(ctx context.Context, msg string) *rpc.Status {
return &rpc.Status{Code: rpc.Code_CODE_INVALID_ARGUMENT,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewConflict returns a Status with Code_CODE_ABORTED and logs the msg.
func NewConflict(ctx context.Context, err error, msg string) *rpc.Status {
return &rpc.Status{
Code: rpc.Code_CODE_ABORTED,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewFailedPrecondition TODO.
func NewFailedPrecondition(ctx context.Context, err error, msg string) *rpc.Status {
log := appctx.GetLogger(ctx).With().CallerWithSkipFrameCount(3).Logger()
log.Error().Err(err).Msg(msg)
return &rpc.Status{
Code: rpc.Code_CODE_FAILED_PRECONDITION,
Message: msg,
Trace: getTrace(ctx),
}
}
// NewStatusFromErrType returns a status that corresponds to the given errtype.
func NewStatusFromErrType(ctx context.Context, msg string, err error) *rpc.Status {
switch e := err.(type) {
case nil:
NewOK(ctx)
case errtypes.IsNotFound:
return NewNotFound(ctx, "gateway: "+msg+": "+err.Error())
case errtypes.IsInvalidCredentials:
// TODO this maps badly
return NewUnauthenticated(ctx, err, "gateway: "+msg+": "+err.Error())
case errtypes.PermissionDenied:
return NewPermissionDenied(ctx, e, "gateway: "+msg+": "+err.Error())
case errtypes.IsNotSupported:
return NewUnimplemented(ctx, err, "gateway: "+msg+":"+err.Error())
case errtypes.BadRequest:
return NewInvalidArg(ctx, "gateway: "+msg+":"+err.Error())
}
// map GRPC status codes coming from the auth middleware
grpcErr := err
for {
st, ok := status.FromError(grpcErr)
if ok {
switch st.Code() {
case codes.NotFound:
return NewNotFound(ctx, "gateway: "+msg+": "+err.Error())
case codes.Unauthenticated:
return NewUnauthenticated(ctx, err, "gateway: "+msg+": "+err.Error())
case codes.PermissionDenied:
return NewPermissionDenied(ctx, err, "gateway: "+msg+": "+err.Error())
}
}
// the actual error can be wrapped multiple times
grpcErr = errors.Unwrap(grpcErr)
if grpcErr == nil {
break
}
}
return NewInternal(ctx, err, "gateway: "+msg+":"+err.Error())
}
// NewErrorFromCode returns a standardized Error for a given RPC code.
func NewErrorFromCode(code rpc.Code, pkgname string) error {
return errors.New(pkgname + ": grpc failed with code " + code.String())
}
// internal function to attach the trace to a context.
func getTrace(ctx context.Context) string {
span := trace.SpanFromContext(ctx)
return span.SpanContext().TraceID().String()
}