diff --git a/src/api/GlobalApi.js b/src/api/GlobalApi.js index 9f35e9f..eaf37c0 100644 --- a/src/api/GlobalApi.js +++ b/src/api/GlobalApi.js @@ -18,7 +18,8 @@ export default class GlobalApi { "e":[], "n":[] }, - 'uniq': null + 'uniq': null, + 'builddate':0 } loading = false; failed = false; @@ -62,6 +63,23 @@ export default class GlobalApi { }) } + async fillOther() { + console.log(`[API] load: other`); + this.load_stages.add("other"); + return await axios.get(`/api/stats?filter=other`) + .then(response => response.data) + .then(response => { + this.stats["builddate"] = response["builddate"]; + }) + .catch(err => { + console.log(`[API] cannot request other, err: ${err}`); + throw new Error("BLYA"); + }).finally(() => { + this.load_stages.remove("other"); + }) + } + + async fillServers() { this.load_stages.add("servers") console.log(`[API] load: servers`); @@ -101,7 +119,8 @@ export default class GlobalApi { this.admin.load(this.load_stages), this.player.load(this.load_stages), this.vip.getVipPrices(this.load_stages), - this.vip.getVipStatistic(this.load_stages)] + this.vip.getVipStatistic(this.load_stages), + this.fillOther()] ).then(() => { console.log("[Loader] success end"); this.loading = false; diff --git a/src/api/PlayerApi.js b/src/api/PlayerApi.js index 0d26003..bd65669 100644 --- a/src/api/PlayerApi.js +++ b/src/api/PlayerApi.js @@ -14,6 +14,8 @@ export default class PlayerApi { discord = null; + success_auth = false; + auth(value) { switch (value) { case "steam": return document.cookie.indexOf("steam64_secured=") !== -1 && document.cookie.indexOf("steam64=") !== -1 @@ -62,7 +64,10 @@ export default class PlayerApi { async loadFull() { return axios.get(`/api/profile/current`) .then(response => { - if (response.status === 200) this.store = response.data; + if (response.status === 200) { + this.store = response.data; + this.success_auth = true; + } }) .catch(() => { this.store = null; diff --git a/src/components/TabsMenuElements/BackendStatus/BackendStatus.vue b/src/components/TabsMenuElements/BackendStatus/BackendStatus.vue index cf86d51..e01fa2e 100644 --- a/src/components/TabsMenuElements/BackendStatus/BackendStatus.vue +++ b/src/components/TabsMenuElements/BackendStatus/BackendStatus.vue @@ -7,8 +7,9 @@
-
Сборка от {{this.$API.builddate !== null ? new Date(this.$API.builddate).toLocaleString() : 'Dev Build'}}
-
Ты можешь искать других игроков здесь, но сначала надо авторизоваться!
+
Сборка Frontend от {{this.$API.builddate !== null ? new Date(this.$API.builddate).toLocaleString() : 'Dev Build'}}
+
Сборка Backend от {{this.$API.stats["builddate"] !== null ? new Date(parseInt(this.$API.stats["builddate"])*1000).toLocaleString() : 'Dev Build'}}
+
Ты можешь искать других игроков здесь, но сначала надо авторизоваться!
Найти игрока