mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-12 07:19:01 +08:00
28 lines
954 B
TypeScript
28 lines
954 B
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
interface Response {
|
|
cookies: string,
|
|
token: number
|
|
}
|
|
|
|
const SchemaData = Type.Object({
|
|
domain: Type.String(),
|
|
});
|
|
|
|
type Payload = Static<typeof SchemaData>;
|
|
|
|
export class GetCredentials extends OneBotAction<Payload, Response> {
|
|
override actionName = ActionName.GetCredentials;
|
|
override payloadSchema = SchemaData;
|
|
|
|
async _handle (payload: Payload) {
|
|
const cookiesObject = await this.core.apis.UserApi.getCookies(payload.domain);
|
|
// 把获取到的cookiesObject转换成 k=v; 格式字符串拼接在一起
|
|
const cookies = Object.entries(cookiesObject).map(([key, value]) => `${key}=${value}`).join('; ');
|
|
const bkn = cookiesObject?.['skey'] ? this.core.apis.WebApi.getBknFromCookie(cookiesObject) : '';
|
|
return { cookies, token: +bkn };
|
|
}
|
|
}
|