heissepreise/stores/hofer.js
Matthias Hochsteger 4c55a085b2 Use short-description-2 in spar for quantity/unit
Also fix round error in cases without quantity short-description
2023-06-01 07:42:28 +02:00

71 lines
3.0 KiB
JavaScript

const axios = require("axios");
const utils = require("./utils");
const conversions = {
"": {unit: "stk", factor: 1},
"blatt": {unit: "stk", factor: 1},
"g": {unit: "g", factor: 1},
"gg": {unit: "g", factor: 1},
"gramm": {unit: "g", factor: 1},
"kg": {unit: "g", factor: 1000},
"cl": {unit: "ml", factor: 100},
"l": {unit: "ml", factor: 1000},
"ml": {unit: "ml", factor: 1},
"paar": {unit: "stk", factor: 1},
"stk.": {unit: "stk", factor: 1},
"stück": {unit: "stk", factor: 1},
"er": {unit: "stk", factor: 1},
"teebeutel": {unit: "stk", factor: 1},
};
exports.getCanonical = function(item, today) {
// try to read quantity and unit from product name
const name = item.ProductName;
let [quantity, unit] = utils.parseUnitAndQuantityAtEnd(name);
if(conversions[unit] === undefined) {
// fallback: use given quantity and unit (including packaging)
quantity = item.Unit
unit= item.UnitType
}
return utils.convertUnit({
id: item.ProductID,
name,
price: item.Price,
priceHistory: [{ date: today, price: item.Price }],
isWeighted: item.IsBulk,
unit,
quantity,
bio: item.IsBio,
url: `https://www.roksh.at/hofer/produkte/${item.CategorySEOName}/${item.SEOName}`
}, conversions, 'hofer');
}
exports.fetchData = async function() {
const HOFER_BASE_URL = `https://shopservice.roksh.at`
const CATEGORIES = HOFER_BASE_URL + `/category/GetFullCategoryList/`
const CONFIG = { headers: { authorization: null } }
const ITEMS = HOFER_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(`${HOFER_BASE_URL}/productlist/GetProductList`, { CategoryProgId: subCategory.ProgID, Page: iPage }, CONFIG)).data;
hoferItems = hoferItems.concat(items.ProductList);
}
}
return hoferItems;
}