botvX_mjs/commands/settings.mjs

142 lines
4 KiB
JavaScript
Raw Normal View History

import { languages, getMessage } from '../util/lang.mjs'
import { writeFileSync } from "fs"
export default {
2024-08-12 04:33:43 -04:00
execute: (c) => {
const subcmd = c.args.splice(0, 1)[0]
switch (subcmd) {
2024-08-15 05:43:42 -04:00
case 'set':{
const allowedKeys = ['colorPrimary', 'colorSecondary', 'lang']
2024-08-12 04:33:43 -04:00
const key = c.args.splice(0, 1)[0]
2024-08-15 05:43:42 -04:00
if (!allowedKeys.includes(key)) {
2024-08-12 04:33:43 -04:00
c.reply({
text: getMessage(c.lang, 'command.settings.error.invalidKey'),
color: c.colors.secondary
2024-08-15 05:43:42 -04:00
})
return
2024-08-12 04:33:43 -04:00
}
2024-08-15 05:43:42 -04:00
const value = c.args.join(' ')
if (value === '' && key === 'lang') {
2024-08-12 04:33:43 -04:00
// Show all valid languages to user
2024-08-15 05:43:42 -04:00
for (const i in languages) {
2024-08-12 04:33:43 -04:00
c.reply({
2024-08-15 05:43:42 -04:00
translate: '%s (%s)',
2024-08-12 04:33:43 -04:00
color: c.colors.secondary,
2024-08-15 05:43:42 -04:00
with: [
2024-08-12 04:33:43 -04:00
{
text: getMessage(languages[i], 'language.name'),
2024-08-15 05:43:42 -04:00
color: c.colors.primary
2024-08-12 04:33:43 -04:00
},
{
text: getMessage(languages[i], 'language.region'),
color: c.colors.primary
}
],
2024-08-15 05:43:42 -04:00
hoverEvent: {
action: 'show_text',
2024-08-12 04:33:43 -04:00
value: {
translate: getMessage(languages[i], 'command.settings.setLanguage'),
2024-08-15 05:43:42 -04:00
with: [
2024-08-12 04:33:43 -04:00
{
text: `${c.prefix}settings set lang ${languages[i]}`,
color: c.colors.secondary
}
]
}
}
})
}
return
}
2024-08-15 05:43:42 -04:00
if (value === '') {
2024-08-12 04:33:43 -04:00
c.reply({
text: getMessage(c.lang, 'command.settings.error.mustProvideValue'),
color: c.colors.secondary
2024-08-15 05:43:42 -04:00
})
return
2024-08-12 04:33:43 -04:00
}
2024-08-15 05:43:42 -04:00
if (key === 'lang' && !languages.includes(value)) {
2024-08-12 04:33:43 -04:00
c.reply({
text: getMessage(c.lang, 'command.settings.error.invalidLanguage'),
color: c.colors.secondary
2024-08-15 05:43:42 -04:00
})
return
2024-08-12 04:33:43 -04:00
}
c.prefs[key] = value
// Save to file
writeFileSync(`userPref/${c.uuid}.json`, JSON.stringify(c.prefs))
2024-08-12 04:33:43 -04:00
// Delete require cache
/*for (const i in require.cache) {
2024-08-15 05:43:42 -04:00
if (i.endsWith(`${c.uuid}.json`)) delete require.cache[i]
}*/
2024-08-12 04:33:43 -04:00
c.reply({
text: getMessage(c.lang, 'command.settings.saved'),
color: c.colors.secondary
2024-08-15 05:43:42 -04:00
})
break
}
case 'get':
2024-08-12 04:33:43 -04:00
c.reply({
2024-08-15 05:43:42 -04:00
translate: '%s: %s',
2024-08-13 02:25:59 -04:00
color: c.colors.primary,
2024-08-15 05:43:42 -04:00
with: [
2024-08-12 04:33:43 -04:00
{
text: getMessage(c.lang, 'command.settings.get.colorPrimary'),
color: c.colors.secondary
},
{
text: c.colors.primary,
color: c.colors.primary
}
]
})
c.reply({
2024-08-15 05:43:42 -04:00
translate: '%s: %s',
2024-08-13 02:25:59 -04:00
color: c.colors.primary,
2024-08-15 05:43:42 -04:00
with: [
2024-08-12 04:33:43 -04:00
{
text: getMessage(c.lang, 'command.settings.get.colorSecondary'),
color: c.colors.secondary
},
{
text: c.colors.secondary,
color: c.colors.secondary
}
]
})
c.reply({
2024-08-15 05:43:42 -04:00
translate: '%s: %s (%s)',
2024-08-13 02:25:59 -04:00
color: c.colors.primary,
2024-08-15 05:43:42 -04:00
with: [
2024-08-12 04:33:43 -04:00
{
text: getMessage(c.lang, 'command.settings.get.language'),
2024-08-13 02:25:59 -04:00
color: c.colors.secondary
2024-08-12 04:33:43 -04:00
},
{
text: getMessage(c.lang, 'language.name'),
color: c.colors.primary
},
{
text: getMessage(c.lang, 'language.region'),
color: c.colors.primary
}
]
})
break
default:
c.reply({
translate: getMessage(c.lang, 'command.cloop.error.subcommand'),
color: c.colors.secondary,
with: [
{
text: `${c.prefix}help settings`,
color: c.colors.primary
}
]
})
}
}
}