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 |
|
18 | import { Status } from './constants';
|
19 |
|
20 | const 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 |
|
31 | export function restrictControlPlaneStatusCode(code: Status, details: string): {code: Status, details: string} {
|
32 | if (INAPPROPRIATE_CONTROL_PLANE_CODES.includes(code)) {
|
33 | return {
|
34 | code: Status.INTERNAL,
|
35 | details: `Invalid status from control plane: ${code} ${Status[code]} ${details}`
|
36 | }
|
37 | } else {
|
38 | return {code, details};
|
39 | }
|
40 | } |
\ | No newline at end of file |