Matchu
3ea6107f4f
Oooooops, this was registering as `(is_nc) OR (is_manually_nc AND locale = "en")`. Returned all locales for auto-detected NC items, not necessary!
107 lines
3.4 KiB
JavaScript
107 lines
3.4 KiB
JavaScript
const beeline = require("honeycomb-beeline")({
|
|
writeKey: process.env["HONEYCOMB_WRITE_KEY"],
|
|
dataset:
|
|
process.env["NODE_ENV"] === "production"
|
|
? "Dress to Impress (2020)"
|
|
: "Dress to Impress (2020, dev)",
|
|
serviceName: "impress-2020-gql-server",
|
|
});
|
|
|
|
import fetch from "node-fetch";
|
|
|
|
import connectToDb from "../src/server/db";
|
|
|
|
async function handle(req, res) {
|
|
const allNcItemNamesAndIdsPromise = loadAllNcItemNamesAndIds();
|
|
|
|
let itemValuesByName;
|
|
try {
|
|
itemValuesByName = await loadWakaValuesByName();
|
|
} catch (e) {
|
|
console.error(e);
|
|
res.setHeader("Content-Type", "text/plain");
|
|
res.status(500).send("Error loading Waka data from Google Sheets API");
|
|
return;
|
|
}
|
|
|
|
// Restructure the value data to use IDs as keys, instead of names.
|
|
const allNcItemNamesAndIds = await allNcItemNamesAndIdsPromise;
|
|
const itemValues = {};
|
|
for (const { name, id } of allNcItemNamesAndIds) {
|
|
if (name in itemValuesByName) {
|
|
itemValues[id] = itemValuesByName[name];
|
|
}
|
|
}
|
|
|
|
// Cache for 1 minute, and immediately serve stale data for a day after.
|
|
// This should keep it fast and responsive, and stay well within our API key
|
|
// limits. (This will cause the client to send more requests than necessary,
|
|
// but the CDN cache should generally respond quickly with a small 304 Not
|
|
// Modified, unless the data really did change.)
|
|
res.setHeader(
|
|
"Cache-Control",
|
|
"public, max-age=3600, stale-while-revalidate=86400"
|
|
);
|
|
return res.send(itemValues);
|
|
}
|
|
|
|
async function loadAllNcItemNamesAndIds() {
|
|
const db = await connectToDb();
|
|
|
|
const [rows] = await db.query(`
|
|
SELECT items.id, item_translations.name FROM items
|
|
INNER JOIN item_translations ON item_translations.item_id = items.id
|
|
WHERE
|
|
(items.rarity_index IN (0, 500) OR is_manually_nc = 1)
|
|
AND item_translations.locale = "en"
|
|
`);
|
|
|
|
return rows;
|
|
}
|
|
|
|
async function loadWakaValuesByName() {
|
|
if (!process.env["GOOGLE_API_KEY"]) {
|
|
throw new Error(`GOOGLE_API_KEY environment variable must be provided`);
|
|
}
|
|
|
|
const res = await fetch(
|
|
`https://sheets.googleapis.com/v4/spreadsheets/` +
|
|
`1DRMrniTSZP0sgZK6OAFFYqpmbT6xY_Ve_i480zghOX0/values/NC%20Values` +
|
|
`?fields=values&key=${encodeURIComponent(process.env["GOOGLE_API_KEY"])}`
|
|
);
|
|
const json = await res.json();
|
|
|
|
if (!res.ok) {
|
|
if (json.error) {
|
|
const { code, status, message } = json.error;
|
|
throw new Error(
|
|
`Google Sheets API returned error ${code} ${status}: ${message}`
|
|
);
|
|
} else {
|
|
throw new Error(
|
|
`Google Sheets API returned unexpected error: ${res.status} ${res.statusText}`
|
|
);
|
|
}
|
|
}
|
|
|
|
// Get the rows from the JSON response - skipping the first-row headers.
|
|
const rows = json.values.slice(1);
|
|
|
|
// Reformat the rows as a map from item name to value. We offer the item data
|
|
// as an object with a single field `value` for extensibility, but we omit
|
|
// the spreadsheet columns that we don't use on DTI, like Notes.
|
|
//
|
|
// NOTE: The Sheets API only returns the first non-empty cells of the row.
|
|
// So, when there's no value specified, it only returns one cell.
|
|
// That's why we set `""` as the default `value`.
|
|
const itemValuesByName = {};
|
|
for (const [itemName, value = ""] of rows) {
|
|
itemValuesByName[itemName] = { value };
|
|
}
|
|
|
|
return itemValuesByName;
|
|
}
|
|
|
|
export default async (req, res) => {
|
|
beeline.withTrace({ name: "allWakaValues" }, () => handle(req, res));
|
|
};
|