diff --git a/src/api/AdminApi.js b/src/api/AdminApi.js index aa043b4..d4e8d14 100644 --- a/src/api/AdminApi.js +++ b/src/api/AdminApi.js @@ -1,5 +1,5 @@ import axios from "axios"; - +import Random from "@/api/Random"; export default class AdminApi { permition = { ban:false, @@ -9,7 +9,7 @@ export default class AdminApi { } async checkPermition(name) { - return axios.options(`/api/admin/${name}`) + return axios.options(`/api/admin/${name}` + Random.getRndWebNew()) .then(response => { if (response.status === 200) this.permition[name] = true; }) @@ -19,7 +19,7 @@ export default class AdminApi { } async checkAltAccess(){ - return axios.options('/api/admin/db/alt').then( + return axios.options('/api/admin/db/alt' + Random.getRndWebNew()).then( response => {if (response.status === 200) this.permition.alt = true; else this.permition.alt = false;} ).catch(()=>this.permition.alt = false) diff --git a/src/api/GlobalApi.js b/src/api/GlobalApi.js index cbd2175..8926661 100644 --- a/src/api/GlobalApi.js +++ b/src/api/GlobalApi.js @@ -4,6 +4,7 @@ import PlayerApi from "@/api/PlayerApi"; import Stages from "@/api/Stages"; import VipAPI from "@/api/VipApi"; import {VERSION} from "@/api/version"; +import Random from "@/api/Random"; export default class GlobalApi { stats = { @@ -56,7 +57,7 @@ export default class GlobalApi { async fillThis(value) { console.log(`[API] load: ${value}`); this.load_stages.add(value); - return await axios.get(`/api/stats?filter=${value}`) + return await axios.get(`/api/stats?filter=${value}` + Random.getRndWebAppend()) .then(response => response.data) .then(response => { this.stats = Object.assign(this.stats, response); @@ -72,7 +73,7 @@ export default class GlobalApi { async fillOther() { console.log(`[API] load: other`); this.load_stages.add("other"); - return await axios.get(`/api/stats?filter=other`) + return await axios.get(`/api/stats?filter=other` + Random.getRndWebAppend()) .then(response => response.data) .then(response => { this.stats["builddate"] = response["builddate"]; @@ -90,7 +91,7 @@ export default class GlobalApi { async fillServers() { this.load_stages.add("servers") console.log(`[API] load: servers`); - return axios.get("/api/stats?filter=servers") + return axios.get("/api/stats?filter=servers" + Random.getRndWebAppend()) .then(response => response.data['servers']) .then(response => { let srvs = { diff --git a/src/api/PlayerApi.js b/src/api/PlayerApi.js index 430acf1..f3f1b46 100644 --- a/src/api/PlayerApi.js +++ b/src/api/PlayerApi.js @@ -1,5 +1,5 @@ import axios from "axios"; - +import Random from "@/api/Random"; export const PLAYER_REQUESTS = "steam_data,lastplay,permition,ban,attached_discord"; export default class PlayerApi { @@ -65,7 +65,7 @@ export default class PlayerApi { } async loadFull() { - return axios.get(`/api/profile/current?requests=auth`) + return axios.get(`/api/profile/current?requests=auth` + Random.getRndWebAppend()) .then(response => { if (response.status === 200) { this.store = response.data; @@ -78,7 +78,7 @@ export default class PlayerApi { } async loadThis(value) { - return axios.get(`/api/profile/current?requests=${value}`) + return axios.get(`/api/profile/current?requests=${value}` + Random.getRndWebAppend()) .then(response => { if (response.status === 200) { this.store = response.data; @@ -91,7 +91,7 @@ export default class PlayerApi { } async loadDiscord() { - return axios.get(`api/auth/discord`) + return axios.get(`api/auth/discord` + Random.getRndWebNew()) .then(response => { if (response.status === 200) this.discord = response.data; }) diff --git a/src/api/Random.js b/src/api/Random.js new file mode 100644 index 0000000..6ddf527 --- /dev/null +++ b/src/api/Random.js @@ -0,0 +1,12 @@ +export default { + name: "Random", + getRndStr(){ + return (Math.random() + 1).toString(36); + }, + getRndWebAppend(){ + return `&rnd=${this.getRndStr()}`; + }, + getRndWebNew(){ + return `?rnd=${this.getRndStr()}`; + } +} \ No newline at end of file diff --git a/src/api/VipApi.js b/src/api/VipApi.js index 4600275..df90fc8 100644 --- a/src/api/VipApi.js +++ b/src/api/VipApi.js @@ -1,4 +1,5 @@ import axios from "axios"; +import Random from "@/api/Random"; export default class VipAPI { @@ -10,7 +11,7 @@ export default class VipAPI { async getVipPrices(stages) { console.log(`[API] load: vip prices`); stages.add("vip prices"); - return await axios.get(`/api/external/vip`) + return await axios.get(`/api/external/vip` + Random.getRndWebNew()) .then(response => response.data) .then(response => { this.vip_prices = response; @@ -29,7 +30,7 @@ export default class VipAPI { async getVipStatistic(stages) { console.log(`[API] load: vip statistic`); stages.add("vip statistic"); - return await axios.get(`/api/stats?filter=donate`) + return await axios.get(`/api/stats?filter=donate` + Random.getRndWebAppend()) .then(response => response.data) .then(response => { this.vip_statistic = response['donate']; diff --git a/src/components/ActionDialogs/AdminDialog.vue b/src/components/ActionDialogs/AdminDialog.vue index 0d47bf6..df88246 100644 --- a/src/components/ActionDialogs/AdminDialog.vue +++ b/src/components/ActionDialogs/AdminDialog.vue @@ -67,6 +67,7 @@