1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-20 10:21:36 +07:00
verdaccio-ui/src/utils/login.ts
2019-10-04 14:56:20 +02:00

86 lines
1.8 KiB
TypeScript

import isString from 'lodash/isString';
import isNumber from 'lodash/isNumber';
import isEmpty from 'lodash/isEmpty';
import { Base64 } from 'js-base64';
import API from './api';
import { HEADERS } from '../../lib/constants';
interface PayloadInterface {
exp: number;
}
export function isTokenExpire(token: string | null): boolean {
if (!isString(token)) {
return true;
}
const [, payload] = token.split('.');
if (!payload) {
return true;
}
let exp: number;
try {
exp = JSON.parse(Base64.decode(payload)).exp;
} catch (error) {
console.error('Invalid token:', error, token);
return true;
}
if (!exp || !isNumber(exp)) {
return true;
}
// Report as expire before (real expire time - 30s)
const jsTimestamp = exp * 1000 - 30000;
const expired = Date.now() >= jsTimestamp;
return expired;
}
export interface LoginBody {
username?: string;
token?: string;
error?: LoginError;
}
export interface LoginError {
title: string;
type: string;
description: string;
}
export async function makeLogin(username?: string, password?: string): Promise<LoginBody> {
// checks isEmpty
if (isEmpty(username) || isEmpty(password)) {
const error = {
title: 'Unable to login',
type: 'error',
description: "Username or password can't be empty!",
};
return { error };
}
try {
const response: LoginBody = await API.request('login', 'POST', {
body: JSON.stringify({ username, password }),
headers: {
Accept: HEADERS.JSON,
'Content-Type': HEADERS.JSON,
},
});
const result: LoginBody = {
username: response.username,
token: response.token,
};
return result;
} catch (e) {
const error = {
title: 'Unable to login',
type: 'error',
description: e.error,
};
return { error };
}
}