-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguage.js
More file actions
49 lines (41 loc) · 1.29 KB
/
language.js
File metadata and controls
49 lines (41 loc) · 1.29 KB
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
42
43
44
45
46
47
48
49
const mongo = require('./db/mongo')
const languageSchema = require('./db/language-schema')
const lang = require('./lang.json')
const guildLanguages = {}
/**
* Loads the language for each guild form the database
* @param {Discord.Client} client
*/
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 : "english"
}
} finally {
mongoose.connection.close()
}
})
}
/**
* Changes the language for a guild
* @param {Discord.Guild} guild
* @param {string} language
*/
const setLanguage = (guild, language) => {
guildLanguages[guild.id] = language.toLowerCase()
}
module.exports = (guild, textId) => {
if(!lang.translations[textId]){
throw new Error (`Unknown textId: "${textId}"`)
}
const selectedLanguage = guildLanguages[guild.id];
return lang.translations[textId][selectedLanguage]
}
module.exports.loadLanguages = loadLanguages
module.exports.setLanguage = setLanguage
module.exports.guildLanguages = guildLanguages