Add Login API(#20)
This commit is contained in:
parent
478eafa4a3
commit
4f83dd6822
149
miniprogram/api/Login.ts
Normal file
149
miniprogram/api/Login.ts
Normal file
@ -0,0 +1,149 @@
|
|||||||
|
import { API, HTTPMethod, IParamSetting, GeneralCallbackResult } from "../core/Api";
|
||||||
|
|
||||||
|
interface ILoginInput {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 学号
|
||||||
|
*/
|
||||||
|
studentId: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 教务处密码
|
||||||
|
*/
|
||||||
|
password: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ILoginOutput {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 身份证后六位
|
||||||
|
* 用于尝试水卡登录
|
||||||
|
*/
|
||||||
|
idCardLast6: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 使用的教务处链接
|
||||||
|
*/
|
||||||
|
eduService: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户的真实姓名
|
||||||
|
*/
|
||||||
|
actualName: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户是否关注了公共号
|
||||||
|
*/
|
||||||
|
isSubscribeWxAccount: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 教务处的 session
|
||||||
|
*/
|
||||||
|
eduSession: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ILoginEvent {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* session 过期
|
||||||
|
*/
|
||||||
|
expire: GeneralCallbackResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 登录失败
|
||||||
|
*/
|
||||||
|
unauthorized: GeneralCallbackResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 未知的问题
|
||||||
|
*/
|
||||||
|
error: GeneralCallbackResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 数据损坏或丢失
|
||||||
|
*/
|
||||||
|
badData: GeneralCallbackResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Login API
|
||||||
|
* 此 API 用来向教务处发起登录请求
|
||||||
|
* 请求成功后将获得教务处返回的 session
|
||||||
|
*/
|
||||||
|
class Login extends API<ILoginInput, ILoginOutput, ILoginEvent> {
|
||||||
|
|
||||||
|
public override url: string = "/login";
|
||||||
|
|
||||||
|
public override method: HTTPMethod = HTTPMethod.POST;
|
||||||
|
|
||||||
|
public override params: IParamSetting<ILoginInput> = {
|
||||||
|
|
||||||
|
studentId: {
|
||||||
|
mapKey: "id",
|
||||||
|
tester: /^\d{8,12}$/,
|
||||||
|
},
|
||||||
|
|
||||||
|
password: {
|
||||||
|
mapKey: "pwd"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
public constructor() {
|
||||||
|
super();
|
||||||
|
this.initDebugLabel("Login");
|
||||||
|
|
||||||
|
this.addFailedCallBack();
|
||||||
|
|
||||||
|
this.on("success", (data) => {
|
||||||
|
|
||||||
|
let isSuccess = true;
|
||||||
|
let errMsg = "";
|
||||||
|
let res: ILoginOutput | undefined;
|
||||||
|
const info: any = data.data;
|
||||||
|
|
||||||
|
// 数据缺失检测
|
||||||
|
if(!info) {
|
||||||
|
isSuccess = false;
|
||||||
|
errMsg = "Bad Data";
|
||||||
|
this.emit("badData", { errMsg });
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isSuccess) switch (info.code) {
|
||||||
|
case (1):
|
||||||
|
res = {
|
||||||
|
idCardLast6: info.data.idCard,
|
||||||
|
eduService: info.data.ip,
|
||||||
|
actualName: info.data.name,
|
||||||
|
isSubscribeWxAccount: info.data.official,
|
||||||
|
eduSession: info.data.session
|
||||||
|
};
|
||||||
|
errMsg = info.err_msg ?? "Success";
|
||||||
|
this.emit("ok", res);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case (2):
|
||||||
|
isSuccess = false;
|
||||||
|
errMsg = info.err_msg ?? "Session Expire";
|
||||||
|
this.emit("expire", { errMsg });
|
||||||
|
break;
|
||||||
|
|
||||||
|
case (3):
|
||||||
|
isSuccess = false;
|
||||||
|
errMsg = info.err_msg ?? "Unauthorized";
|
||||||
|
this.emit("unauthorized", { errMsg });
|
||||||
|
break;
|
||||||
|
|
||||||
|
case (4):
|
||||||
|
isSuccess = false;
|
||||||
|
errMsg = info.err_msg ?? "Error";
|
||||||
|
this.emit("error", { errMsg });
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isSuccess) this.emit("no", { errMsg });
|
||||||
|
this.emit("done", { errMsg, data: res });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Login, ILoginInput, ILoginOutput };
|
@ -32,6 +32,11 @@ type DeepReadonly<T> = {
|
|||||||
*/
|
*/
|
||||||
type IParamSetting<T extends IAnyData> = {
|
type IParamSetting<T extends IAnyData> = {
|
||||||
[P in keyof T]: {
|
[P in keyof T]: {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 键值映射
|
||||||
|
*/
|
||||||
|
mapKey?: string,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 默认值
|
* 默认值
|
||||||
@ -130,13 +135,13 @@ type IAPIResultEvent<O extends IAnyData, U extends IAnyData> = {
|
|||||||
* 无论因为什么
|
* 无论因为什么
|
||||||
* 总之数据获取到
|
* 总之数据获取到
|
||||||
*/
|
*/
|
||||||
no: { message: string } & U,
|
no: GeneralCallbackResult & U,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 完成了
|
* 完成了
|
||||||
* 无论失败与否
|
* 无论失败与否
|
||||||
*/
|
*/
|
||||||
done: { message: string, data: O } & U
|
done: { data?: O } & GeneralCallbackResult & U
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -343,14 +348,15 @@ class API<
|
|||||||
for (let key in this.params) {
|
for (let key in this.params) {
|
||||||
|
|
||||||
let data = this.data[key];
|
let data = this.data[key];
|
||||||
let { isHeader, isTemplate } = this.params[key];
|
let { isHeader, isTemplate, mapKey } = this.params[key];
|
||||||
|
let useKey = mapKey ?? key;
|
||||||
|
|
||||||
// 加载数据
|
// 加载数据
|
||||||
if (!isTemplate) {
|
if (!isTemplate) {
|
||||||
if (isHeader) {
|
if (isHeader) {
|
||||||
requestData.header![key] = data;
|
requestData.header![useKey] = data;
|
||||||
} else {
|
} else {
|
||||||
(requestData.data as IAnyData)[key] = data;
|
(requestData.data as IAnyData)[useKey] = data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -593,6 +599,17 @@ class API<
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自动挂载失败回调
|
||||||
|
*/
|
||||||
|
public addFailedCallBack(): this {
|
||||||
|
this.on("fail", (e) => {
|
||||||
|
this.emit("no", e as any);
|
||||||
|
this.emit("done", e as any);
|
||||||
|
});
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 请求失败后的提示语句
|
* 请求失败后的提示语句
|
||||||
*/
|
*/
|
||||||
@ -680,4 +697,4 @@ enum HTTPMethod {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default API;
|
export default API;
|
||||||
export { API, IParamSetting, IAppAPIParam, ICallBack, HTTPMethod, RequestPolicy }
|
export { API, IParamSetting, IAppAPIParam, ICallBack, HTTPMethod, RequestPolicy, GeneralCallbackResult }
|
@ -1,5 +1,5 @@
|
|||||||
import { Modular, Manager, ILifetime } from "../../core/Module";
|
import { Modular, Manager, ILifetime } from "../../core/Module";
|
||||||
import { API, IParamSetting } from "../../core/Api";
|
import { Login } from "../../api/Login";
|
||||||
import { Storage } from "../../core/Storage";
|
import { Storage } from "../../core/Storage";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -27,44 +27,13 @@ implements Partial<ILifetime> {
|
|||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
s.set("be", 12);
|
s.set("be", 12);
|
||||||
}, 1000)
|
}, 1000)
|
||||||
|
|
||||||
interface ITestApiInput {
|
|
||||||
name: string,
|
|
||||||
id: number,
|
|
||||||
info: {
|
|
||||||
data: string
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class TestApi extends API<ITestApiInput, {}> {
|
new Login().param({studentId: "1806240113", password: "qazxsw123"})
|
||||||
|
.request().wait({
|
||||||
public override params: IParamSetting<ITestApiInput> = {
|
ok: (w) => {console.log("ok", w)},
|
||||||
name: {
|
no: (w) => {console.log("no", w)},
|
||||||
tester: "123",
|
done: (w) => {console.log("done", w)}
|
||||||
isHeader: true
|
});
|
||||||
},
|
|
||||||
id: {
|
|
||||||
parse: (i) => ++i,
|
|
||||||
},
|
|
||||||
info: {}
|
|
||||||
}
|
|
||||||
|
|
||||||
public constructor() {
|
|
||||||
super();
|
|
||||||
this.initDebugLabel("TestApi");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let api = new TestApi();
|
|
||||||
api.param({
|
|
||||||
name: "123",
|
|
||||||
id: 456,
|
|
||||||
info: {
|
|
||||||
data: "abc"
|
|
||||||
}
|
|
||||||
}).request().waitRequest({
|
|
||||||
success: (d) => console.log(d)
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user