heissepreise/stores/lidl.js

62 lines
2.0 KiB
JavaScript
Raw Normal View History

2023-05-25 13:54:28 +02:00
const axios = require("axios");
const utils = require("./utils");
2023-05-25 13:54:28 +02:00
const HITS = Math.floor(30000 + Math.random() * 2000);
2023-05-28 18:37:06 +02:00
const conversions = {
"": {unit: "stk", factor: 1},
"dosen": {unit: "stk", factor: 1},
"blatt": {unit: "stk", factor: 1},
"flaschen": {unit: "stk", factor: 1},
"l": {unit: "ml", factor: 1000},
"liter": {unit: "ml", factor: 1000},
"ml": {unit: "ml", factor: 1},
"g": {unit: "g", factor: 1},
"kg": {unit: "g", factor: 1000},
"stk.": {unit: "stk", factor: 1},
};
2023-05-25 13:54:28 +02:00
exports.getCanonical = function(item, today) {
2023-05-28 18:37:06 +02:00
let quantity = 1;
let unit = '';
let text = (item.price.basePrice?.text ?? "").trim().split('(')[0].replaceAll(',', '.').toLowerCase();
let isWeighted = false;
2023-05-28 18:37:06 +02:00
if(text === 'per kg') {
isWeighted = true;
unit = 'kg';
2023-05-28 18:37:06 +02:00
}
else {
if(text.startsWith('bei') && text.search('je ') != -1)
text = text.substr(text.search('je '))
for (let s of ['ab ', 'je ', 'ca. ', 'z.b.: ', 'z.b. '])
text = text.replace(s, '').trim()
const regex = /^([0-9.x ]+)(.*)$/;
const matches = text.match(regex);
if(matches) {
matches[1].split('x').forEach( (q)=> {
quantity = quantity * parseFloat(q.split('/')[0])
})
unit = matches[2].split('/')[0].trim().split(' ')[0];
}
unit = unit.split('-')[0];
2023-05-28 18:37:06 +02:00
}
return utils.convertUnit({
2023-05-25 13:54:28 +02:00
id: item.productId,
name: `${item.keyfacts?.supplementalDescription?.concat(" ") ?? ""}${item.fullTitle}`,
price: item.price.price,
priceHistory: [{ date: today, price: item.price.price }],
2023-05-28 18:37:06 +02:00
unit,
quantity,
url: `https://www.lidl.at${item.canonicalUrl}`,
2023-05-28 22:27:47 +02:00
}, conversions, 'lidl');
2023-05-25 13:54:28 +02:00
}
exports.fetchData = async function() {
const LIDL_SEARCH = `https://www.lidl.at/p/api/gridboxes/AT/de/?max=${HITS}`;
return (await axios.get(LIDL_SEARCH)).data.filter(item => !!item.price.price);
}