2024-05-23 15:34:40 +00:00
|
|
|
const IS_QUESTION_REGEX = /^[0-9]+\. (.*)$/;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches answers from the specified URL.
|
|
|
|
* @param {string} [answerURL=""] - The URL to fetch answers from.
|
|
|
|
* @returns {Promise<Array<Answer>>} A Promise that resolves with the fetched answers.
|
|
|
|
*/
|
|
|
|
function fetchAnswers(answerURL = "") {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
GM_xmlhttpRequest({
|
|
|
|
method: "GET",
|
|
|
|
url: answerURL,
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "text/html",
|
|
|
|
},
|
|
|
|
onload: function (response) {
|
|
|
|
parseAnswers(response, resolve);
|
|
|
|
},
|
|
|
|
onerror: function (error) {
|
|
|
|
reject(error);
|
|
|
|
},
|
2024-05-23 14:32:22 +00:00
|
|
|
});
|
2024-05-23 15:34:40 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {GMXMLHttpRequestResponse} response
|
|
|
|
* @param {(value: Answer[] | PromiseLike<Answer[]>) => void} resolve
|
|
|
|
*/
|
|
|
|
function parseAnswers(response, resolve) {
|
|
|
|
const results = [];
|
|
|
|
const allAnswersElement = getAllAnswersElement(response);
|
|
|
|
|
|
|
|
let index = -1;
|
|
|
|
for (let child of Array.from(allAnswersElement.children)) {
|
|
|
|
index++;
|
|
|
|
const result = parseAnswerElement(index, child, allAnswersElement);
|
2024-05-23 15:46:58 +00:00
|
|
|
if(result != undefined){
|
|
|
|
results.push(result);
|
|
|
|
}
|
2024-05-23 14:32:22 +00:00
|
|
|
}
|
2024-05-23 15:34:40 +00:00
|
|
|
|
|
|
|
resolve(results);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {GMXMLHttpRequestResponse} response
|
|
|
|
* @returns {Element}
|
|
|
|
*/
|
|
|
|
function getAllAnswersElement(response) {
|
|
|
|
const parser = new DOMParser();
|
|
|
|
const virtualDOM = parser.parseFromString(response.responseText, "text/html");
|
|
|
|
|
|
|
|
let answersElement = virtualDOM.querySelector(".pf-content");
|
|
|
|
if (!answersElement) {
|
|
|
|
answersElement = virtualDOM.querySelector(".thecontent");
|
|
|
|
}
|
|
|
|
return answersElement;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {number} index
|
|
|
|
* @param {Element} allAnswersElement
|
|
|
|
* @param {Element} element
|
|
|
|
* @returns {Answer}
|
|
|
|
*/
|
|
|
|
function parseAnswerElement(index, element, allAnswersElement) {
|
|
|
|
// Check for Possible Tags
|
2024-05-23 16:43:18 +00:00
|
|
|
if (!(element.tagName === "P" || element.tagName === "STRONG") || !element.innerHTML) {
|
2024-05-23 15:34:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get Question Element
|
|
|
|
/** @type {Element} */
|
|
|
|
let questionElement = element.querySelector("strong");
|
|
|
|
if (questionElement === null) {
|
|
|
|
if (!element.textContent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
questionElement = element;
|
|
|
|
}
|
|
|
|
|
2024-05-23 16:43:18 +00:00
|
|
|
|
2024-05-23 15:34:40 +00:00
|
|
|
// Get Question
|
|
|
|
const questionText = parseQuestion(questionElement);
|
|
|
|
if (questionText === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get Awsners
|
|
|
|
const answersElement = getAnswersElement(index, allAnswersElement);
|
2024-05-23 16:43:18 +00:00
|
|
|
if (answersElement === null || answersElement.tagName !== "UL") return;
|
2024-05-23 15:40:03 +00:00
|
|
|
|
2024-05-23 15:34:40 +00:00
|
|
|
return {
|
|
|
|
question: questionText,
|
|
|
|
answers: getAnswers(answersElement),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {Element} questionElement
|
|
|
|
* @returns {String}
|
|
|
|
*/
|
|
|
|
function parseQuestion(questionElement) {
|
|
|
|
const textContent = questionElement.textContent.trim();
|
|
|
|
const matches = textContent.match(IS_QUESTION_REGEX);
|
|
|
|
return matches !== null ? matches[1] : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {number} index
|
|
|
|
* @param {Element} allAnswersElement
|
|
|
|
* @returns {Element}
|
|
|
|
*/
|
|
|
|
function getAnswersElement(index, allAnswersElement) {
|
|
|
|
let answersElement = allAnswersElement.children[index + 1];
|
|
|
|
|
|
|
|
if (answersElement.tagName === "P") {
|
|
|
|
answersElement = allAnswersElement.children[index + 2];
|
|
|
|
}
|
|
|
|
return answersElement;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {Element} answersElement
|
|
|
|
* @returns {Array<string>}
|
|
|
|
*/
|
|
|
|
function getAnswers(answersElement) {
|
|
|
|
const answers = [];
|
|
|
|
for (let answerDom of Array.from(answersElement.querySelectorAll("strong"))) {
|
|
|
|
let answerText = answerDom.textContent.trim();
|
|
|
|
if (answerText.endsWith("*")) {
|
|
|
|
answerText = answerText.substring(0, answerText.length - 1);
|
|
|
|
}
|
|
|
|
answers.push(answerText);
|
|
|
|
}
|
|
|
|
|
|
|
|
return answers;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.fetchAnswers = fetchAnswers;
|