diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-05 10:46:16 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-05 10:46:16 +0100 |
commit | 3d1a130278fdec895e88854e3ebb65d01b603764 (patch) | |
tree | fb82aadc37e3cde483cff31d97524ddc8dd80a91 | |
parent | c2b110c40aadd2790eb7e04b03c7c9fd879b3616 (diff) | |
download | google_images-3d1a130278fdec895e88854e3ebb65d01b603764.tar.xz |
Fix crashes
-rw-r--r-- | init.js | 5 | ||||
-rw-r--r-- | package-lock.json | 2 | ||||
-rw-r--r-- | package.json | 4 | ||||
-rw-r--r-- | test.js | 2 |
4 files changed, 7 insertions, 6 deletions
@@ -8,7 +8,7 @@ const debug = arg => { } module.exports.search = (query, userAgent = "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0") => - fetch("https://www.google.com/search?tbm=isch&q=" + encodeURIComponent(query), {headers: {"User-Agent": userAgent}}).then(res => res.text()).then(data => + fetch("https://www.google.com/search?tbm=isch&q=" + encodeURIComponent(debug(query)), {headers: {"User-Agent": userAgent}}).then(res => res.text()).then(data => cheerio.load(data, null, false) // parse HTML ("script") // find script tags .toArray() // convert cheerio list to array @@ -17,7 +17,7 @@ module.exports.search = (query, userAgent = "Mozilla/5.0 (X11; Ubuntu; Linux x86 .map(script => script.slice("AF_initDataCallback(".length, -");".length)) // remove call to init function .map(jsonic) // jsonic is used because JSON.parse() requires strict JSON and eval() allows remote code execution .find(data => data.key == "ds:1") // for some reason there are two init datas, one is empty tho - .data[31][0][12][2].map(elem => new Object({ // map the parts of the init data we know/care about to something readable + .data[31][0][12][2].map(elem => elem[1] && new Object({ // map the parts of the init data we know/care about to something readable image: { url: elem[1][3][0], size: { @@ -36,6 +36,7 @@ module.exports.search = (query, userAgent = "Mozilla/5.0 (X11; Ubuntu; Linux x86 link: elem[1][9][2003][2], title: elem[1][9][2003][3], // there is some more data in elem[1][9] that could potentially be useful })) + .filter(elem => elem) ) /* diff --git a/package-lock.json b/package-lock.json index 2acc47d..e19f360 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "google_images", - "version": "1.0.2", + "version": "1.0.3", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index e5a021f..dbe808a 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "free-google-images", - "version": "1.0.2", + "version": "1.0.3", "description": "Reverse Engineered Google Image Search API", "main": "init.js", "scripts": { - "test": "node test.js" + "test": "node test.js astolfo images" }, "repository": { "type": "git", @@ -1,5 +1,5 @@ const {search} = require("./init.js") const util = require("util") -search("astolfo+images") +search(process.argv.slice(2).join("+")) .then(obj => console.log(util.inspect(obj, {showHidden: false, depth: null, colors: true}))) |