2020-07-29 00:48:51 +03:00
|
|
|
import { CooldownManager, PluginOptions } from "knub";
|
2020-07-27 00:08:01 +02:00
|
|
|
import { SelfGrantableRolesPluginType, ConfigSchema, defaultSelfGrantableRoleEntry } from "./types";
|
2020-10-01 01:43:38 +03:00
|
|
|
import { zeppelinGuildPlugin } from "../ZeppelinPluginBlueprint";
|
|
|
|
import { trimPluginDescription } from "../../utils";
|
2020-07-27 00:08:01 +02:00
|
|
|
import { RoleAddCmd } from "./commands/RoleAddCmd";
|
|
|
|
import { RoleRemoveCmd } from "./commands/RoleRemoveCmd";
|
|
|
|
import { RoleHelpCmd } from "./commands/RoleHelpCmd";
|
|
|
|
|
|
|
|
const defaultOptions: PluginOptions<SelfGrantableRolesPluginType> = {
|
|
|
|
config: {
|
|
|
|
entries: {},
|
|
|
|
mention_roles: false,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-05-23 14:35:16 +03:00
|
|
|
export const SelfGrantableRolesPlugin = zeppelinGuildPlugin<SelfGrantableRolesPluginType>()({
|
|
|
|
name: "self_grantable_roles",
|
2020-07-30 13:08:06 +03:00
|
|
|
showInDocs: true,
|
|
|
|
|
2020-07-27 00:08:01 +02:00
|
|
|
configSchema: ConfigSchema,
|
|
|
|
defaultOptions,
|
|
|
|
|
|
|
|
info: {
|
|
|
|
prettyName: "Self-grantable roles",
|
|
|
|
description: trimPluginDescription(`
|
|
|
|
Allows users to grant themselves roles via a command
|
|
|
|
`),
|
|
|
|
configurationGuide: trimPluginDescription(`
|
|
|
|
### Basic configuration
|
|
|
|
In this example, users can add themselves platform roles on the channel 473087035574321152 by using the
|
|
|
|
\`!role\` command. For example, \`!role pc ps4\` to add both the "pc" and "ps4" roles as specified below.
|
|
|
|
|
|
|
|
~~~yml
|
|
|
|
self_grantable_roles:
|
|
|
|
config:
|
|
|
|
entries:
|
|
|
|
basic:
|
|
|
|
roles:
|
|
|
|
"543184300250759188": ["pc", "computer"]
|
|
|
|
"534710505915547658": ["ps4", "ps", "playstation"]
|
|
|
|
"473085927053590538": ["xbox", "xb1", "xb"]
|
|
|
|
overrides:
|
|
|
|
- channel: "473087035574321152"
|
|
|
|
config:
|
|
|
|
entries:
|
|
|
|
basic:
|
2020-09-30 00:25:00 +03:00
|
|
|
can_use: true
|
2020-07-27 00:08:01 +02:00
|
|
|
~~~
|
|
|
|
|
|
|
|
### Maximum number of roles
|
|
|
|
This is identical to the basic example above, but users can only choose 1 role.
|
|
|
|
|
|
|
|
~~~yml
|
|
|
|
self_grantable_roles:
|
|
|
|
config:
|
|
|
|
entries:
|
|
|
|
basic:
|
|
|
|
roles:
|
|
|
|
"543184300250759188": ["pc", "computer"]
|
|
|
|
"534710505915547658": ["ps4", "ps", "playstation"]
|
|
|
|
"473085927053590538": ["xbox", "xb1", "xb"]
|
|
|
|
max_roles: 1
|
|
|
|
overrides:
|
|
|
|
- channel: "473087035574321152"
|
|
|
|
config:
|
|
|
|
entries:
|
|
|
|
basic:
|
2020-08-06 01:13:16 +03:00
|
|
|
can_use: true
|
2020-07-27 00:08:01 +02:00
|
|
|
~~~
|
|
|
|
`),
|
|
|
|
},
|
|
|
|
|
|
|
|
configPreprocessor: options => {
|
|
|
|
const config = options.config;
|
|
|
|
for (const [key, entry] of Object.entries(config.entries)) {
|
|
|
|
// Apply default entry config
|
|
|
|
config.entries[key] = { ...defaultSelfGrantableRoleEntry, ...entry };
|
|
|
|
|
|
|
|
// Normalize alias names
|
|
|
|
if (entry.roles) {
|
|
|
|
for (const [roleId, aliases] of Object.entries(entry.roles)) {
|
|
|
|
entry.roles[roleId] = aliases.map(a => a.toLowerCase());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return { ...options, config };
|
|
|
|
},
|
|
|
|
|
|
|
|
// prettier-ignore
|
|
|
|
commands: [
|
|
|
|
RoleHelpCmd,
|
|
|
|
RoleRemoveCmd,
|
|
|
|
RoleAddCmd,
|
2020-07-29 00:48:51 +03:00
|
|
|
],
|
|
|
|
|
2021-05-23 17:13:11 +03:00
|
|
|
beforeLoad(pluginData) {
|
2020-07-29 00:48:51 +03:00
|
|
|
pluginData.state.cooldowns = new CooldownManager();
|
|
|
|
},
|
2020-07-27 00:08:01 +02:00
|
|
|
});
|