You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
import axios from "axios";
|
|
|
|
export default class PlayerApi {
|
|
store = {
|
|
permition: null,
|
|
steam_data: null,
|
|
ban: null
|
|
}
|
|
|
|
discord = null;
|
|
|
|
auth(value) {
|
|
switch (value) {
|
|
case "steam": return document.cookie.indexOf("steam64_secured=") !== -1 && document.cookie.indexOf("steam64=") !== -1
|
|
case "discord": return document.cookie.indexOf("discord") !== -1
|
|
default: return this.auth('steam') && this.auth('discord');
|
|
}
|
|
}
|
|
|
|
async loadFull() {
|
|
return axios.get(`/api/profile/current`)
|
|
.then(response => {
|
|
if (response.status === 200) this.store = response.data;
|
|
})
|
|
.catch(() => {
|
|
this.store = null;
|
|
});
|
|
}
|
|
|
|
async loadThis(value) {
|
|
return axios.get(`/api/profile/current?requests=${value}`)
|
|
.then(response => {
|
|
if (response.status === 200) this.store[value] = response.data[value];
|
|
})
|
|
.catch(() => {
|
|
this.store[value] = null;
|
|
});
|
|
}
|
|
|
|
async loadDiscord() {
|
|
return axios.get(`https://tf2.pblr-nyk.pro/api/auth/discord`)
|
|
.then(response => {
|
|
if (response.status === 200) this.discord = response.data;
|
|
})
|
|
.catch(() => {
|
|
this.discord = null;
|
|
});
|
|
}
|
|
|
|
async load() {
|
|
console.log(`[PlayerAPI] request info`);
|
|
if (this.auth('steam')) await this.loadFull();
|
|
if (this.auth('discord')) await this.loadDiscord();
|
|
}
|
|
}
|