Fixed permission error & preparing for win build
This commit is contained in:
@@ -3,9 +3,13 @@
|
||||
|
||||
const fs = require("fs")
|
||||
const child = require("child_process")
|
||||
if (!fs.existsSync("./dist/src/index.js")){
|
||||
|
||||
console.log("Removing prebuilds...")
|
||||
fs.rmSync("./dist",{recursive:true,force:true})
|
||||
|
||||
console.log("Compiling the bot...")
|
||||
child.execSync("npm run build")
|
||||
console.log("\n\nFinished compilation!")
|
||||
}
|
||||
//exit when only compilation is required
|
||||
if (process.argv.includes("-%-compile")) process.exit(0)
|
||||
|
||||
//start the bot
|
||||
require("./dist/src/index")
|
||||
+2
-2
@@ -12,8 +12,8 @@
|
||||
],
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "rm -rf ./dist/ && npx tsc -p ./tsconfig.json",
|
||||
"start": "npm run build && node index.js",
|
||||
"build": "node index.js -%-compile && npx tsc -p ./tsconfig.json",
|
||||
"start": "npm run build && node ./dist/src/index.js",
|
||||
"test": "npm run start -- --dev-config --dev-database"
|
||||
},
|
||||
"type": "commonjs",
|
||||
|
||||
@@ -90,8 +90,9 @@ export class ODJsonConfig extends ODConfig {
|
||||
const filename = (file.endsWith(".json")) ? file : file+".json"
|
||||
this.file = customPath ? nodepath.join("./",customPath,filename) : nodepath.join("./config/",filename)
|
||||
this.data = JSON.parse(fs.readFileSync(this.file).toString())
|
||||
}catch{
|
||||
throw new ODSystemError("config \""+nodepath.join("./",customPath ?? "",file)+"\" doesn't exist!")
|
||||
}catch(err){
|
||||
process.emit("uncaughtException",err)
|
||||
throw new ODSystemError("Config \""+nodepath.join("./",customPath ?? "./config/",file)+"\" doesn't exist!")
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -22,8 +22,9 @@ export class ODLanguage extends ODManagerData {
|
||||
const filename = (file.endsWith(".json")) ? file : file+".json"
|
||||
this.file = customPath ? nodepath.join("./",customPath,filename) : nodepath.join("./languages/",filename)
|
||||
this.data = JSON.parse(fs.readFileSync(this.file).toString())
|
||||
}catch{
|
||||
throw new ODSystemError("[API ERROR] Language \""+file+"\" doesn't exist!")
|
||||
}catch(err){
|
||||
process.emit("uncaughtException",err)
|
||||
throw new ODSystemError("Language \""+nodepath.join("./",customPath ?? "./languages/",file)+"\" doesn't exist!")
|
||||
}
|
||||
if (this.data["_TRANSLATION"]) this.metadata = this.data["_TRANSLATION"]
|
||||
}
|
||||
|
||||
@@ -63,6 +63,7 @@ export const addTicketPermissions = async (ticket:api.ODTicket) => {
|
||||
const readAdmins = ticket.option.exists("openticket:admins-readonly") ? ticket.option.get("openticket:admins-readonly").value : []
|
||||
|
||||
admins.concat(readAdmins).forEach(async (admin) => {
|
||||
if (openticket.permissions.exists("openticket:ticket-admin_"+ticket.id.value+"_"+admin)) return
|
||||
const role = await mainServer.roles.fetch(admin)
|
||||
if (!role) return openticket.log("Unable to register permission for ticket admin!","error",[
|
||||
{key:"roleid",value:admin}
|
||||
@@ -77,6 +78,7 @@ export const removeTicketPermissions = async (ticket:api.ODTicket) => {
|
||||
const readAdmins = ticket.option.exists("openticket:admins-readonly") ? ticket.option.get("openticket:admins-readonly").value : []
|
||||
|
||||
admins.concat(readAdmins).forEach(async (admin) => {
|
||||
if (!openticket.permissions.exists("openticket:ticket-admin_"+ticket.id.value+"_"+admin)) return
|
||||
openticket.permissions.remove("openticket:ticket-admin_"+ticket.id.value+"_"+admin)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user