-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathui.js
More file actions
286 lines (250 loc) · 9.45 KB
/
ui.js
File metadata and controls
286 lines (250 loc) · 9.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
'use strict';
const axios = require('axios');
const fs = require('fs');
const path = require('path');
const express = require('express');
const router = express.Router();
const config = require('../services/config.js');
const defaultData = require('../data/default.js');
//const InventoryItemId = require('../data/item.js');
const map = require('../data/map.js');
if (config.discord.enabled) {
router.get('/login', (req, res) => {
res.redirect('/api/discord/login');
});
router.get('/logout', (req, res) => {
req.session.destroy();
if (config.homepage.enabled) {
res.redirect('/home');
} else {
res.redirect('/login');
}
});
}
// Map endpoints
router.get(['/', '/index'], async (req, res) => {
res.setHeader('Content-Type', 'text/html');
const data = await handlePage(req, res);
res.render('index', data);
});
if (config.homepage.enabled) {
router.get('/home', (req, res) => {
const data = {};
data.discord_invite = config.homepage.discordInvite;
data.map_title = config.homepage.title;
data.description_1 = config.homepage.descriptionLine1;
data.description_2 = config.homepage.descriptionLine2;
res.render('home', data);
});
}
router.get('/blocked', (req, res) => {
const data = {};
data.discord_invite = config.discord.invite;
if (req.session.username) {
data.guild_name = req.session.perms.blocked;
data.username = req.session.username;
}
res.render('blocked', data);
});
// Location endpoints
router.get('/@/:lat/:lon', async (req, res) => {
res.setHeader('Content-Type', 'text/html');
const data = await handlePage(req, res);
res.render('index', data);
});
router.get('/@/:lat/:lon/:zoom', async (req, res) => {
res.setHeader('Content-Type', 'text/html');
const data = await handlePage(req, res);
res.render('index', data);
});
router.get('/@/:city', async (req, res) => {
res.setHeader('Content-Type', 'text/html');
const data = await handlePage(req, res);
res.render('index', data);
});
router.get('/@/:city/:zoom', async (req, res) => {
const data = await handlePage(req, res);
res.render('index', data);
});
router.get('/purge', async (req, res) => {
let target = req.query.target;
if (!target || !target.startsWith('/')) {
target = '/';
}
res.set('Clear-Site-Data', '"cache"');
res.redirect(target);
});
router.get('/429', (req, res) => {
const data = defaultData;
res.render('429', data);
});
const handlePage = async (req, res) => {
const data = defaultData;
data.bodyClass = config.style === 'dark' ? 'theme-dark' : '';
data.tableClass = config.style === 'dark' ? 'table-dark' : '';
// Build available tile servers list
const tileservers = getAvailableTileservers();
data.available_tileservers_json = JSON.stringify(tileservers);
await updateAvailableForms(config.icons);
data.available_icon_styles_json = JSON.stringify(config.icons);
const themes = await getAvailableThemes();
data.available_themes_json = JSON.stringify(themes);
// Build available items list
const availableItems = [-1, -2, -3, -4, -5, -6, -7, -8];
//const keys = Object.keys(InventoryItemId);
//keys.forEach(key => {
// const itemId = InventoryItemId[key];
// availableItems.push(itemId);
//});
data.available_items_json = JSON.stringify(availableItems);
// Build available areas list
const areas = Object.keys(config.areas).sort().map(x => { return { 'area': x }; });
data.areas = areas;
// Available raid boss filters
const availableRaidBosses = await map.getAvailableRaidBosses();
data.available_raid_bosses_json = JSON.stringify(availableRaidBosses);
// Available quest filters
const availableQuestRewards = await map.getAvailableQuests();
data.available_quest_rewards_json = JSON.stringify(availableQuestRewards);
// Available nest pokemon filter
const availableNestPokemon = await map.getAvailableNestPokemon();
data.available_nest_pokemon_json = JSON.stringify(availableNestPokemon);
// Custom navigation bar headers
data.buttons_left = config.header.left;
data.buttons_right = config.header.right;
if (!config.discord.enabled || req.session.logged_in) {
data.logged_in = true;
data.username = req.session.username;
if (config.discord.enabled) {
if (req.session.valid) {
const perms = req.session.perms;
data.hide_map = !perms.map;
data.hide_pokemon = !perms.pokemon;
data.hide_raids = !perms.raids;
data.hide_gyms = !perms.gyms;
data.hide_pokestops = !perms.pokestops;
data.hide_quests = !perms.quests;
data.hide_lures = !perms.lures;
data.hide_invasions = !perms.invasions;
data.hide_spawnpoints = !perms.spawnpoints;
data.hide_iv = !perms.iv;
data.hide_pvp = !perms.pvp;
data.hide_cells = !perms.s2cells;
data.hide_submission_cells = !perms.submissionCells;
data.hide_nests = !perms.nests;
data.hide_weather = !perms.weather;
data.hide_devices = !perms.devices;
data.hide_portals = !perms.portals;
} else {
console.log(req.session.username, 'Not authorized to access map');
res.redirect('/login');
}
}
}
data.page_is_home = true;
data.page_is_areas = true;
data.show_areas = areas.length > 0;
data.timestamp = Date.now();
let lat = parseFloat(req.params.lat || config.map.startLat);
let lon = parseFloat(req.params.lon || config.map.startLon);
let city = req.params.city || null;
let zoom = req.params.zoom;
// Zoom specified for city
if (city === null) {
const tmpCity = req.params.lat;
city = tmpCity;
const tmpZoom = parseInt(req.params.lon);
if (tmpZoom > 0) {
zoom = tmpZoom;
}
}
if (city) {
for (let i = 0; i < areas.length; i++) {
const key = areas[i];
if (city.toLowerCase() === key.toLowerCase()) {
const area = config.areas[key];
lat = parseFloat(area.lat);
lon = parseFloat(area.lon);
if (!zoom) {
zoom = parseInt(area.zoom || config.map.startZoom);
}
break;
}
}
}
if ((zoom || config.map.startZoom) > config.map.maxZoom) {
zoom = config.map.maxZoom;
} else if ((zoom || config.map.startZoom) < config.map.minZoom) {
zoom = config.map.minZoom;
}
data.start_lat = lat || 0;
data.start_lon = lon || 0;
data.start_zoom = zoom || config.map.startZoom || 12;
data.lat = lat || 0;
data.lon = lon || 0;
data.zoom = zoom || config.map.startZoom || 12;
data.min_zoom = config.map.minZoom || 10;
data.max_zoom = config.map.maxZoom || 18;
data.locale_last_modified = (await fs.promises.stat(path.resolve(__dirname, `../../static/locales/${data.locale}.json`))).mtimeMs;
data.css_last_modified = (await fs.promises.stat(path.resolve(__dirname, '../../static/css/index.css'))).mtimeMs;
data.js_last_modified = (await fs.promises.stat(path.resolve(__dirname, '../../static/js/index.js'))).mtimeMs;
return data;
};
const getAvailableTileservers = () => {
const tileservers = {};
const tileKeys = Object.keys(config.tileservers);
if (tileKeys) {
tileKeys.forEach(tileKey => {
const tileData = config.tileservers[tileKey].split(';');
tileservers[tileKey] = {
url: tileData[0],
attribution: tileData[1]
};
});
}
return tileservers;
};
const getAvailableThemes = async () => {
const themes = {};
const themesDir = path.resolve(__dirname, '../../static/css/themes');
const files = await fs.promises.readdir(themesDir);
if (files) {
files.forEach(file => {
const ext = path.extname(file);
if (ext !== '.css') {
return;
}
let name = path.basename(file, ext);
name = name.charAt(0).toUpperCase() + name.slice(1);
themes[name] = `/css/themes/${file}`;
});
}
return themes;
};
const updateAvailableForms = async (icons) => {
for (const icon of Object.values(icons)) {
if (icon.path.startsWith('/')) {
const pokemonIconsDir = path.resolve(__dirname, `../../static${icon.path}`);
const files = await fs.promises.readdir(pokemonIconsDir);
if (files) {
const availableForms = [];
files.forEach(file => {
const match = /^(.+)\.png$/.exec(file);
if (match !== null) {
availableForms.push(match[1]);
}
});
icon.pokemonList = availableForms;
}
} else if (!Array.isArray(icon.pokemonList) || Date.now() - icon.lastRetrieved > 60 * 60 * 1000) {
const response = await axios({
method: 'GET',
url: icon.path + '/index.json',
responseType: 'json'
});
icon.pokemonList = response ? response.data : [];
icon.lastRetrieved = Date.now();
}
}
};
module.exports = router;