The notion of public/private repositories (with /_/ and /@/ URLs) is specific to the SAAS version of WorkAdventure. It would be better to avoid leaking the organization/world/room structure of the private SAAS URLs inside the WorkAdventure Github project. Rather than sending http://admin_host/api/map?organizationSlug=...&worldSlug=...&roomSlug=...., we are now sending /api/map&playUri=... where playUri is the full URL of the current game. This allows the backend to act as a complete router. The front (and the pusher) will be able to completely ignore the specifics of URL building (with /@/ and /_/ URLs, etc...) Those details will live only in the admin server, which is way cleaner (and way more powerful).
134 lines
4.1 KiB
TypeScript
134 lines
4.1 KiB
TypeScript
import { ADMIN_API_TOKEN, ADMIN_API_URL } from "../Enum/EnvironmentVariable";
|
|
import Axios from "axios";
|
|
import { GameRoomPolicyTypes } from "_Model/PusherRoom";
|
|
|
|
export interface AdminApiData {
|
|
roomUrl: string;
|
|
mapUrlStart: string;
|
|
tags: string[];
|
|
policy_type: number;
|
|
userUuid: string;
|
|
messages?: unknown[];
|
|
textures: CharacterTexture[];
|
|
}
|
|
|
|
export interface MapDetailsData {
|
|
roomSlug: string;
|
|
mapUrl: string;
|
|
policy_type: GameRoomPolicyTypes;
|
|
tags: string[];
|
|
}
|
|
|
|
export interface AdminBannedData {
|
|
is_banned: boolean;
|
|
message: string;
|
|
}
|
|
|
|
export interface CharacterTexture {
|
|
id: number;
|
|
level: number;
|
|
url: string;
|
|
rights: string;
|
|
}
|
|
|
|
export interface FetchMemberDataByUuidResponse {
|
|
uuid: string;
|
|
tags: string[];
|
|
visitCardUrl: string | null;
|
|
textures: CharacterTexture[];
|
|
messages: unknown[];
|
|
anonymous?: boolean;
|
|
}
|
|
|
|
class AdminApi {
|
|
async fetchMapDetails(playUri: string): Promise<MapDetailsData> {
|
|
if (!ADMIN_API_URL) {
|
|
return Promise.reject(new Error("No admin backoffice set!"));
|
|
}
|
|
|
|
const params: { playUri: string } = {
|
|
playUri,
|
|
};
|
|
|
|
const res = await Axios.get(ADMIN_API_URL + "/api/map", {
|
|
headers: { Authorization: `${ADMIN_API_TOKEN}` },
|
|
params,
|
|
});
|
|
return res.data;
|
|
}
|
|
|
|
async fetchMemberDataByUuid(uuid: string, roomId: string): Promise<FetchMemberDataByUuidResponse> {
|
|
if (!ADMIN_API_URL) {
|
|
return Promise.reject(new Error("No admin backoffice set!"));
|
|
}
|
|
const res = await Axios.get(ADMIN_API_URL + "/api/room/access", {
|
|
params: { uuid, roomId },
|
|
headers: { Authorization: `${ADMIN_API_TOKEN}` },
|
|
});
|
|
return res.data;
|
|
}
|
|
|
|
async fetchMemberDataByToken(organizationMemberToken: string): Promise<AdminApiData> {
|
|
if (!ADMIN_API_URL) {
|
|
return Promise.reject(new Error("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(new Error("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,
|
|
reportWorldSlug: string
|
|
) {
|
|
return Axios.post(
|
|
`${ADMIN_API_URL}/api/report`,
|
|
{
|
|
reportedUserUuid,
|
|
reportedUserComment,
|
|
reporterUserUuid,
|
|
reportWorldSlug,
|
|
},
|
|
{
|
|
headers: { Authorization: `${ADMIN_API_TOKEN}` },
|
|
}
|
|
);
|
|
}
|
|
|
|
async verifyBanUser(userUuid: string, ipAddress: string, roomUrl: string): Promise<AdminBannedData> {
|
|
if (!ADMIN_API_URL) {
|
|
return Promise.reject(new Error("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/ban" +
|
|
"?ipAddress=" +
|
|
encodeURIComponent(ipAddress) +
|
|
"&token=" +
|
|
encodeURIComponent(userUuid) +
|
|
"&roomUrl=" +
|
|
encodeURIComponent(roomUrl),
|
|
{ headers: { Authorization: `${ADMIN_API_TOKEN}` } }
|
|
).then((data) => {
|
|
return data.data;
|
|
});
|
|
}
|
|
}
|
|
|
|
export const adminApi = new AdminApi();
|