Spaces:
Build error
Build error
File size: 2,266 Bytes
d9494a5 | 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 | import { type MessageDescriptor } from '@lingui/core';
import { msg } from '@lingui/core/macro';
import { assertUnreachable } from 'twenty-shared/utils';
import { CustomException } from 'src/utils/custom-exception';
export enum RestInputRequestParserExceptionCode {
INVALID_AGGREGATE_FIELDS_QUERY_PARAM = 'INVALID_AGGREGATE_FIELDS_QUERY_PARAM',
INVALID_GROUP_BY_QUERY_PARAM = 'INVALID_GROUP_BY_QUERY_PARAM',
INVALID_ORDER_BY_WITH_GROUP_BY_QUERY_PARAM = 'INVALID_ORDER_BY_WITH_GROUP_BY_QUERY_PARAM',
INVALID_ORDER_BY_QUERY_PARAM = 'INVALID_ORDER_BY_QUERY_PARAM',
INVALID_DEPTH_QUERY_PARAM = 'INVALID_DEPTH_QUERY_PARAM',
INVALID_LIMIT_QUERY_PARAM = 'INVALID_LIMIT_QUERY_PARAM',
INVALID_FILTER_QUERY_PARAM = 'INVALID_FILTER_QUERY_PARAM',
}
const getRestInputRequestParserExceptionUserFriendlyMessage = (
code: RestInputRequestParserExceptionCode,
) => {
switch (code) {
case RestInputRequestParserExceptionCode.INVALID_AGGREGATE_FIELDS_QUERY_PARAM:
return msg`Invalid aggregate fields parameter.`;
case RestInputRequestParserExceptionCode.INVALID_GROUP_BY_QUERY_PARAM:
return msg`Invalid group by parameter.`;
case RestInputRequestParserExceptionCode.INVALID_ORDER_BY_WITH_GROUP_BY_QUERY_PARAM:
return msg`Invalid order by with group by parameter.`;
case RestInputRequestParserExceptionCode.INVALID_ORDER_BY_QUERY_PARAM:
return msg`Invalid order by parameter.`;
case RestInputRequestParserExceptionCode.INVALID_DEPTH_QUERY_PARAM:
return msg`Invalid depth parameter.`;
case RestInputRequestParserExceptionCode.INVALID_LIMIT_QUERY_PARAM:
return msg`Invalid limit parameter.`;
case RestInputRequestParserExceptionCode.INVALID_FILTER_QUERY_PARAM:
return msg`Invalid filter parameter.`;
default:
assertUnreachable(code);
}
};
export class RestInputRequestParserException extends CustomException<RestInputRequestParserExceptionCode> {
constructor(
message: string,
code: RestInputRequestParserExceptionCode,
{ userFriendlyMessage }: { userFriendlyMessage?: MessageDescriptor } = {},
) {
super(message, code, {
userFriendlyMessage:
userFriendlyMessage ??
getRestInputRequestParserExceptionUserFriendlyMessage(code),
});
}
}
|