-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
104 changed files
with
2,336 additions
and
4,119 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ kotori.dev.yml | |
|
||
scripts/*.js | ||
|
||
modules2 | ||
modules2 | ||
modules3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "@kotori-bot/kotori-plugin-adapter-onebot", | ||
"version": "1.1.1", | ||
"description": "Adapter For OneBot (go-cqhttp)", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"build": "tsc --build" | ||
}, | ||
"license": "GPL-3.0", | ||
"files": [ | ||
"lib", | ||
"README.md" | ||
], | ||
"author": "Hotaru <[email protected]>", | ||
"peerDependencies": { | ||
"kotori-bot": "workspace:^" | ||
}, | ||
"dependencies": { | ||
"@types/ws": "^8.5.8", | ||
"ws": "^8.14.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,240 @@ | ||
/* | ||
* @Author: Hotaru [email protected] | ||
* @Blog: https://hotaru.icu | ||
* @Date: 2023-09-29 14:31:09 | ||
* @LastEditors: Hotaru [email protected] | ||
* @LastEditTime: 2023-12-02 22:54:59 | ||
*/ | ||
import { Adapter, AdapterConfig, Context, EventDataApiBase, EventDataTargetId, Tsu } from 'kotori-bot'; | ||
import WebSocket from 'ws'; | ||
import OneBotApi from './api'; | ||
import WsServer from './services/wsserver'; | ||
import { EventDataType } from './types'; | ||
import OneBotElements from './elements'; | ||
|
||
interface EventDataPoke extends EventDataApiBase<'poke'> { | ||
targetId: EventDataTargetId; | ||
|
||
groupId: EventDataTargetId; | ||
} | ||
|
||
declare module 'kotori-bot' { | ||
interface EventType { | ||
poke: EventDataPoke; | ||
} | ||
} | ||
|
||
export const config = Tsu.Intersection([ | ||
Tsu.Object({ | ||
port: Tsu.Number().int().range(1, 65535), | ||
address: Tsu.String().regexp(/^ws(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w-./?%&=]*)?$/), | ||
retry: Tsu.Number().int().min(1).default(10), | ||
}), | ||
Tsu.Union([ | ||
Tsu.Object({ | ||
mode: Tsu.Literal('ws'), | ||
}), | ||
Tsu.Object({ | ||
mode: Tsu.Literal('ws-reverse'), | ||
}), | ||
]), | ||
]); | ||
|
||
type OneBotConfig = Tsu.infer<typeof config> & AdapterConfig; | ||
|
||
export class OneBotAdapter extends Adapter { | ||
private readonly info: string; | ||
|
||
public readonly config: OneBotConfig; | ||
|
||
public constructor(ctx: Context, config: OneBotConfig, identity: string) { | ||
super(ctx, config, identity, OneBotApi, OneBotElements); | ||
this.config = config; | ||
this.info = `${this.config.address}:${this.config.port}`; | ||
} | ||
|
||
public handle(data: EventDataType) { | ||
if (data.post_type === 'message' && data.message_type === 'private') { | ||
this.emit('private_msg', { | ||
userId: data.user_id, | ||
messageId: data.message_id, | ||
message: data.message, | ||
sender: { | ||
nickname: data.sender.nickname, | ||
age: data.sender.age, | ||
sex: data.sender.sex, | ||
}, | ||
groupId: data.group_id, | ||
}); | ||
} else if (data.post_type === 'message' && data.message_type === 'group') { | ||
this.emit('group_msg', { | ||
userId: data.user_id, | ||
messageId: data.message_id, | ||
message: data.message, | ||
sender: { | ||
nickname: data.sender.nickname, | ||
age: data.sender.age, | ||
sex: data.sender.sex, | ||
}, | ||
groupId: data.group_id!, | ||
}); | ||
} else if (data.post_type === 'notice' && data.notice_type === 'private_recall') { | ||
this.emit('private_recall', { | ||
userId: data.user_id, | ||
messageId: data.message_id, | ||
}); | ||
} else if (data.post_type === 'notice' && data.notice_type === 'group_recall') { | ||
this.emit('group_recall', { | ||
userId: data.user_id, | ||
messageId: data.message_id, | ||
groupId: data.group_id!, | ||
operatorId: data.operator_id || data.user_id, | ||
}); | ||
} else if (data.post_type === 'request' && data.request_type === 'private') { | ||
this.emit('private_request', { | ||
userId: data.user_id, | ||
}); | ||
} else if (data.post_type === 'request' && data.request_type === 'group') { | ||
this.emit('group_request', { | ||
userId: data.user_id, | ||
groupId: data.group_id!, | ||
operatorId: data.operator_id || data.user_id, | ||
}); | ||
} else if (data.post_type === 'notice' && data.notice_type === 'private_add') { | ||
this.emit('private_add', { | ||
userId: data.user_id, | ||
}); | ||
} else if (data.post_type === 'notice' && data.notice_type === 'group_increase') { | ||
this.emit('group_increase', { | ||
userId: data.user_id, | ||
groupId: data.group_id!, | ||
operatorId: data.operator_id || data.user_id, | ||
}); | ||
} else if (data.post_type === 'notice' && data.notice_type === 'group_decrease') { | ||
this.emit('group_decrease', { | ||
userId: data.user_id, | ||
groupId: data.group_id!, | ||
operatorId: data.operator_id || data.user_id, | ||
}); | ||
} else if (data.post_type === 'notice' && data.notice_type === 'group_admin') { | ||
this.emit('group_admin', { | ||
userId: data.user_id, | ||
groupId: data.group_id!, | ||
operation: data.sub_type === 'set' ? 'set' : 'unset', | ||
}); | ||
} else if (data.post_type === 'notice' && data.notice_type === 'group_ban') { | ||
this.emit('group_ban', { | ||
userId: data.user_id, | ||
groupId: data.group_id!, | ||
operatorId: data.operator_id, | ||
time: data.duration!, | ||
}); | ||
} else if (data.post_type === 'meta_event' && data.meta_event_type === 'heartbeat') { | ||
if (data.status.online) { | ||
this.online(); | ||
if (this.onlineTimerId) clearTimeout(this.onlineTimerId); | ||
} | ||
if (this.selfId === -1 && typeof data.self_id === 'number') { | ||
this.selfId = data.self_id; | ||
// this.avatar = `https://q.qlogo.cn/g?b=qq&s=640&nk=${this.selfId}`; | ||
} | ||
} else if (data.data instanceof Object && typeof data.data.message_id === 'number') { | ||
this.ctx.emit('send', { | ||
api: this.api, | ||
messageId: data.data.message_id, | ||
}); | ||
} else if ( | ||
data.post_type === 'notice' && | ||
data.notice_type === 'notify' && | ||
data.sub_type === 'poke' && | ||
data.target_id | ||
) { | ||
this.emit('poke', { | ||
userId: data.user_id, | ||
targetId: data.target_id, | ||
groupId: data.group_id!, | ||
}); | ||
} | ||
if (!this.onlineTimerId) this.onlineTimerId = setTimeout(() => this.offline, 50 * 1000); | ||
} | ||
|
||
public start() { | ||
if (this.config.mode === 'ws-reverse') { | ||
this.ctx.emit('connect', { | ||
adapter: this, | ||
normal: true, | ||
info: `start wsserver at ${this.info}`, | ||
onlyStart: true, | ||
}); | ||
} | ||
this.connectWss(); | ||
} | ||
|
||
public stop() { | ||
this.ctx.emit('disconnect', { | ||
adapter: this, | ||
normal: true, | ||
info: this.config.mode === 'ws' ? `disconnect from ${this.info}` : `stop wsserver at ${this.info}`, | ||
}); | ||
this.socket?.close(); | ||
this.offline(); | ||
} | ||
|
||
public send(action: string, params?: object) { | ||
this.socket?.send(JSON.stringify({ action, params })); | ||
} | ||
|
||
private socket: WebSocket | null = null; | ||
|
||
private async connectWss() { | ||
if (this.config.mode === 'ws-reverse') { | ||
const wss = await WsServer(this.config.port); | ||
const { 0: socket } = wss; | ||
this.socket = socket; | ||
this.ctx.emit('connect', { | ||
adapter: this, | ||
normal: true, | ||
info: `client connect to ${this.info}`, | ||
}); | ||
this.socket?.on('close', () => { | ||
this.ctx.emit('disconnect', { | ||
adapter: this, | ||
normal: false, | ||
info: `unexpected client disconnect from ${this.info}`, | ||
}); | ||
wss[1].close(); | ||
this.connectWss(); | ||
}); | ||
} else { | ||
this.ctx.emit('connect', { | ||
adapter: this, | ||
normal: true, | ||
info: `connect server to ${this.info}`, | ||
}); | ||
this.socket = new WebSocket(`${this.info}`); | ||
this.socket.on('close', () => { | ||
this.ctx.emit('disconnect', { | ||
adapter: this, | ||
normal: false, | ||
info: `unexpected disconnect server from ${this.info}, will reconnect in ${this.config.retry} seconds`, | ||
}); | ||
setTimeout(() => { | ||
if (!this.socket) return; | ||
this.socket.close(); | ||
this.ctx.emit('connect', { | ||
adapter: this, | ||
normal: false, | ||
info: `reconnect server to ${this.info}`, | ||
}); | ||
this.connectWss(); | ||
}, this.config.retry * 1000); | ||
}); | ||
} | ||
this.socket.on('message', data => this.handle(JSON.parse(data.toString()))); | ||
} | ||
|
||
/* global NodeJS */ | ||
private onlineTimerId: NodeJS.Timeout | null = null; | ||
} | ||
|
||
export default OneBotAdapter; |
Oops, something went wrong.