Minor updates to cset, added new cookies
This commit is contained in:
parent
0490783289
commit
3d406ac919
|
@ -13,7 +13,9 @@ String.prototype.replaceAll = function replaceAll(search, replace) { return this
|
||||||
/* Support functions */
|
/* Support functions */
|
||||||
|
|
||||||
async function fetchPage(page, cookie){
|
async function fetchPage(page, cookie){
|
||||||
|
if(page==1){
|
||||||
|
cookie=cookie.split(";")[0] // Interesting that it otherwise doesn't work :(
|
||||||
|
}
|
||||||
let response = await axios({
|
let response = await axios({
|
||||||
url: htmlEndPoint+page,
|
url: htmlEndPoint+page,
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
|
@ -46,6 +48,7 @@ async function fetchStats(questionUrl, cookie){
|
||||||
if(isbinary){
|
if(isbinary){
|
||||||
// Crowd percentage
|
// Crowd percentage
|
||||||
let htmlElements = response.split("\n")
|
let htmlElements = response.split("\n")
|
||||||
|
// console.log(htmlElements)
|
||||||
let h3Element = htmlElements.filter(str => str.includes("<h3>"))[0]
|
let h3Element = htmlElements.filter(str => str.includes("<h3>"))[0]
|
||||||
let crowdpercentage = h3Element.split(">")[1].split("<")[0]
|
let crowdpercentage = h3Element.split(">")[1].split("<")[0]
|
||||||
let probability = Number(crowdpercentage.replace("%", ""))/100
|
let probability = Number(crowdpercentage.replace("%", ""))/100
|
||||||
|
@ -59,7 +62,9 @@ async function fetchStats(questionUrl, cookie){
|
||||||
type: "PROBABILITY"
|
type: "PROBABILITY"
|
||||||
}))
|
}))
|
||||||
}else{
|
}else{
|
||||||
let optionsHtmlElement = "<table" + response.split("tbody")[1] + "table>"
|
let optionsBody = response.split("tbody")[1]
|
||||||
|
// console.log(optionsBody)
|
||||||
|
let optionsHtmlElement = "<table" + optionsBody + "table>"
|
||||||
let tablesAsJson = Tabletojson.convert(optionsHtmlElement)
|
let tablesAsJson = Tabletojson.convert(optionsHtmlElement)
|
||||||
let firstTable = tablesAsJson[0]
|
let firstTable = tablesAsJson[0]
|
||||||
options = firstTable.map(element => ({
|
options = firstTable.map(element => ({
|
||||||
|
@ -68,19 +73,19 @@ async function fetchStats(questionUrl, cookie){
|
||||||
type: "PROBABILITY"
|
type: "PROBABILITY"
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Description
|
// Description
|
||||||
let descriptionraw = response.split(` <meta name="description" content="`)[1]
|
let descriptionraw = response.split(`<meta name="description" content="`)[1]
|
||||||
let descriptionprocessed1 = descriptionraw.split(`">`)[0]
|
let descriptionprocessed1 = descriptionraw.split(`">`)[0]
|
||||||
let descriptionprocessed2 = descriptionprocessed1.replace(">", "")
|
let descriptionprocessed2 = descriptionprocessed1.replace(">", "")
|
||||||
let descriptionprocessed3 = descriptionprocessed2.replace("To suggest a change or clarification to this question, please select Request Clarification from the green gear-shaped dropdown button to the right of the question.", ``)
|
let descriptionprocessed3 = descriptionprocessed2.replace("To suggest a change or clarification to this question, please select Request Clarification from the green gear-shaped dropdown button to the right of the question.", ``)
|
||||||
// console.log(descriptionprocessed3)
|
// console.log(descriptionprocessed3)
|
||||||
let descriptionprocessed4=descriptionprocessed3.replaceAll("\r\n\r\n", "\n")
|
let descriptionprocessed4=descriptionprocessed3.replaceAll("\r\n\r\n", "\n")
|
||||||
let descriptionprocessed5=descriptionprocessed4.replaceAll("\n\n", "\n")
|
let descriptionprocessed5= descriptionprocessed4.replaceAll("\n\n", "\n")
|
||||||
let descriptionprocessed6=descriptionprocessed5.replaceAll(""", `"`)
|
let descriptionprocessed6=descriptionprocessed5.replaceAll(""", `"`)
|
||||||
let descriptionprocessed7=descriptionprocessed6.replaceAll("'", "'")
|
let descriptionprocessed7=descriptionprocessed6.replaceAll("'", "'")
|
||||||
let descriptionprocessed8=toMarkdown(descriptionprocessed7)
|
let descriptionprocessed8=toMarkdown(descriptionprocessed7)
|
||||||
let description = descriptionprocessed8
|
let description = descriptionprocessed8
|
||||||
|
|
||||||
// Number of forecasts
|
// Number of forecasts
|
||||||
let numforecasts = response.split("prediction_sets_count":")[1].split(",")[0]
|
let numforecasts = response.split("prediction_sets_count":")[1].split(",")[0]
|
||||||
// console.log(numforecasts)
|
// console.log(numforecasts)
|
||||||
|
@ -120,12 +125,23 @@ async function csetforetell_inner(cookie){
|
||||||
let init = Date.now()
|
let init = Date.now()
|
||||||
// console.log("Downloading... This might take a couple of minutes. Results will be shown.")
|
// console.log("Downloading... This might take a couple of minutes. Results will be shown.")
|
||||||
while(!isEnd(response)){
|
while(!isEnd(response)){
|
||||||
// console.log(`Page #${i}`)
|
|
||||||
let htmlLines = response.split("\n")
|
let htmlLines = response.split("\n")
|
||||||
let h4elements = htmlLines.filter(str => str.includes("<h4><a href="))
|
let h4elements = htmlLines.filter(str => str.includes("<h5><a href=") || str.includes("<h4><a href="))
|
||||||
|
|
||||||
|
if(process.env.DEBUG_MODE == "on"){
|
||||||
|
console.log(`Page #${i}`)
|
||||||
|
console.log(response)
|
||||||
|
}
|
||||||
|
|
||||||
|
//console.log("")
|
||||||
|
//console.log("")
|
||||||
|
//console.log(h4elements)
|
||||||
|
|
||||||
for(let h4element of h4elements){
|
for(let h4element of h4elements){
|
||||||
let h4elementSplit = h4element.split('"><span>')
|
let h4elementSplit = h4element.split('"><span>')
|
||||||
let url = h4elementSplit[0].split('<a href="')[1]
|
let url = h4elementSplit[0].split('<a href="')[1]
|
||||||
|
//console.log(url)
|
||||||
let title = h4elementSplit[1].replace('</span></a></h4>', "")
|
let title = h4elementSplit[1].replace('</span></a></h4>', "")
|
||||||
await sleep(1000 + Math.random()*1000) // don't be as noticeable
|
await sleep(1000 + Math.random()*1000) // don't be as noticeable
|
||||||
try{
|
try{
|
||||||
|
@ -146,7 +162,10 @@ async function csetforetell_inner(cookie){
|
||||||
console.log(question)
|
console.log(question)
|
||||||
}
|
}
|
||||||
results.push(question)
|
results.push(question)
|
||||||
|
if(process.env.DEBUG_MODE == "on"){
|
||||||
console.log(question)
|
console.log(question)
|
||||||
|
}
|
||||||
|
|
||||||
} catch(error){
|
} catch(error){
|
||||||
console.log(error)
|
console.log(error)
|
||||||
console.log(`We encountered some error when fetching the URL: ${url}, so it won't appear on the final json`)
|
console.log(`We encountered some error when fetching the URL: ${url}, so it won't appear on the final json`)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user