aboutsummaryrefslogtreecommitdiff
path: root/src/tools/jwt-parser/jwt-parser.service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/jwt-parser/jwt-parser.service.ts')
-rw-r--r--src/tools/jwt-parser/jwt-parser.service.ts14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/tools/jwt-parser/jwt-parser.service.ts b/src/tools/jwt-parser/jwt-parser.service.ts
index 19edc5f..cc39145 100644
--- a/src/tools/jwt-parser/jwt-parser.service.ts
+++ b/src/tools/jwt-parser/jwt-parser.service.ts
@@ -1,6 +1,5 @@
import jwtDecode, { type JwtHeader, type JwtPayload } from 'jwt-decode';
import _ from 'lodash';
-import { match } from 'ts-pattern';
import { ALGORITHM_DESCRIPTIONS, CLAIM_DESCRIPTIONS } from './jwt-parser.constants';
export { decodeJwt };
@@ -32,10 +31,15 @@ function parseClaims({ claim, value }: { claim: string; value: unknown }) {
}
function getFriendlyValue({ claim, value }: { claim: string; value: unknown }) {
- return match(claim)
- .with('exp', 'nbf', 'iat', () => dateFormatter(value))
- .with('alg', () => (_.isString(value) ? ALGORITHM_DESCRIPTIONS[value] : undefined))
- .otherwise(() => undefined);
+ if (['exp', 'nbf', 'iat'].includes(claim)) {
+ return dateFormatter(value);
+ }
+
+ if (claim === 'alg' && _.isString(value)) {
+ return ALGORITHM_DESCRIPTIONS[value];
+ }
+
+ return undefined;
}
function dateFormatter(value: unknown) {