|
@ -96,6 +96,7 @@ import DiscordSvg from "@/components/Others/CustomSvg/DiscordSvg.vue"; |
|
|
import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue"; |
|
|
import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue"; |
|
|
import axios from "axios"; |
|
|
import axios from "axios"; |
|
|
import SnackLoader from "@/components/Others/Loader/SnackLoader.vue"; |
|
|
import SnackLoader from "@/components/Others/Loader/SnackLoader.vue"; |
|
|
|
|
|
import Random from "@/api/Random"; |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
name: "ProfileContainer", |
|
|
name: "ProfileContainer", |
|
@ -154,10 +155,10 @@ export default { |
|
|
this.player_ip = "Показать"; |
|
|
this.player_ip = "Показать"; |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
axios.options("api/crypto").then((response) => { |
|
|
axios.options("api/crypto" + Random.getRndWebNew()).then((response) => { |
|
|
this.player_ip = "ждем..."; |
|
|
this.player_ip = "ждем..."; |
|
|
if (response.status === 200) { |
|
|
if (response.status === 200) { |
|
|
axios.post("api/crypto/decrypt", {"ip":this.player['play_on']['ip']}).then(response => { |
|
|
axios.post("api/crypto/decrypt" + Random.getRndWebNew(), {"ip":this.player['play_on']['ip']}).then(response => { |
|
|
this.player_ip = response.data['ip']; |
|
|
this.player_ip = response.data['ip']; |
|
|
}) |
|
|
}) |
|
|
} |
|
|
} |
|
@ -168,7 +169,7 @@ export default { |
|
|
loadingDonates(){ |
|
|
loadingDonates(){ |
|
|
if (this.donates.loading) return; |
|
|
if (this.donates.loading) return; |
|
|
this.donates.loading = true; |
|
|
this.donates.loading = true; |
|
|
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=donates`) |
|
|
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=donates` + Random.getRndWebAppend()) |
|
|
.then(response => { |
|
|
.then(response => { |
|
|
this.donates.store = response.data['donates']; |
|
|
this.donates.store = response.data['donates']; |
|
|
this.donates.loaded = true; |
|
|
this.donates.loaded = true; |
|
@ -183,7 +184,7 @@ export default { |
|
|
loadingBanList(){ |
|
|
loadingBanList(){ |
|
|
if (this.ban_list.loading || this.ban_list.loaded) return; |
|
|
if (this.ban_list.loading || this.ban_list.loaded) return; |
|
|
this.ban_list.loading = true; |
|
|
this.ban_list.loading = true; |
|
|
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=ban_list`) |
|
|
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=ban_list` + Random.getRndWebAppend()) |
|
|
.then(response => { |
|
|
.then(response => { |
|
|
this.ban_list.store = response.data['ban_list']; |
|
|
this.ban_list.store = response.data['ban_list']; |
|
|
this.ban_list.loaded = true; |
|
|
this.ban_list.loaded = true; |
|
@ -198,7 +199,7 @@ export default { |
|
|
if (this.usertime.loading || this.usertime.loaded) return; |
|
|
if (this.usertime.loading || this.usertime.loaded) return; |
|
|
this.usertime.loading = true; |
|
|
this.usertime.loading = true; |
|
|
this.usertime.total = "считаем сколько"; |
|
|
this.usertime.total = "считаем сколько"; |
|
|
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=usertime`) |
|
|
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=usertime` + Random.getRndWebAppend()) |
|
|
.then(response => { |
|
|
.then(response => { |
|
|
this.usertime.store = this.$API.player.getGametime(this.$API, response.data['gametime']); |
|
|
this.usertime.store = this.$API.player.getGametime(this.$API, response.data['gametime']); |
|
|
this.usertime.total = this.timeFormat(this.$API.player.getGametimeTotal(response.data['gametime'])); |
|
|
this.usertime.total = this.timeFormat(this.$API.player.getGametimeTotal(response.data['gametime'])); |
|
@ -214,7 +215,7 @@ export default { |
|
|
loadingAltList(){ |
|
|
loadingAltList(){ |
|
|
if (this.altaccount.loading || this.altaccount.loaded) return; |
|
|
if (this.altaccount.loading || this.altaccount.loaded) return; |
|
|
this.altaccount.loading = true; |
|
|
this.altaccount.loading = true; |
|
|
axios.get(`api/admin/db/alt?steam64=${this.player['steamids']['steam64']}`) |
|
|
axios.get(`api/admin/db/alt?steam64=${this.player['steamids']['steam64']}` + Random.getRndWebAppend()) |
|
|
.then(response => { |
|
|
.then(response => { |
|
|
if (response.status === 200) { |
|
|
if (response.status === 200) { |
|
|
this.altaccount.store = response.data.map(url => url.split('/').pop()).filter(s64 => s64 !== this.player['steamids']['steam64']); |
|
|
this.altaccount.store = response.data.map(url => url.split('/').pop()).filter(s64 => s64 !== this.player['steamids']['steam64']); |
|
|