mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 15:00:00 +00:00
77 lines
2.6 KiB
TypeScript
77 lines
2.6 KiB
TypeScript
import * as t from "io-ts";
|
|
import { GuildPluginData } from "knub";
|
|
import { Awaitable } from "knub/dist/utils";
|
|
import { AutomodContext, AutomodPluginType } from "./types";
|
|
|
|
interface BaseAutomodTriggerMatchResult {
|
|
extraContexts?: AutomodContext[];
|
|
|
|
silentClean?: boolean; // TODO: Maybe generalize to a "silent" value in general, which mutes alert/log
|
|
|
|
summary?: string;
|
|
fullSummary?: string;
|
|
}
|
|
|
|
export type AutomodTriggerMatchResult<TExtra extends any = unknown> = unknown extends TExtra
|
|
? BaseAutomodTriggerMatchResult
|
|
: BaseAutomodTriggerMatchResult & { extra: TExtra };
|
|
|
|
type AutomodTriggerMatchFn<TConfigType, TMatchResultExtra> = (meta: {
|
|
ruleName: string;
|
|
pluginData: GuildPluginData<AutomodPluginType>;
|
|
context: AutomodContext;
|
|
triggerConfig: TConfigType;
|
|
}) => Awaitable<null | undefined | AutomodTriggerMatchResult<TMatchResultExtra>>;
|
|
|
|
type AutomodTriggerRenderMatchInformationFn<TConfigType, TMatchResultExtra> = (meta: {
|
|
ruleName: string;
|
|
pluginData: GuildPluginData<AutomodPluginType>;
|
|
contexts: AutomodContext[];
|
|
triggerConfig: TConfigType;
|
|
matchResult: AutomodTriggerMatchResult<TMatchResultExtra>;
|
|
}) => Awaitable<string>;
|
|
|
|
export interface AutomodTriggerBlueprint<TConfigType extends t.Any, TMatchResultExtra> {
|
|
configType: TConfigType;
|
|
defaultConfig: Partial<t.TypeOf<TConfigType>>;
|
|
|
|
match: AutomodTriggerMatchFn<t.TypeOf<TConfigType>, TMatchResultExtra>;
|
|
renderMatchInformation: AutomodTriggerRenderMatchInformationFn<t.TypeOf<TConfigType>, TMatchResultExtra>;
|
|
}
|
|
|
|
export function automodTrigger<TMatchResultExtra>(): <TConfigType extends t.Any>(
|
|
blueprint: AutomodTriggerBlueprint<TConfigType, TMatchResultExtra>,
|
|
) => AutomodTriggerBlueprint<TConfigType, TMatchResultExtra>;
|
|
|
|
export function automodTrigger<TConfigType extends t.Any>(
|
|
blueprint: AutomodTriggerBlueprint<TConfigType, unknown>,
|
|
): AutomodTriggerBlueprint<TConfigType, unknown>;
|
|
|
|
export function automodTrigger(...args) {
|
|
if (args.length) {
|
|
return args[0];
|
|
} else {
|
|
return automodTrigger;
|
|
}
|
|
}
|
|
|
|
type AutomodActionApplyFn<TConfigType> = (meta: {
|
|
ruleName: string;
|
|
pluginData: GuildPluginData<AutomodPluginType>;
|
|
contexts: AutomodContext[];
|
|
actionConfig: TConfigType;
|
|
matchResult: AutomodTriggerMatchResult;
|
|
}) => Awaitable<void>;
|
|
|
|
export interface AutomodActionBlueprint<TConfigType extends t.Any> {
|
|
configType: TConfigType;
|
|
defaultConfig: Partial<t.TypeOf<TConfigType>>;
|
|
|
|
apply: AutomodActionApplyFn<t.TypeOf<TConfigType>>;
|
|
}
|
|
|
|
export function automodAction<TConfigType extends t.Any>(
|
|
blueprint: AutomodActionBlueprint<TConfigType>,
|
|
): AutomodActionBlueprint<TConfigType> {
|
|
return blueprint;
|
|
}
|