UNPKG

1.24 kBPlain TextView Raw
1/*
2 * Copyright 2022 gRPC authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17
18import { Status } from './constants';
19
20const INAPPROPRIATE_CONTROL_PLANE_CODES: Status[] = [
21 Status.OK,
22 Status.INVALID_ARGUMENT,
23 Status.NOT_FOUND,
24 Status.ALREADY_EXISTS,
25 Status.FAILED_PRECONDITION,
26 Status.ABORTED,
27 Status.OUT_OF_RANGE,
28 Status.DATA_LOSS,
29];
30
31export function restrictControlPlaneStatusCode(
32 code: Status,
33 details: string
34): { code: Status; details: string } {
35 if (INAPPROPRIATE_CONTROL_PLANE_CODES.includes(code)) {
36 return {
37 code: Status.INTERNAL,
38 details: `Invalid status from control plane: ${code} ${Status[code]} ${details}`,
39 };
40 } else {
41 return { code, details };
42 }
43}