-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathstorefront.js
69 lines (56 loc) · 2.87 KB
/
storefront.js
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
const express = require("express");
const app = express.Router();
const Profile = require("../model/profiles.js");
const Friends = require("../model/friends.js");
const functions = require("../structs/functions.js");
const log = require("../structs/log.js");
const error = require("../structs/error.js");
const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
const keychain = require("../responses/keychain.json");
app.get("/fortnite/api/storefront/v2/catalog", (req, res) => {
log.debug("Request to /fortnite/api/storefront/v2/catalog");
if (req.headers["user-agent"] == undefined) return;
if (req.headers["user-agent"].includes("2870186")) {
return res.status(404).end();
}
res.json(functions.getItemShop());
});
app.get("/fortnite/api/storefront/v2/gift/check_eligibility/recipient/:recipientId/offer/:offerId", verifyToken, async (req, res) => {
log.debug(`Request to /fortnite/api/storefront/v2/gift/check_eligibility/recipient/${req.params.recipientId}/offer/${req.params.offerId}`);
const findOfferId = functions.getOfferID(req.params.offerId);
if (!findOfferId) return error.createError(
"errors.com.epicgames.fortnite.id_invalid",
`Offer ID (id: "${req.params.offerId}") not found`,
[req.params.offerId], 16027, undefined, 400, res
);
let sender = await Friends.findOne({ accountId: req.user.accountId }).lean();
if (!sender.list.accepted.find(i => i.accountId == req.params.recipientId) && req.params.recipientId != req.user.accountId) return error.createError(
"errors.com.epicgames.friends.no_relationship",
`User ${req.user.accountId} is not friends with ${req.params.recipientId}`,
[req.user.accountId, req.params.recipientId], 28004, undefined, 403, res
);
const profiles = await Profile.findOne({ accountId: req.params.recipientId });
let athena = profiles.profiles["athena"];
for (let itemGrant of findOfferId.offerId.itemGrants) {
for (let itemId in athena.items) {
if (itemGrant.templateId.toLowerCase() == athena.items[itemId].templateId.toLowerCase()) return error.createError(
"errors.com.epicgames.modules.gamesubcatalog.purchase_not_allowed",
`Could not purchase catalog offer ${findOfferId.offerId.devName}, item ${itemGrant.templateId}`,
[findOfferId.offerId.devName, itemGrant.templateId], 28004, undefined, 403, res
);
}
}
res.json({
price: findOfferId.offerId.prices[0],
items: findOfferId.offerId.itemGrants
});
});
app.get("/fortnite/api/storefront/v2/keychain", (req, res) => {
log.debug("Request to /fortnite/api/storefront/v2/keychain");
res.json(keychain);
});
app.get("/catalog/api/shared/bulk/offers", (req, res) => {
log.debug("Request to /catalog/api/shared/bulk/offers");
res.json({});
});
module.exports = app;