mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
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:
parent
bfe0aa10c3
commit
bf266a9a89
1 changed files with 7 additions and 10 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue