fix: fix fetcher.js

As always, Quora changed their HTML

BREAKING CHANGE: previous fetcher.js won't work as Quora again changed their HTML

closes https://github.com/zyachel/quetre/issues/68
This commit is contained in:
zyachel 2022-09-22 20:46:03 +05:30
parent bfe0aa10c3
commit bf266a9a89

View file

@ -24,16 +24,13 @@ const fetcher = async resourceStr => {
const res = await axiosInstance.get(encodeURIComponent(resourceStr));
const $ = cheerio.load(res.data);
let rawData;
$('body')
.children('script')
.each((i, el) => {
if ($(el).html().includes('window.setTimingData'))
rawData = $(el)
.prev()
.html()
?.match(/"\{.*\}"/m)?.[0];
});
// this logic is prone to breakage as Quora changes position of the script that includes answers.
// Cur position: 4th from bottom.
const rawData = $('body script:nth-last-child(4)')
.html()
?.match(/"\{.*\}"/m)?.[0];
if (!rawData || !Object.entries(rawData).length)
throw new AppError("couldn't retrieve data", 500);