aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build/index.js32
-rw-r--r--src/index.ts44
2 files changed, 60 insertions, 16 deletions
diff --git a/build/index.js b/build/index.js
index 4644fed..70d11d0 100644
--- a/build/index.js
+++ b/build/index.js
@@ -70,7 +70,13 @@ app.get('/player/:user', async (req, res) => {
}
});
app.get('/discord/:id', async (req, res) => {
- res.json(await database_1.fetchAccountFromDiscord(req.params.id));
+ try {
+ res.json(await database_1.fetchAccountFromDiscord(req.params.id));
+ }
+ catch (err) {
+ console.error(err);
+ res.json({ ok: false });
+ }
});
app.get('/player/:user/:profile', async (req, res) => {
try {
@@ -82,7 +88,13 @@ app.get('/player/:user/:profile', async (req, res) => {
}
});
app.get('/player/:user/:profile/leaderboards', async (req, res) => {
- res.json(await database_1.fetchMemberLeaderboardSpots(req.params.user, req.params.profile));
+ try {
+ res.json(await database_1.fetchMemberLeaderboardSpots(req.params.user, req.params.profile));
+ }
+ catch (err) {
+ console.error(err);
+ res.json({ ok: false });
+ }
});
app.get('/leaderboard/:name', async (req, res) => {
try {
@@ -94,10 +106,22 @@ app.get('/leaderboard/:name', async (req, res) => {
}
});
app.get('/leaderboards', async (req, res) => {
- res.json(await database_1.fetchAllLeaderboardsCategorized());
+ try {
+ res.json(await database_1.fetchAllLeaderboardsCategorized());
+ }
+ catch (err) {
+ console.error(err);
+ res.json({ ok: false });
+ }
});
app.get('/constants', async (req, res) => {
- res.json(await constants.fetchConstantValues());
+ try {
+ res.json(await constants.fetchConstantValues());
+ }
+ catch (err) {
+ console.error(err);
+ res.json({ ok: false });
+ }
});
app.post('/accounts/createsession', async (req, res) => {
try {
diff --git a/src/index.ts b/src/index.ts
index 952c2aa..fe6ea90 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -57,9 +57,14 @@ app.get('/player/:user', async(req, res) => {
})
app.get('/discord/:id', async(req, res) => {
- res.json(
- await fetchAccountFromDiscord(req.params.id)
- )
+ try {
+ res.json(
+ await fetchAccountFromDiscord(req.params.id)
+ )
+ } catch (err) {
+ console.error(err)
+ res.json({ ok: false })
+ }
})
app.get('/player/:user/:profile', async(req, res) => {
@@ -74,9 +79,14 @@ app.get('/player/:user/:profile', async(req, res) => {
})
app.get('/player/:user/:profile/leaderboards', async(req, res) => {
- res.json(
- await fetchMemberLeaderboardSpots(req.params.user, req.params.profile)
- )
+ try {
+ res.json(
+ await fetchMemberLeaderboardSpots(req.params.user, req.params.profile)
+ )
+ } catch (err) {
+ console.error(err)
+ res.json({ ok: false })
+ }
})
app.get('/leaderboard/:name', async(req, res) => {
@@ -91,15 +101,25 @@ app.get('/leaderboard/:name', async(req, res) => {
})
app.get('/leaderboards', async(req, res) => {
- res.json(
- await fetchAllLeaderboardsCategorized()
- )
+ try {
+ res.json(
+ await fetchAllLeaderboardsCategorized()
+ )
+ } catch (err) {
+ console.error(err)
+ res.json({ ok: false })
+ }
})
app.get('/constants', async(req, res) => {
- res.json(
- await constants.fetchConstantValues()
- )
+ try {
+ res.json(
+ await constants.fetchConstantValues()
+ )
+ } catch (err) {
+ console.error(err)
+ res.json({ ok: false })
+ }
})
app.post('/accounts/createsession', async(req, res) => {