-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguage.js
41 lines (32 loc) · 1.01 KB
/
language.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const mongo = require('./mongo')
const languageSchema = require('./schemas/language-schema')
const lang = require('./lang.json')
// { 'guildId': 'language' }
const guildLanguages = {}
const loadLanguages = async (client) => {
await mongo().then(async (mongoose) => {
try {
for (const guild of client.guilds.cache) {
const guildId = guild[0]
const result = await languageSchema.findOne({
_id: guildId,
})
guildLanguages[guildId] = result ? result.language : 'eng'
}
} finally {
mongoose.connection.close()
}
})
}
const setLanguage = (guild, language) => {
guildLanguages[guild.id] = language.toLowerCase()
}
module.exports = (guild, textId) => {
if (!lang.translations[textId]) {
throw new Error(`Unknown text ID "${textId}"`)
}
const selectedLanguage = guildLanguages[guild.id].toLowerCase()
return lang.translations[textId][selectedLanguage]
}
module.exports.loadLanguages = loadLanguages
module.exports.setLanguage = setLanguage