2020-11-13 18:00:22 +01:00
|
|
|
import {ADMIN_API_TOKEN, ADMIN_API_URL} from "../Enum/EnvironmentVariable";
|
|
|
|
import Axios from "axios";
|
|
|
|
import {v4} from "uuid";
|
|
|
|
|
|
|
|
export interface AdminApiData {
|
|
|
|
organizationSlug: string
|
|
|
|
worldSlug: string
|
|
|
|
roomSlug: string
|
|
|
|
mapUrlStart: string
|
|
|
|
tags: string[]
|
|
|
|
policy_type: number
|
|
|
|
userUuid: string
|
|
|
|
messages?: unknown[],
|
|
|
|
textures: CharacterTexture[]
|
|
|
|
}
|
|
|
|
|
2021-01-15 03:19:58 +01:00
|
|
|
export interface AdminBannedData {
|
|
|
|
is_banned: boolean,
|
|
|
|
message: string
|
|
|
|
}
|
|
|
|
|
2020-11-13 18:00:22 +01:00
|
|
|
export interface CharacterTexture {
|
|
|
|
id: number,
|
|
|
|
level: number,
|
|
|
|
url: string,
|
|
|
|
rights: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface FetchMemberDataByUuidResponse {
|
|
|
|
uuid: string;
|
|
|
|
tags: string[];
|
|
|
|
textures: CharacterTexture[];
|
|
|
|
messages: unknown[];
|
|
|
|
}
|
|
|
|
|
|
|
|
class AdminApi {
|
|
|
|
|
|
|
|
async fetchMapDetails(organizationSlug: string, worldSlug: string, roomSlug: string|undefined): Promise<AdminApiData> {
|
|
|
|
if (!ADMIN_API_URL) {
|
|
|
|
return Promise.reject('No admin backoffice set!');
|
|
|
|
}
|
|
|
|
|
|
|
|
const params: { organizationSlug: string, worldSlug: string, roomSlug?: string } = {
|
|
|
|
organizationSlug,
|
|
|
|
worldSlug
|
|
|
|
};
|
|
|
|
|
|
|
|
if (roomSlug) {
|
|
|
|
params.roomSlug = roomSlug;
|
|
|
|
}
|
|
|
|
|
|
|
|
const res = await Axios.get(ADMIN_API_URL + '/api/map',
|
|
|
|
{
|
|
|
|
headers: {"Authorization": `${ADMIN_API_TOKEN}`},
|
|
|
|
params
|
|
|
|
}
|
|
|
|
)
|
|
|
|
return res.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
async fetchMemberDataByUuid(uuid: string): Promise<FetchMemberDataByUuidResponse> {
|
|
|
|
if (!ADMIN_API_URL) {
|
|
|
|
return Promise.reject('No admin backoffice set!');
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
const res = await Axios.get(ADMIN_API_URL+'/api/membership/'+uuid,
|
|
|
|
{ headers: {"Authorization" : `${ADMIN_API_TOKEN}`} }
|
|
|
|
)
|
|
|
|
return res.data;
|
|
|
|
} catch (e) {
|
|
|
|
if (e?.response?.status == 404) {
|
|
|
|
// If we get an HTTP 404, the token is invalid. Let's perform an anonymous login!
|
|
|
|
console.warn('Cannot find user with uuid "'+uuid+'". Performing an anonymous login instead.');
|
|
|
|
return {
|
|
|
|
uuid: v4(),
|
|
|
|
tags: [],
|
|
|
|
textures: [],
|
|
|
|
messages: [],
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fetchMemberDataByToken(organizationMemberToken: string): Promise<AdminApiData> {
|
|
|
|
if (!ADMIN_API_URL) {
|
|
|
|
return Promise.reject('No admin backoffice set!');
|
|
|
|
}
|
|
|
|
//todo: this call can fail if the corresponding world is not activated or if the token is invalid. Handle that case.
|
|
|
|
const res = await Axios.get(ADMIN_API_URL+'/api/login-url/'+organizationMemberToken,
|
|
|
|
{ headers: {"Authorization" : `${ADMIN_API_TOKEN}`} }
|
|
|
|
)
|
|
|
|
return res.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
async fetchCheckUserByToken(organizationMemberToken: string): Promise<AdminApiData> {
|
|
|
|
if (!ADMIN_API_URL) {
|
|
|
|
return Promise.reject('No admin backoffice set!');
|
|
|
|
}
|
|
|
|
//todo: this call can fail if the corresponding world is not activated or if the token is invalid. Handle that case.
|
|
|
|
const res = await Axios.get(ADMIN_API_URL+'/api/check-user/'+organizationMemberToken,
|
|
|
|
{ headers: {"Authorization" : `${ADMIN_API_TOKEN}`} }
|
|
|
|
)
|
|
|
|
return res.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
reportPlayer(reportedUserUuid: string, reportedUserComment: string, reporterUserUuid: string) {
|
|
|
|
return Axios.post(`${ADMIN_API_URL}/api/report`, {
|
|
|
|
reportedUserUuid,
|
|
|
|
reportedUserComment,
|
|
|
|
reporterUserUuid,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: {"Authorization": `${ADMIN_API_TOKEN}`}
|
|
|
|
});
|
|
|
|
}
|
2021-01-15 03:19:58 +01:00
|
|
|
|
|
|
|
async verifyBanUser(organizationMemberToken: string, ipAddress: string, room: string): Promise<AdminBannedData> {
|
|
|
|
if (!ADMIN_API_URL) {
|
|
|
|
return Promise.reject('No admin backoffice set!');
|
|
|
|
}
|
|
|
|
//todo: this call can fail if the corresponding world is not activated or if the token is invalid. Handle that case.
|
|
|
|
return Axios.get(ADMIN_API_URL + '/api/check-moderate-user/' + ipAddress + '/' + organizationMemberToken + '/room/' + room,
|
|
|
|
{headers: {"Authorization": `${ADMIN_API_TOKEN}`}}
|
|
|
|
).then((data) => {
|
|
|
|
return data.data;
|
|
|
|
});
|
|
|
|
}
|
2020-11-13 18:00:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export const adminApi = new AdminApi();
|