heissepreise/analysis.js

221 lines
8.9 KiB
JavaScript
Raw Normal View History

2023-05-17 16:17:45 +02:00
const fs = require("fs");
const axios = require("axios")
function currentDate() {
const currentDate = new Date();
const year = currentDate.getFullYear();
const month = String(currentDate.getMonth() + 1).padStart(2, '0');
const day = String(currentDate.getDate()).padStart(2, '0');
return `${year}-${month}-${day}`;
}
function readJSON(file) {
return JSON.parse(fs.readFileSync(file));
}
function writeJSON(file, data) {
fs.writeFileSync(file, JSON.stringify(data, null, 2));
}
function sparToCanonical(rawItems, today) {
const canonicalItems = [];
for (let i = 0; i < rawItems.length; i++) {
const item = rawItems[i];
let price, unit;
if (item.masterValues["quantity-selector"]) {
const [str_price, str_unit] = item.masterValues["price-per-unit"].split('/');
price = parseFloat(str_price.replace("€", ""));
unit = str_unit.trim();
}
else {
price = item.masterValues.price;
unit = item.masterValues["short-description-3"];
}
2023-05-17 16:17:45 +02:00
canonicalItems.push({
store: "spar",
id: item.masterValues["code-internal"],
name: item.masterValues.title + " " + item.masterValues["short-description"],
price,
priceHistory: [{ date: today, price }],
unit
2023-05-17 16:17:45 +02:00
});
}
return canonicalItems;
}
function billaToCanonical(rawItems, today) {
const canonicalItems = [];
for (let i = 0; i < rawItems.length; i++) {
const item = rawItems[i];
canonicalItems.push({
store: "billa",
id: item.data.articleId,
name: item.data.name,
price: item.data.price.final,
priceHistory: [{ date: today, price: item.data.price.final }],
unit: item.data.grammagePriceFactor == 1 ? item.data.grammage : "kg"
2023-05-17 16:17:45 +02:00
});
}
return canonicalItems;
}
function hoferToCanonical(rawItems, today) {
const canonicalItems = [];
for (let i = 0; i < rawItems.length; i++) {
const item = rawItems[i];
canonicalItems.push({
store: "hofer",
id: item.ProductID,
name: item.ProductName,
price: item.Price,
priceHistory: [{ date: today, price: item.Price }],
unit: `${item.Unit} ${item.UnitType}`
});
}
return canonicalItems;
}
async function fetchHofer() {
const BASE_URL = `https://shopservice.roksh.at`
const CATEGORIES = BASE_URL + `/category/GetFullCategoryList/`
const CONFIG = { headers: { authorization: null } }
const ITEMS = BASE_URL + `/productlist/CategoryProductList`
// fetch access token
const token_data = { "OwnWebshopProviderCode": "", "SetUserSelectedShopsOnFirstSiteLoad": true, "RedirectToDashboardNeeded": false, "ShopsSelectedForRoot": "hofer", "BrandProviderSelectedForRoot": null, "UserSelectedShops": [] }
const token = (await axios.post("https://shopservice.roksh.at/session/configure", token_data, { headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' } })).headers['jwt-auth'];
CONFIG.headers.authorization = "Bearer " + token;
// concat all subcategories (categories.[i].ChildList)
const categories = (await axios.post(CATEGORIES, {}, CONFIG)).data;
const subCategories = categories.reduce((acc, category) => acc.concat(category.ChildList), []);
let hoferItems = [];
for (let subCategory of subCategories) {
let categoryData = (await axios.get(`${ITEMS}?progId=${subCategory.ProgID}&firstLoadProductListResultNum=4&listResultProductNum=24`, CONFIG)).data;
const numPages = categoryData.ProductListResults[0].ListContext.TotalPages;
for (let iPage = 1; iPage <= numPages; iPage++) {
let items = (await axios.post(`${BASE_URL}/productlist/GetProductList`, { CategoryProgId: subCategory.ProgID, Page: iPage }, CONFIG)).data;
hoferItems = hoferItems.concat(items.ProductList);
}
}
return hoferItems;
}
2023-05-17 16:17:45 +02:00
function mergePriceHistory(oldItems, items) {
if (oldItems == null) return items;
const lookup = {}
for (oldItem of oldItems) {
lookup[oldItem.store + oldItem.id] = oldItem;
2023-05-17 16:17:45 +02:00
}
for (item of items) {
let oldItem = lookup[item.store + item.id];
2023-05-17 16:17:45 +02:00
let currPrice = item.priceHistory[0];
if (oldItem) {
if (oldItem.priceHistory[0].price == currPrice.price) {
item.priceHistory = oldItem.priceHistory;
continue;
}
for (oldPrice of oldItem.priceHistory) {
item.priceHistory.push(oldPrice);
}
}
}
return items;
}
/// Given a directory of raw data of the form `billa-$date.json` and `spar-$date.json`, constructs
/// a canonical list of all products and their historical price data.
exports.replay = function(rawDataDir) {
2023-05-17 16:17:45 +02:00
const today = currentDate();
const files = fs.readdirSync(rawDataDir).filter(
2023-05-18 20:30:26 +02:00
file => file.indexOf("canonical") == -1 && (file.indexOf("billa-") == 0 || file.indexOf("spar") == 0 || file.indexOf("hofer") == 0)
2023-05-17 16:17:45 +02:00
);
const dateSort = (a, b) => {
const dateA = new Date(a.match(/\d{4}-\d{2}-\d{2}/)[0]);
const dateB = new Date(b.match(/\d{4}-\d{2}-\d{2}/)[0]);
return dateA - dateB;
};
const sparFiles = files.filter(file => file.indexOf("spar-") == 0).sort(dateSort).map(file => rawDataDir + "/" + file);
const sparFilesCanonical = sparFiles.map(file => sparToCanonical(readJSON(file), file.match(/\d{4}-\d{2}-\d{2}/)[0]));
const billaFiles = files.filter(file => file.indexOf("billa-") == 0).sort(dateSort).map(file => rawDataDir + "/" + file);
const billaFilesCanonical = billaFiles.map(file => billaToCanonical(readJSON(file), file.match(/\d{4}-\d{2}-\d{2}/)[0]));
2023-05-18 20:30:26 +02:00
const hoferFiles = files.filter(file => file.indexOf("hofer-") == 0).sort(dateSort).map(file => rawDataDir + "/" + file);
const hoferFilesCanonical = hoferFiles.map(file => hoferToCanonical(readJSON(file), file.match(/\d{4}-\d{2}-\d{2}/)[0]));
2023-05-17 16:17:45 +02:00
const allFilesCanonical = [];
2023-05-18 20:30:26 +02:00
const len = Math.max(sparFilesCanonical.length, Math.max(billaFilesCanonical.length, hoferFilesCanonical.length));
sparFilesCanonical.reverse();
billaFilesCanonical.reverse();
hoferFilesCanonical.reverse();
for (let i = 0; i < len; i++) {
const canonical = [];
let billa = billaFilesCanonical.pop();
if (billa) canonical.push(...billa);
let spar = sparFilesCanonical.pop();
if (spar) canonical.push(...spar);
2023-05-18 20:30:26 +02:00
let hofer = hoferFilesCanonical.pop();
if (hofer) canonical.push(...hofer);
allFilesCanonical.push(canonical);
2023-05-17 16:17:45 +02:00
}
if (allFilesCanonical.length == 0) return null;
if (allFilesCanonical.length == 1) return allFilesCanonical[0];
let prev = allFilesCanonical[0];
let curr = null;
for (let i = 1; i < allFilesCanonical.length; i++) {
curr = allFilesCanonical[i];
mergePriceHistory(prev, curr);
prev = curr;
}
return curr;
}
const HITS = Math.floor(30000 + Math.random() * 2000);
const SPAR_SEARCH = `https://search-spar.spar-ics.com/fact-finder/rest/v4/search/products_lmos_at?query=*&q=*&page=1&hitsPerPage=${HITS}`;
2023-05-22 14:24:26 +02:00
const BILLA_SEARCH = `https://shop.billa.at/api/search/full?searchTerm=*&storeId=00-10&pageSize=${HITS}`;
2023-05-17 16:17:45 +02:00
exports.updateData = async function (dataDir, done) {
2023-05-17 16:17:45 +02:00
const today = currentDate();
console.log("Fetching data for date: " + today);
let start = performance.now();
const sparItems = (await axios.get(SPAR_SEARCH)).data.hits;
fs.writeFileSync(`${dataDir}/spar-${today}.json`, JSON.stringify(sparItems, null, 2));
const sparItemsCanonical = sparToCanonical(sparItems, today);
console.log("Fetched SPAR data, took " + (performance.now() - start) / 1000 + " seconds");
start = performance.now();
const billaItems = (await axios.get(BILLA_SEARCH)).data.tiles;
fs.writeFileSync(`${dataDir}/billa-${today}.json`, JSON.stringify(billaItems, null, 2));
const billaItemsCanonical = billaToCanonical(billaItems, today);
console.log("Fetched BILLA data, took " + (performance.now() - start) / 1000 + " seconds");
start = performance.now();
const hoferItems = await fetchHofer();
fs.writeFileSync(`${dataDir}/hofer-${today}.json`, JSON.stringify(hoferItems, null, 2));
const hoferItemsCanonical = hoferToCanonical(hoferItems, today);
console.log("Fetched HOFER data, took " + (performance.now() - start) / 1000 + " seconds");
const items = [...billaItemsCanonical, ...sparItemsCanonical, ...hoferItemsCanonical];
2023-05-17 16:17:45 +02:00
if (fs.existsSync(`${dataDir}/latest-canonical.json`)) {
const oldItems = JSON.parse(fs.readFileSync(`${dataDir}/latest-canonical.json`));
mergePriceHistory(oldItems, items);
console.log("Merged price history");
}
fs.writeFileSync(`${dataDir}/latest-canonical.json`, JSON.stringify(items, null, 2));
if (done) done(items);
2023-05-17 16:17:45 +02:00
return items;
}