mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 02:34:38 -05:00
add web search~ :3
This commit is contained in:
parent
7c90af5004
commit
c85b0d0b06
1 changed files with 14 additions and 3 deletions
|
@ -63,6 +63,10 @@ module.exports = function (app, config, renderTemplate) {
|
|||
|
||||
app.get("/search", async (req, res) => {
|
||||
const query = req.query.query;
|
||||
const tab = req.query.tab
|
||||
|
||||
const search = require('google-it')
|
||||
|
||||
|
||||
var uaos = req.useragent.os;
|
||||
var IsOldWindows;
|
||||
|
@ -113,14 +117,21 @@ module.exports = function (app, config, renderTemplate) {
|
|||
if ( searchJson.Search?.Results?.DynamicItem?.id === "didYouMeanRenderer" ) { didYouMean = JSON.parse(searchJson.Search.Results.DynamicItem.Title);
|
||||
}
|
||||
|
||||
search({'query': `${req.query.query}`}).then(results => {
|
||||
renderTemplate(res, req, "search.ejs", {
|
||||
j: searchJson,
|
||||
IsOldWindows,
|
||||
h: didYouMean,
|
||||
tab,
|
||||
continuation,
|
||||
results:results,
|
||||
q: query,
|
||||
summary: "",
|
||||
});
|
||||
}).catch(e => {
|
||||
console.log(e)
|
||||
})
|
||||
|
||||
} catch (error) {
|
||||
console.error(`Error while searching for '${query}':`, error);
|
||||
res.redirect("/");
|
||||
|
|
Loading…
Reference in a new issue