forked from open-telemetry/opentelemetry-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
62 lines (55 loc) · 2.41 KB
/
index.ts
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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
import type {NextApiRequest, NextApiResponse} from 'next';
import FeatureFlagGateway from '../../../../gateways/rpc/FeatureFlag.gateway';
import {
Empty,
EvaluateProbabilityFeatureFlagResponse,
GetFeatureFlagValueResponse,
UpdateFlagValueRequest,
} from '../../../../protos/demo';
type TResponse = Empty | GetFeatureFlagValueResponse | EvaluateProbabilityFeatureFlagResponse;
const handler = async ({method, query, body}: NextApiRequest, res: NextApiResponse<TResponse>) => {
switch (method) {
case 'GET': {
const {name = '', mode = 'raw'} = query
switch (mode as string) {
case 'probability':
const randomDecisionOutcome = await FeatureFlagGateway.evaluateProbabilityFeatureFlag(name as string);
return res.status(200).json(randomDecisionOutcome);
case 'range':
const range = await FeatureFlagGateway.getRangeFeatureFlag(name as string);
return res.status(200).json(range);
case 'raw':
// fall through
default:
const flag = await FeatureFlagGateway.getFeatureFlagValue(name as string);
return res.status(200).json(flag);
}
}
case 'PUT': {
const {name} = query
if (!name || Array.isArray(name)) {
return res.status(400).end()
}
if (!body || typeof body.value !== 'number') {
return res.status(400).end()
}
const updateFlagProbabilityRequest = body as UpdateFlagValueRequest;
// The name is part of the resource path, and we do not want to require clients to repeat the name in the request
// body; but on the grpc level the name needs to be in the message body, so we move it there.
updateFlagProbabilityRequest.name = name;
await FeatureFlagGateway.updateFlagValue(name as string, updateFlagProbabilityRequest);
return res.status(204).end();
}
case 'DELETE': {
const {name = ''} = query
await FeatureFlagGateway.deleteFlag(name as string);
return res.status(204).end();
}
default: {
return res.status(405).end();
}
}
};
export default handler;