mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
97 lines
2.4 KiB
TypeScript
97 lines
2.4 KiB
TypeScript
export enum NotificationMode {
|
|
'gotify' = 'gotify',
|
|
'goCqHttpBot' = 'goCqHttpBot',
|
|
'serverChan' = 'serverChan',
|
|
'pushDeer' = 'pushDeer',
|
|
'bark' = 'bark',
|
|
'telegramBot' = 'telegramBot',
|
|
'dingtalkBot' = 'dingtalkBot',
|
|
'weWorkBot' = 'weWorkBot',
|
|
'weWorkApp' = 'weWorkApp',
|
|
'iGot' = 'iGot',
|
|
'pushPlus' = 'pushPlus',
|
|
'email' = 'email',
|
|
}
|
|
|
|
abstract class NotificationBaseInfo {
|
|
public type!: NotificationMode;
|
|
}
|
|
|
|
export class GotifyNotification extends NotificationBaseInfo {
|
|
public gotifyUrl = '';
|
|
public gotifyToken = '';
|
|
public gotifyPriority = 0;
|
|
}
|
|
|
|
export class GoCqHttpBotNotification extends NotificationBaseInfo {
|
|
public goCqHttpBotUrl = '';
|
|
public goCqHttpBotToken = '';
|
|
public goCqHttpBotQq = '';
|
|
}
|
|
|
|
export class ServerChanNotification extends NotificationBaseInfo {
|
|
public serverChanKey = '';
|
|
}
|
|
|
|
export class PushDeerNotification extends NotificationBaseInfo {
|
|
public pushDeerKey = '';
|
|
}
|
|
|
|
export class BarkNotification extends NotificationBaseInfo {
|
|
public barkPush = '';
|
|
public barkIcon = 'http://qn.whyour.cn/logo.png';
|
|
public barkSound = '';
|
|
public barkGroup = 'qinglong';
|
|
}
|
|
|
|
export class TelegramBotNotification extends NotificationBaseInfo {
|
|
public telegramBotToken = '';
|
|
public telegramBotUserId = '';
|
|
public telegramBotProxyHost = '';
|
|
public telegramBotProxyPort = '';
|
|
public telegramBotProxyAuth = '';
|
|
public telegramBotApiHost = 'api.telegram.org';
|
|
}
|
|
|
|
export class DingtalkBotNotification extends NotificationBaseInfo {
|
|
public dingtalkBotToken = '';
|
|
public dingtalkBotSecret = '';
|
|
}
|
|
|
|
export class WeWorkBotNotification extends NotificationBaseInfo {
|
|
public weWorkBotKey = '';
|
|
}
|
|
|
|
export class WeWorkAppNotification extends NotificationBaseInfo {
|
|
public weWorkAppKey = '';
|
|
}
|
|
|
|
export class IGotNotification extends NotificationBaseInfo {
|
|
public iGotPushKey = '';
|
|
}
|
|
|
|
export class PushPlusNotification extends NotificationBaseInfo {
|
|
public pushPlusToken = '';
|
|
public pushPlusUser = '';
|
|
}
|
|
|
|
export class EmailNotification extends NotificationBaseInfo {
|
|
public emailService: string = '';
|
|
public emailUser: string = '';
|
|
public emailPass: string = '';
|
|
}
|
|
|
|
export interface NotificationInfo
|
|
extends GoCqHttpBotNotification,
|
|
GotifyNotification,
|
|
ServerChanNotification,
|
|
PushDeerNotification,
|
|
BarkNotification,
|
|
TelegramBotNotification,
|
|
DingtalkBotNotification,
|
|
WeWorkBotNotification,
|
|
WeWorkAppNotification,
|
|
IGotNotification,
|
|
PushPlusNotification,
|
|
EmailNotification {}
|