54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
import Cookies from 'js-cookie';
|
|
import { localRemove, localSet } from '@/utils/cache-local-utils';
|
|
import {
|
|
CACHE_LOCAL_LOCK_PASSWD,
|
|
CACHE_LOCAL_MASK,
|
|
} from '@/constants/cache-keys-constants';
|
|
import {
|
|
TOKEN_ACCESS_COOKIE,
|
|
TOKEN_REFRESH_COOKIE,
|
|
} from '@/constants/token-constants';
|
|
|
|
/**获取访问令牌 */
|
|
export function getAccessToken(): string {
|
|
return Cookies.get(TOKEN_ACCESS_COOKIE) || '';
|
|
}
|
|
|
|
/**
|
|
* 设置访问令牌
|
|
* @param token token字符串
|
|
* @param exp 过期时间(秒)
|
|
*/
|
|
export function setAccessToken(token: string, exp: number): void {
|
|
const expires = new Date(new Date().getTime() + exp * 1000);
|
|
Cookies.set(TOKEN_ACCESS_COOKIE, token, { expires });
|
|
localSet(CACHE_LOCAL_MASK, 'none');
|
|
}
|
|
|
|
/**移除访问令牌 */
|
|
export function delAccessToken(): void {
|
|
Cookies.remove(TOKEN_ACCESS_COOKIE);
|
|
localRemove(CACHE_LOCAL_MASK);
|
|
localRemove(CACHE_LOCAL_LOCK_PASSWD);
|
|
}
|
|
|
|
/**获取刷新令牌 */
|
|
export function getRefreshToken(): string {
|
|
return Cookies.get(TOKEN_REFRESH_COOKIE) || '';
|
|
}
|
|
|
|
/**
|
|
* 设置刷新令牌
|
|
* @param token token字符串
|
|
* @param exp 过期时间(秒)
|
|
*/
|
|
export function setRefreshToken(token: string, exp: number): void {
|
|
const expires = new Date(new Date().getTime() + exp * 1000);
|
|
Cookies.set(TOKEN_REFRESH_COOKIE, token, { expires });
|
|
}
|
|
|
|
/**移除刷新令牌 */
|
|
export function delRefreshToken(): void {
|
|
Cookies.remove(TOKEN_REFRESH_COOKIE);
|
|
}
|