120 lines
3.0 KiB
TypeScript
120 lines
3.0 KiB
TypeScript
import { baseRequestClient, requestClient } from '#/api/request';
|
|
import type { AuthPermissionInfo } from '@vben/types';
|
|
|
|
export namespace AuthApi {
|
|
/** 登录接口参数 */
|
|
export interface LoginParams {
|
|
password?: string;
|
|
username?: string;
|
|
captchaVerification?: string;
|
|
}
|
|
|
|
/** 登录接口返回值 */
|
|
export interface LoginResult {
|
|
accessToken: string;
|
|
refreshToken: string;
|
|
userId: number;
|
|
expiresTime: number;
|
|
}
|
|
|
|
/** 租户信息返回值 */
|
|
export interface TenantResult {
|
|
id: number;
|
|
name: string;
|
|
}
|
|
|
|
/** 手机验证码获取接口参数 */
|
|
export interface SmsCodeParams {
|
|
mobile: string;
|
|
scene: number;
|
|
}
|
|
|
|
/** 手机验证码登录接口参数 */
|
|
export interface SmsLoginParams {
|
|
mobile: string;
|
|
code: string;
|
|
}
|
|
|
|
/** 注册接口参数 */
|
|
export interface RegisterParams {
|
|
username: string
|
|
password: string
|
|
captchaVerification: string
|
|
}
|
|
|
|
/** 重置密码接口参数 */
|
|
export interface ResetPasswordParams {
|
|
password: string;
|
|
mobile: string;
|
|
code: string;
|
|
}
|
|
|
|
}
|
|
|
|
/** 登录 */
|
|
export async function loginApi(data: AuthApi.LoginParams) {
|
|
return requestClient.post<AuthApi.LoginResult>('/system/auth/login', data);
|
|
}
|
|
|
|
/** 刷新 accessToken */
|
|
export async function refreshTokenApi(refreshToken: string) {
|
|
return baseRequestClient.post(`/system/auth/refresh-token?refreshToken=${refreshToken}`);
|
|
}
|
|
|
|
/** 退出登录 */
|
|
export async function logoutApi(accessToken: string) {
|
|
return baseRequestClient.post('/system/auth/logout', {}, {
|
|
headers: {
|
|
Authorization: `Bearer ${accessToken}`,
|
|
}
|
|
});
|
|
}
|
|
|
|
/** 获取权限信息 */
|
|
export async function getAuthPermissionInfoApi() {
|
|
return requestClient.get<AuthPermissionInfo>(
|
|
'/system/auth/get-permission-info',
|
|
);
|
|
}
|
|
|
|
/** 获取租户列表 */
|
|
export async function getTenantSimpleList() {
|
|
return requestClient.get<AuthApi.TenantResult[]>(
|
|
`/system/tenant/simple-list`,
|
|
);
|
|
}
|
|
|
|
/** 使用租户域名,获得租户信息 */
|
|
export async function getTenantByWebsite(website: string) {
|
|
return requestClient.get<AuthApi.TenantResult>(`/system/tenant/get-by-website?website=${website}`);
|
|
}
|
|
|
|
/** 获取验证码 */
|
|
export async function getCaptcha(data: any) {
|
|
return baseRequestClient.post('/system/captcha/get', data);
|
|
}
|
|
|
|
/** 校验验证码 */
|
|
export async function checkCaptcha(data: any) {
|
|
return baseRequestClient.post('/system/captcha/check', data);
|
|
}
|
|
|
|
/** 获取登录验证码 */
|
|
export const sendSmsCode = (data: AuthApi.SmsCodeParams) => {
|
|
return requestClient.post('/system/auth/send-sms-code', data )
|
|
}
|
|
|
|
/** 短信验证码登录 */
|
|
export const smsLogin = (data: AuthApi.SmsLoginParams) => {
|
|
return requestClient.post('/system/auth/sms-login', data)
|
|
}
|
|
|
|
/** 注册 */
|
|
export const register = (data: AuthApi.RegisterParams) => {
|
|
return requestClient.post('/system/auth/register', data)
|
|
}
|
|
|
|
/** 通过短信重置密码 */
|
|
export const smsResetPassword = (data: AuthApi.ResetPasswordParams) => {
|
|
return requestClient.post('/system/auth/reset-password', data)
|
|
} |