mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-17 10:27:05 -04:00
wikipedia search
This commit is contained in:
parent
0aa9d7aced
commit
6091b24044
2 changed files with 92 additions and 0 deletions
87
commands/message/search/wikipedia.js
Normal file
87
commands/message/search/wikipedia.js
Normal file
|
@ -0,0 +1,87 @@
|
|||
|
||||
const { createEmbed, formatPaginationEmbeds, page } = require('../../../labscore/utils/embed')
|
||||
const { editOrReply } = require('../../../labscore/utils/message')
|
||||
const { STATICS } = require('../../../labscore/utils/statics')
|
||||
|
||||
const { paginator } = require('../../../labscore/client');
|
||||
const superagent = require('superagent')
|
||||
|
||||
const { Permissions } = require("detritus-client/lib/constants");
|
||||
|
||||
function createWikiHowPage(context, result){
|
||||
let e = createEmbed("default", context, {
|
||||
author: {
|
||||
name: result.title,
|
||||
url: result.link
|
||||
},
|
||||
description: result.snippet,
|
||||
footer: {
|
||||
iconUrl: STATICS.wikihow,
|
||||
text: `WikiHow • ${context.application.name}`
|
||||
}
|
||||
})
|
||||
if(result.image) e.image = {
|
||||
url: result.image
|
||||
}
|
||||
let res = {"embeds": [e]}
|
||||
return res;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
name: 'wikipedia',
|
||||
label: 'query',
|
||||
aliases: ['wiki'],
|
||||
metadata: {
|
||||
description: 'Returns search results from Wikipedia.',
|
||||
description_short: 'Search on Wikipedia',
|
||||
examples: ['wiki otters'],
|
||||
category: 'search',
|
||||
usage: 'wikipedia <query>'
|
||||
},
|
||||
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.USE_EXTERNAL_EMOJIS],
|
||||
run: async (context, args) => {
|
||||
context.triggerTyping();
|
||||
try{
|
||||
let search = await superagent.get(`https://api.wikimedia.org/core/v1/wikipedia/en/search/page`)
|
||||
.query({
|
||||
q: args.query,
|
||||
limit: 100,
|
||||
language: 'en'
|
||||
})
|
||||
|
||||
let pages = []
|
||||
|
||||
if(!search.body.pages.length) return editOrReply(context, {embeds:[createEmbed("error", context, `No results found.`)]})
|
||||
|
||||
for(const res of Object.values(search.body.pages)){
|
||||
let p = createEmbed("default", context, {
|
||||
author: {
|
||||
name: res.title,
|
||||
url: `https://en.wikipedia.org/wiki/${res.key}`
|
||||
},
|
||||
footer: {
|
||||
iconUrl: STATICS.wikipedia,
|
||||
text: `Wikipedia • ${context.application.name}`
|
||||
}
|
||||
})
|
||||
|
||||
if(res.thumbnail && res.thumbnail.url) p.thumbnail = {
|
||||
url: 'https:' + res.thumbnail.url.replace(/d3\/.*?\/[0-9]*px-/, '/d3/').replace('/thumb/d/', '/d')
|
||||
}
|
||||
|
||||
if(res.excerpt) p.description = res.excerpt.replace(/\<.*?\>/g, '')
|
||||
|
||||
pages.push(page(p))
|
||||
}
|
||||
|
||||
pages = formatPaginationEmbeds(pages)
|
||||
const paging = await paginator.createPaginator({
|
||||
context,
|
||||
pages
|
||||
});
|
||||
}catch(e){
|
||||
console.log(e)
|
||||
return editOrReply(context, {embeds:[createEmbed("error", context, `Unable to perform wikipedia search.`)]})
|
||||
}
|
||||
},
|
||||
};
|
|
@ -68,6 +68,10 @@ const Statics = Object.freeze({
|
|||
file: "brands/wikihow.png",
|
||||
revision: 1
|
||||
},
|
||||
wikipedia: {
|
||||
file: "brands/wikipedia.png",
|
||||
revision: 1
|
||||
},
|
||||
wolframalpha: {
|
||||
file: "brands/wolframalpha.png",
|
||||
revision: 2
|
||||
|
@ -118,6 +122,7 @@ module.exports.STATICS = Object.freeze({
|
|||
tineye: staticAsset(Statics.brands.tineye),
|
||||
urbandictionary: staticAsset(Statics.brands.urbandictionary),
|
||||
wikihow: staticAsset(Statics.brands.wikihow),
|
||||
wikipedia: staticAsset(Statics.brands.wikipedia),
|
||||
wolframalpha: staticAsset(Statics.brands.wolframalpha),
|
||||
youtube: staticAsset(Statics.brands.youtube),
|
||||
embedSpacerInvite: staticAsset({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue