LiveAtlas/src/api.ts

674 lines
17 KiB
TypeScript
Raw Normal View History

2020-12-16 16:54:41 +00:00
/*
* Copyright 2020 James Lyne
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2020-11-23 12:13:28 +00:00
import {
DynmapArea,
2020-12-17 14:50:12 +00:00
DynmapChat,
DynmapCircle,
DynmapComponentConfig,
DynmapConfigurationResponse,
DynmapLine,
DynmapMarker,
DynmapMarkerSet,
DynmapMarkerSetUpdates,
DynmapMessageConfig,
2020-11-23 12:13:28 +00:00
DynmapPlayer,
2020-12-17 14:50:12 +00:00
DynmapServerConfig,
DynmapTileUpdate,
DynmapUpdate,
DynmapUpdateResponse,
DynmapUpdates,
DynmapWorld,
DynmapWorldMap
2020-11-23 12:13:28 +00:00
} from "@/dynmap";
import {useStore} from "@/store";
2020-12-12 22:53:09 +00:00
function buildServerConfig(response: any): DynmapServerConfig {
return {
2020-12-12 22:53:09 +00:00
version: response.dynmapversion || '',
grayHiddenPlayers: response.grayplayerswhenhidden || false,
2020-12-12 22:53:09 +00:00
defaultMap: response.defaultmap || undefined,
defaultWorld: response.defaultworld || undefined,
defaultZoom: response.defaultzoom || 0,
followMap: response.followmap || undefined,
followZoom: response.followzoom || 0,
updateInterval: response.updaterate || 3000,
showLayerControl: response.showlayercontrol || true,
title: response.title || 'Dynmap',
loginEnabled: response['login-enabled'] || false,
maxPlayers: response.maxcount || 0,
hash: response.confighash || 0,
};
}
2020-12-12 22:53:09 +00:00
function buildMessagesConfig(response: any): DynmapMessageConfig {
return {
2020-12-12 22:53:09 +00:00
chatNotAllowed: response['msg-chatnotallowed'] || '',
chatRequiresLogin: response['msg-chatrequireslogin'] || '',
chatCooldown: response.spammessage || '',
mapTypes: response['msg-maptypes'] || '',
players: response['msg-players'] || '',
playerJoin: response.joinmessage || '',
playerQuit: response.quitmessage || '',
anonymousJoin: response['msg-hiddennamejoin'] || '',
anonymousQuit: response['msg-hiddennamequit'] || '',
}
}
2020-12-12 22:53:09 +00:00
function buildWorlds(response: any): Array<DynmapWorld> {
const worlds: Array<DynmapWorld> = [];
2020-12-12 22:53:09 +00:00
(response.worlds || []).forEach((world: any) => {
2020-12-11 21:38:50 +00:00
const maps: Map<string, DynmapWorldMap> = new Map();
(world.maps || []).forEach((map: any) => {
2020-12-01 23:20:38 +00:00
maps.set(map.name, {
world: world,
2020-12-19 12:40:09 +00:00
background: map.background || '#000000',
backgroundDay: map.backgroundday || '#000000',
backgroundNight: map.backgroundnight || '#000000',
compassView: map.compassview || 'S',
icon: map.icon || undefined,
imageFormat: map['image-format'] || 'png',
name: map.name || '(Unnamed map)',
nightAndDay: map.nightandday || false,
prefix: map.prefix || '',
protected: map.protected || false,
title: map.title || '',
type: map.type || 'HDMapType',
mapToWorld: map.maptoworld || [0, 0, 0, 0, 0, 0, 0, 0, 0],
worldToMap: map.worldtomap || [0, 0, 0, 0, 0, 0, 0, 0, 0],
nativeZoomLevels: map.mapzoomout || 1,
extraZoomLevels: map.mapzoomin || 0,
});
});
worlds.push({
seaLevel: world.sealevel || 64,
name: world.name || '(Unnamed world)',
protected: world.protected || false,
title: world.title || '',
height: world.height || 256,
center: {
x: world.center.x || 0,
y: world.center.y || 0,
z: world.center.z || 0
},
maps,
});
});
return worlds;
}
2020-12-12 22:53:09 +00:00
function buildComponents(response: any): DynmapComponentConfig {
const components: DynmapComponentConfig = {
2020-12-01 23:20:38 +00:00
markers: {
showLabels: false,
},
2021-01-06 16:02:36 +00:00
chatBox: undefined,
2021-01-05 22:30:55 +00:00
chatBalloons: false,
playerMarkers: undefined,
2020-12-01 23:20:38 +00:00
coordinatesControl: undefined,
linkControl: false,
clockControl: undefined,
logoControls: [],
};
2020-12-12 22:53:09 +00:00
(response.components || []).forEach((component: any) => {
const type = component.type || "unknown";
switch(type) {
case "playermarkers":
components.playerMarkers = {
hideByDefault: component.hidebydefault || false,
layerName: component.label || "Players",
layerPriority: component.layerprio || 0,
showBodies: component.showplayerbody || false,
showSkinFaces: component.showplayerfaces || false,
showHealth: component.showplayerhealth || false,
smallFaces: component.smallplayerfaces || false,
}
break;
2020-12-01 23:20:38 +00:00
case "coord":
components.coordinatesControl = {
showY: !(component.hidey || false),
label: component.label || "Location: ",
showRegion: component['show-mcr'] || false,
showChunk: component['show-chunk'] || false,
}
break;
case "link":
components.linkControl = true;
break;
case "digitalclock":
components.clockControl = {
showDigitalClock: true,
showWeather: false,
showTimeOfDay: false,
2020-12-01 23:20:38 +00:00
}
break;
case "timeofdayclock":
components.clockControl = {
showTimeOfDay: true,
2020-12-01 23:20:38 +00:00
showDigitalClock: component.showdigitalclock || false,
showWeather: component.showweather || false,
}
2020-12-19 01:12:31 +00:00
break;
case "logo":
components.logoControls.push({
text: component.text || '',
url: component.linkurl || undefined,
position: component.position.replace('-', '') || 'topleft',
image: component.logourl || undefined,
});
2020-12-31 13:05:54 +00:00
break;
case "chat":
if(response.allowwebchat) {
components.chatSending = {
loginRequired: response['webchat-requires-login'] || false,
maxLength: response['chatlengthlimit'] || 256,
cooldown: response['webchat-interval'] || 5,
}
}
break;
2020-12-31 13:05:54 +00:00
case "chatbox":
2021-01-06 16:02:36 +00:00
components.chatBox = {
2020-12-31 13:05:54 +00:00
allowUrlName: component.allowurlname || false,
showPlayerFaces: component.showplayerfaces || false,
messageLifetime: component.messagettl || Infinity,
messageHistory: component.scrollback || Infinity,
}
2021-01-05 22:30:55 +00:00
break;
case "chatballoon":
components.chatBalloons = true;
}
});
return components;
}
2020-12-19 01:09:31 +00:00
function buildMarkerSet(id: string, data: any): any {
return {
id,
label: data.label || "Unnamed set",
hidden: data.hide || false,
priority: data.layerprio || 0,
showLabels: data.showlabels || undefined,
minZoom: typeof data.minzoom !== 'undefined' && data.minzoom > -1 ? data.minzoom : undefined,
maxZoom: typeof data.maxzoom !== 'undefined' && data.maxzoom > -1 ? data.maxzoom : undefined,
}
}
2020-12-01 23:20:38 +00:00
function buildMarkers(data: any): Map<string, DynmapMarker> {
const markers = Object.freeze(new Map()) as Map<string, DynmapMarker>;
for(const key in data) {
if (!Object.prototype.hasOwnProperty.call(data, key)) {
continue;
}
markers.set(key, buildMarker(data[key]));
2020-12-01 23:20:38 +00:00
}
return markers;
}
function buildMarker(marker: any): DynmapMarker {
return {
label: marker.label || '',
location: {
x: marker.x || 0,
y: marker.y || 0,
z: marker.z || 0,
},
dimensions: marker.dim ? marker.dim.split('x') : [16, 16],
icon: marker.icon || "default",
isHTML: marker.markup || false,
minZoom: typeof marker.minzoom !== 'undefined' && marker.minzoom > -1 ? marker.minzoom : undefined,
maxZoom: typeof marker.maxzoom !== 'undefined' && marker.maxzoom > -1 ? marker.maxzoom : undefined,
popupContent: marker.desc || undefined,
};
}
2020-12-01 23:20:38 +00:00
function buildAreas(data: any): Map<string, DynmapArea> {
const areas = Object.freeze(new Map()) as Map<string, DynmapArea>;
for(const key in data) {
if (!Object.prototype.hasOwnProperty.call(data, key)) {
continue;
}
areas.set(key, buildArea(data[key]));
2020-12-01 23:20:38 +00:00
}
return areas;
}
function buildArea(area: any): DynmapArea {
return {
style: {
color: area.color || '#ff0000',
opacity: area.opacity || 1,
weight: area.weight || 1,
fillColor: area.fillcolor || '#ff0000',
fillOpacity: area.fillopacity || 0,
},
label: area.label || '',
isHTML: area.markup || false,
x: area.x || [0, 0],
y: [area.ybottom || 0, area.ytop || 0],
z: area.z || [0, 0],
minZoom: typeof area.minzoom !== 'undefined' && area.minzoom > -1 ? area.minzoom : undefined,
maxZoom: typeof area.maxzoom !== 'undefined' && area.maxzoom > -1 ? area.maxzoom : undefined,
popupContent: area.desc || undefined,
};
}
2020-12-01 23:20:38 +00:00
function buildLines(data: any): Map<string, DynmapLine> {
const lines = Object.freeze(new Map()) as Map<string, DynmapLine>;
for(const key in data) {
if (!Object.prototype.hasOwnProperty.call(data, key)) {
continue;
}
lines.set(key, buildLine(data[key]));
2020-12-01 23:20:38 +00:00
}
return lines;
}
function buildLine(line: any): DynmapLine {
return {
x: line.x || [0, 0],
y: line.y || [0, 0],
z: line.z || [0, 0],
style: {
color: line.color || '#ff0000',
opacity: line.opacity || 1,
weight: line.weight || 1,
},
label: line.label || '',
isHTML: line.markup || false,
minZoom: typeof line.minzoom !== 'undefined' && line.minzoom > -1 ? line.minzoom : undefined,
maxZoom: typeof line.maxzoom !== 'undefined' && line.maxzoom > -1 ? line.maxzoom : undefined,
popupContent: line.desc || undefined,
};
}
2020-12-01 23:20:38 +00:00
function buildCircles(data: any): Map<string, DynmapCircle> {
const circles = Object.freeze(new Map()) as Map<string, DynmapCircle>;
for(const key in data) {
if (!Object.prototype.hasOwnProperty.call(data, key)) {
continue;
}
circles.set(key, buildCircle(data[key]));
}
2020-12-01 23:20:38 +00:00
return circles;
}
2020-12-01 23:20:38 +00:00
function buildCircle(circle: any): DynmapCircle {
return {
location: {
x: circle.x || 0,
y: circle.y || 0,
z: circle.z || 0,
},
radius: [circle.xr || 0, circle.zr || 0],
style: {
fillColor: circle.fillcolor || '#ff0000',
fillOpacity: circle.fillopacity || 0,
color: circle.color || '#ff0000',
opacity: circle.opacity || 1,
weight: circle.weight || 1,
},
label: circle.label || '',
isHTML: circle.markup || false,
minZoom: typeof circle.minzoom !== 'undefined' && circle.minzoom > -1 ? circle.minzoom : undefined,
maxZoom: typeof circle.maxzoom !== 'undefined' && circle.maxzoom > -1 ? circle.maxzoom : undefined,
popupContent: circle.desc || undefined,
};
}
function buildUpdates(data: Array<any>): DynmapUpdates {
const updates = {
markerSets: new Map<string, DynmapMarkerSetUpdates>(),
tiles: [] as DynmapTileUpdate[],
2020-12-17 14:50:12 +00:00
chat: [] as DynmapChat[],
},
dropped = {
stale: 0,
noSet: 0,
noId: 0,
unknownType: 0,
unknownCType: 0,
2020-12-17 14:50:12 +00:00
incomplete: 0,
notImplemented: 0,
},
lastUpdate = useStore().state.updateTimestamp;
let accepted = 0;
2020-12-01 23:20:38 +00:00
for(const entry of data) {
switch(entry.type) {
case 'component': {
if(lastUpdate && entry.timestamp < lastUpdate) {
dropped.stale++;
continue;
}
if(!entry.id) {
dropped.noId++;
continue;
}
2020-12-19 01:09:31 +00:00
//Set updates don't have a set field, the id is the set
const set = entry.msg.startsWith("set") ? entry.id : entry.set;
if(!set) {
dropped.noSet++;
continue;
}
if(entry.ctype !== 'markers') {
dropped.unknownCType++;
continue;
}
2020-12-19 01:09:31 +00:00
if(!updates.markerSets.has(set)) {
updates.markerSets.set(set, {
areaUpdates: [],
markerUpdates: [],
lineUpdates: [],
circleUpdates: [],
2020-12-19 01:09:31 +00:00
removed: false,
});
}
2020-12-19 01:09:31 +00:00
const markerSetUpdates = updates.markerSets.get(set),
update: DynmapUpdate = {
id: entry.id,
removed: entry.msg.endsWith('deleted'),
};
2020-12-19 01:09:31 +00:00
if(entry.msg.startsWith("set")) {
markerSetUpdates!.removed = update.removed;
markerSetUpdates!.payload = update.removed ? undefined : buildMarkerSet(set, entry);
} else if(entry.msg.startsWith("marker")) {
update.payload = update.removed ? undefined : buildMarker(entry);
markerSetUpdates!.markerUpdates.push(Object.freeze(update));
} else if(entry.msg.startsWith("area")) {
update.payload = update.removed ? undefined : buildArea(entry);
markerSetUpdates!.areaUpdates.push(Object.freeze(update));
} else if(entry.msg.startsWith("circle")) {
update.payload = update.removed ? undefined : buildCircle(entry);
markerSetUpdates!.circleUpdates.push(Object.freeze(update));
} else if(entry.msg.startsWith("line")) {
update.payload = update.removed ? undefined : buildLine(entry);
markerSetUpdates!.lineUpdates.push(Object.freeze(update));
}
accepted++;
break;
}
case 'chat':
2021-01-07 22:37:53 +00:00
if(!entry.message || !entry.timestamp) {
2020-12-17 14:50:12 +00:00
dropped.incomplete++;
continue;
}
if(entry.timestamp < lastUpdate) {
dropped.stale++;
continue;
}
2021-01-07 22:37:53 +00:00
if(entry.source !== 'player' && entry.source !== 'web') {
2020-12-17 14:50:12 +00:00
dropped.notImplemented++;
continue;
}
updates.chat.push({
type: 'chat',
2021-01-07 22:37:53 +00:00
source: entry.source || undefined,
playerAccount: entry.account || undefined,
playerName: entry.playerName || undefined,
2021-01-06 00:59:27 +00:00
message: entry.message || "",
2020-12-17 14:50:12 +00:00
timestamp: entry.timestamp,
channel: entry.channel || undefined,
});
break;
2020-12-31 13:05:54 +00:00
case 'playerjoin':
if(!entry.account || !entry.timestamp) {
dropped.incomplete++;
continue;
}
if(entry.timestamp < lastUpdate) {
dropped.stale++;
continue;
}
updates.chat.push({
type: 'playerjoin',
playerAccount: entry.account,
2021-01-06 00:59:27 +00:00
playerName: entry.playerName || "",
2020-12-31 13:05:54 +00:00
timestamp: entry.timestamp || undefined,
});
break;
case 'playerquit':
if(!entry.account || !entry.timestamp) {
dropped.incomplete++;
continue;
}
if(entry.timestamp < lastUpdate) {
dropped.stale++;
continue;
}
updates.chat.push({
type: 'playerleave',
playerAccount: entry.account,
2021-01-06 00:59:27 +00:00
playerName: entry.playerName || "",
2020-12-31 13:05:54 +00:00
timestamp: entry.timestamp || undefined,
});
break;
case 'tile':
if(!entry.name || !entry.timestamp) {
2020-12-17 14:50:12 +00:00
dropped.incomplete++;
continue;
}
if(lastUpdate && entry.timestamp < lastUpdate) {
dropped.stale++;
continue;
}
updates.tiles.push({
name: entry.name,
timestamp: entry.timestamp,
});
accepted++;
break;
default:
dropped.unknownType++;
}
}
//Sort chat by newest first
2020-12-17 14:50:12 +00:00
updates.chat = updates.chat.sort((one, two) => {
return two.timestamp - one.timestamp;
2020-12-17 14:50:12 +00:00
});
console.debug(`Updates: ${accepted} accepted. Rejected: `, dropped);
return updates;
2020-12-01 23:20:38 +00:00
}
2020-11-23 12:13:28 +00:00
export default {
getConfiguration(): Promise<DynmapConfigurationResponse> {
2020-12-12 22:53:09 +00:00
return fetch(window.config.url.configuration).then(response => {
if (!response.ok) {
throw new Error('Network request failed');
2020-12-12 22:53:09 +00:00
}
return response.json();
}).then((response): DynmapConfigurationResponse => {
if(response.error === 'login-required') {
throw new Error("Login required");
} else if (response.error) {
throw new Error(response.error);
}
2020-11-23 12:13:28 +00:00
return {
config: buildServerConfig(response),
messages: buildMessagesConfig(response),
worlds: buildWorlds(response),
components: buildComponents(response),
2020-11-23 12:13:28 +00:00
}
});
},
getUpdate(requestId: number, world: string, timestamp: number): Promise<DynmapUpdateResponse> {
let url = window.config.url.update;
url = url.replace('{world}', world);
url = url.replace('{timestamp}', timestamp.toString());
2020-12-12 22:53:09 +00:00
return fetch(url).then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
}).then((response): DynmapUpdateResponse => {
const players: Set<DynmapPlayer> = new Set();
2020-12-01 23:20:38 +00:00
2020-12-12 22:53:09 +00:00
(response.players || []).forEach((player: any) => {
const world = player.world && player.world !== '-some-other-bogus-world-' ? player.world : undefined;
2020-12-01 23:20:38 +00:00
players.add({
account: player.account || "",
health: player.health || 0,
armor: player.armor || 0,
2021-01-06 00:59:27 +00:00
name: player.name || "",
2020-12-01 23:20:38 +00:00
sort: player.sort || 0,
hidden: !world,
2020-12-01 23:20:38 +00:00
location: {
//Add 0.5 to position in the middle of a block
x: !isNaN(player.x) ? player.x + 0.5 : 0,
y: !isNaN(player.y) ? player.y : 0,
z: !isNaN(player.z) ? player.z + 0.5 : 0,
world: world,
2020-12-01 23:20:38 +00:00
}
});
});
2020-11-23 12:13:28 +00:00
2020-12-10 02:23:22 +00:00
//Extra fake players for testing
2020-12-17 14:50:26 +00:00
// for(let i = 0; i < 150; i++) {
// players.add({
// account: "VIDEO GAMES " + i,
// health: Math.round(Math.random() * 10),
// armor: Math.round(Math.random() * 10),
// name: "VIDEO GAMES " + i,
// sort: 0,
// location: {
// x: Math.round(Math.random() * 1000) - 500,
// y: 64,
// z: Math.round(Math.random() * 1000) - 500,
// world: "world",
// }
// });
// }
2020-11-23 12:13:28 +00:00
return {
2020-12-01 23:20:38 +00:00
worldState: {
2020-12-12 22:53:09 +00:00
timeOfDay: response.servertime || 0,
thundering: response.isThundering || false,
raining: response.hasStorm || false,
2020-12-01 23:20:38 +00:00
},
2020-12-12 22:53:09 +00:00
playerCount: response.count || 0,
configHash: response.configHash || 0,
timestamp: response.timestamp || 0,
2020-11-23 12:13:28 +00:00
players,
2020-12-12 22:53:09 +00:00
updates: buildUpdates(response.updates || []),
2020-11-23 12:13:28 +00:00
}
});
2020-12-01 23:20:38 +00:00
},
getMarkerSets(world: string): Promise<Map<string, DynmapMarkerSet>> {
const url = `${window.config.url.markers}_markers_/marker_${world}.json`;
2020-12-12 22:53:09 +00:00
return fetch(url).then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
}).then((response): Map<string, DynmapMarkerSet> => {
const sets: Map<string, DynmapMarkerSet> = new Map();
2020-12-01 23:20:38 +00:00
2020-12-12 22:53:09 +00:00
response.sets = response.sets || {};
2020-12-01 23:20:38 +00:00
2020-12-12 22:53:09 +00:00
for(const key in response.sets) {
if(!Object.prototype.hasOwnProperty.call(response.sets, key)) {
2020-12-01 23:20:38 +00:00
continue;
}
2020-12-12 22:53:09 +00:00
const set = response.sets[key],
2020-12-01 23:20:38 +00:00
markers = buildMarkers(set.markers || {}),
circles = buildCircles(set.circles || {}),
areas = buildAreas(set.areas || {}),
lines = buildLines(set.lines || {});
sets.set(key, {
2020-12-19 01:09:31 +00:00
...buildMarkerSet(key, set),
2020-12-01 23:20:38 +00:00
markers,
2020-12-19 01:09:31 +00:00
circles,
2020-12-01 23:20:38 +00:00
areas,
lines,
});
}
return sets;
});
2020-11-23 12:13:28 +00:00
}
}