ryu-js / scrapper.js
randydev's picture
Update scrapper.js
6a2b293 verified
raw
history blame
2.18 kB
const axios = require('axios')
const cheerio = require('cheerio');
const {GptModelOld} = require('./models');
const OpenaiRes = async (prompt) => {
try {
const EncodeUrl = "aHR0cHM6Ly9vcGVuYWktZ3B0LnJlbWl4cHJvamVjdC5vcmcv"
let url;
try {
url = atob(EncodeUrl);
} catch (e) {
console.error("Could not decode the string! " + e);
}
const headers = {
"Accept": "application/json",
"Content-Type": "application/json",
"Accept-Language": "en",
"Connection": "keep-alive",
"Origin": "https://remix.ethereum.org",
"Referer": "https://remix.ethereum.org/",
"Sec-Fetch-Dest": "empty",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Site": "cross-site",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134"
};
const response = await axios.post(url, GptModelOld(prompt), { headers, timeout: 50000 });
if (response.status === 200) {
return response.data.choices[0].message.content + "\n\nPowered By xtdevs";
}
} catch (error) {
console.error("Error:", error.message);
return null;
}
};
async function tebakgambar() {
try {
const url = "https://jawabantebakgambar.net/all-answers/";
const response = await axios.get(url);
const $ = cheerio.load(response.data);
const randomNum = Math.floor(Math.random() * (2836 - 2 + 1)) + 2; // Random between 2 and 2836
const selectedItem = $(`#images > li:nth-child(${randomNum}) > a`);
if (selectedItem.length > 0) {
const img = 'https://jawabantebakgambar.net' + selectedItem.find('img').attr('data-src');
const jwb = selectedItem.find('img').attr('alt');
const result = {
message: "By Randydev",
image: img,
jawaban: jwb
};
return result;
} else {
throw new Error("Selected item not found.");
}
} catch (error) {
console.error(error);
return null;
}
}
module.exports = {
OpenaiRes,
tebakgambar
};