All searches are actual searches now

master
Cristiano Pires 2 years ago
parent 686c73857a
commit 0952b045ed

@ -27,10 +27,10 @@ class anime extends Command{
.setImage(data[0].coverImage) .setImage(data[0].coverImage)
.setTimestamp() .setTimestamp()
.addFields( .addFields(
{name:data[0].title.romaji+' ['+data[0].title.english+']', value:'1', inline:true}, {name:data[0].title.romaji+' ['+data[0].title.english+']', value:'1'},
{name:data[1].title.romaji+' ['+data[0].title.english+']', value:'2', inline:true}, {name:data[1].title.romaji+' ['+data[0].title.english+']', value:'2'},
{name:data[2].title.romaji+' ['+data[0].title.english+']', value:'3', inline:true}, {name:data[2].title.romaji+' ['+data[0].title.english+']', value:'3'},
{name:data[3].title.romaji+' ['+data[0].title.english+']', value:'4', inline:true}, {name:data[3].title.romaji+' ['+data[0].title.english+']', value:'4'},
); );
var embeds = [embed] var embeds = [embed]
embeds.push(new EmbedBuilder().setImage(data[1].coverImage).setURL('https://www.rem.wordfights.com')); embeds.push(new EmbedBuilder().setImage(data[1].coverImage).setURL('https://www.rem.wordfights.com'));

@ -15,34 +15,92 @@ class char extends Command{
} }
async run(message, args) async run(message, args)
{ {
if(!args[0]) return new ErrorMessage(this.client).send(ErrorType.Arguments, message)
const data = await new aniList().searchChar(args.join(' ')); const data = await new aniList().searchChar(args.join(' '));
if(data=='Error') return new ErrorMessage(this.client).send(ErrorType.Arguments, message, [`Couldn't find any character with the search argument you provided.`])
const embed = new EmbedBuilder() const embed = new EmbedBuilder()
.setTitle(`${data.name.full} (${data.name.native})`) .setTitle('First 4 results of search:')
.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'})
.setColor(0x003284) .setColor(0x003284)
.setDescription(data.description)//.split('~! ')[1].replaceAll('<br>', ' ').substring(0, 1500) + "...") .setURL('https://www.rem.wordfights.com')
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
.setImage(data.image) .setImage(data[0].image)
.setThumbnail(data.image)
.setTimestamp() .setTimestamp()
.addFields( .addFields(
{name:'Gender:', value:data.gender, inline:true}); {name:data[0].name.full+' ['+data[0].name.native+']', value:'1'},
const randomID = Random(); {name:data[1].name.full+' ['+data[0].name.native+']', value:'2'},
const row = new ActionRowBuilder() {name:data[2].name.full+' ['+data[0].name.native+']', value:'3'},
.addComponents( {name:data[3].name.full+' ['+data[0].name.native+']', value:'4'},
new ButtonBuilder() );
.setCustomId(randomID) var embeds = [embed]
.setLabel('Remove this.') embeds.push(new EmbedBuilder().setImage(data[1].image).setURL('https://www.rem.wordfights.com'));
.setStyle(ButtonStyle.Primary), embeds.push(new EmbedBuilder().setImage(data[2].image).setURL('https://www.rem.wordfights.com'));
); embeds.push(new EmbedBuilder().setImage(data[3].image).setURL('https://www.rem.wordfights.com'));
const filter = i => i.customId === randomID; //${data.title.romaji} (${data.title.native} / ${data.title.english})
await message.channel.send({ephemeral: true, embeds: [embed], components: [row] });
const collector = message.channel.createMessageComponentCollector({ filter, time: 60000 }); const randomID = Random();
collector.on('collect', async m => const row = new ActionRowBuilder()
{ .addComponents(
message.delete(); new ButtonBuilder()
m.message.delete(); .setCustomId(randomID+1)
}); .setLabel('1')
.setStyle(ButtonStyle.Success),
new ButtonBuilder()
.setCustomId(randomID+2)
.setLabel('2')
.setStyle(ButtonStyle.Success),
new ButtonBuilder()
.setCustomId(randomID+3)
.setLabel('3')
.setStyle(ButtonStyle.Success),
new ButtonBuilder()
.setCustomId(randomID+4)
.setLabel('4')
.setStyle(ButtonStyle.Success),
);
const filter = i => i.customId.slice(0,-1) === randomID;
await message.channel.send({ephemeral: true, embeds, components: [row] });
const collector = message.channel.createMessageComponentCollector({ filter, time: 60000 });
collector.on('collect', async m =>
{
message.delete();
m.message.delete();
sendMessage(data[m.customId[m.customId.length-1]-1].id);
});
/**
* @param {Number} id
*/
async function sendMessage(id)
{
const data = await new aniList().getCharInfo(id);
const embed = new EmbedBuilder()
.setTitle(`${data.name.full} (${data.name.native})`)
.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'})
.setColor(0x003284)
.setDescription(data.description)//.split('~! ')[1].replaceAll('<br>', ' ').substring(0, 1500) + "...")
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
.setImage(data.image)
.setThumbnail(data.image)
.setTimestamp()
.addFields(
{name:'Gender:', value:data.gender, inline:true});
const randomID = Random();
const row = new ActionRowBuilder()
.addComponents(
new ButtonBuilder()
.setCustomId(randomID)
.setLabel('Remove this.')
.setStyle(ButtonStyle.Primary),
);
const filter = i => i.customId === randomID;
await message.channel.send({ephemeral: true, embeds: [embed], components: [row] });
const collector = message.channel.createMessageComponentCollector({ filter, time: 60000 });
collector.on('collect', async m =>
{
m.message.delete();
});
}
} }

@ -15,31 +15,88 @@ class manga extends Command{
} }
async run(message, args) async run(message, args)
{ {
const data = await new aniList().searchManga(args.join(' ')); if(!args[0]) return new ErrorMessage(this.client).send(ErrorType.Arguments, message)
const embed = new EmbedBuilder() const data = await new aniList().searchManga(args.join(' '));
.setTitle(`${data.title.romaji} (${data.title.native} / ${data.title.english})`) if(data=='Error') return new ErrorMessage(this.client).send(ErrorType.Arguments, message, [`Couldn't find any character with the search argument you provided.`])
.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) const embed = new EmbedBuilder()
.setColor(0x003284) .setTitle('First 4 results of search:')
.setDescription(data.description)//.replaceAll('<br>', ' ').substring(0, 1500) + "...") .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'})
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) .setColor(0x003284)
.setImage(data.coverImage) .setURL('https://www.rem.wordfights.com')
.setThumbnail(data.coverImage) .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
.setTimestamp() .setImage(data[0].image)
.setTimestamp()
.addFields(
{name:data[0].title.romaji+(data[0].title.english?"("+data.title.english+")":''), value:'1'},
{name:data[1].title.romaji+(data[1].title.english?"("+data.title.english+")":''), value:'2'},
{name:data[2].title.romaji+(data[2].title.english?"("+data.title.english+")":''), value:'3'},
{name:data[3].title.romaji+(data[3].title.english?"("+data.title.english+")":''), value:'4'},
);
var embeds = [embed]
embeds.push(new EmbedBuilder().setImage(data[1].image).setURL('https://www.rem.wordfights.com'));
embeds.push(new EmbedBuilder().setImage(data[2].image).setURL('https://www.rem.wordfights.com'));
embeds.push(new EmbedBuilder().setImage(data[3].image).setURL('https://www.rem.wordfights.com'));
const randomID = Random(); const randomID = Random();
const row = new ActionRowBuilder() const row = new ActionRowBuilder()
.addComponents( .addComponents(
new ButtonBuilder() new ButtonBuilder()
.setCustomId(randomID) .setCustomId(randomID+1)
.setLabel('Remove this.') .setLabel('1')
.setStyle(ButtonStyle.Primary), .setStyle(ButtonStyle.Success),
new ButtonBuilder()
.setCustomId(randomID+2)
.setLabel('2')
.setStyle(ButtonStyle.Success),
new ButtonBuilder()
.setCustomId(randomID+3)
.setLabel('3')
.setStyle(ButtonStyle.Success),
new ButtonBuilder()
.setCustomId(randomID+4)
.setLabel('4')
.setStyle(ButtonStyle.Success),
); );
const filter = i => i.customId === randomID; const filter = i => i.customId.slice(0,-1) === randomID;
await message.channel.send({ephemeral: true, embeds: [embed], components: [row] }); await message.channel.send({ephemeral: true, embeds, components: [row] });
const collector = message.channel.createMessageComponentCollector({ filter, time: 60000 }); const collector = message.channel.createMessageComponentCollector({ filter, time: 60000 });
collector.on('collect', async m => collector.on('collect', async m =>
{ {
message.delete(); message.delete();
m.message.delete(); m.message.delete();
}); sendMessage(data[m.customId[m.customId.length-1]-1].id);
});
/**
* @param {Number} id
*/
async function sendMessage(id)
{
const data = await new aniList().getMangaInfo(id);
const embed = new EmbedBuilder()
.setTitle(`${data.title.romaji} (${data.title.native} / ${data.title.english})`)
.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'})
.setColor(0x003284)
.setDescription(data.description)//.replaceAll('<br>', ' ').substring(0, 1500) + "...")
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
.setImage(data.coverImage)
.setThumbnail(data.coverImage)
.setTimestamp()
const randomID = Random();
const row = new ActionRowBuilder()
.addComponents(
new ButtonBuilder()
.setCustomId(randomID)
.setLabel('Remove this.')
.setStyle(ButtonStyle.Primary),
);
const filter = i => i.customId === randomID;
await message.channel.send({ephemeral: true, embeds: [embed], components: [row] });
const collector = message.channel.createMessageComponentCollector({ filter, time: 60000 });
collector.on('collect', async m =>
{
m.message.delete();
});
}
} }
}module.exports = manga; }module.exports = manga;

140
lib.js

@ -574,13 +574,78 @@ class aniListCli {
* @returns {CharInfo} * @returns {CharInfo}
*/ */
async searchChar(ss) async searchChar(ss)
{
var variables = {
ss,
"page": 0,
"perPage": 4
};
var query = `query ($ss: String, $page: Int, $perPage: Int) {
Page(page: $page, perPage: $perPage) {
characters(search: $ss, sort: SEARCH_MATCH) {
id
name {
full
native
}
gender
image {
medium
}
}
}
}
`;
var url = 'https://graphql.anilist.co',
options = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
},
body: JSON.stringify({
query,
variables
})
};
return await fetch(url, options).then(handleResponse)
.then(handleData)
.catch(handleError);
function handleResponse(response)
{
return response.json().then(function (json)
{
return response.ok ? json : Promise.reject(json);
});
}
function handleError(error) {
return error;
}
function handleData(data) {
var chars = data.data.Page.characters
var aux = [];
if(!chars[0]) return 'Error'
for(var char of chars)
{
aux.push({
id:char.id,
name:char.name,
gender:char.gender,
image:char.image.medium
})
}
return aux;
}
}
async getCharInfo(id)
{ {
var variables = { var variables = {
ss id
}; };
var query = `query ($ss: String) { var query = `query ($id: Int) {
Character(search: $ss, sort:SEARCH_MATCH) { Character(id: $id, ) {
id id
name { name {
full full
@ -636,12 +701,73 @@ class aniListCli {
*/ */
async searchManga(ss) async searchManga(ss)
{ {
var variables =
{
ss,
"page": 0,
"perPage": 4
}
var query = `query ($ss: String, $page: Int, $perPage: Int) {
Page(page: $page, perPage: $perPage) {
media(search: $ss, type: MANGA) {
id
title {
romaji
english
}
coverImage {
medium
}
}
}
}`
var url = 'https://graphql.anilist.co',
options = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
},
body: JSON.stringify({
query,
variables
})
};
return await fetch(url, options).then(handleResponse)
.then(handleData)
.catch(handleError);
function handleResponse(response)
{
return response.json().then(function (json)
{
return response.ok ? json : Promise.reject(json);
});
}
function handleError(error) {
return error;
}
function handleData(data) {
var mangas = data.data.Page.media;
var aux = [];
if(!mangas[0]) return 'Error'
for(var manga of mangas)
{
aux.push({
id:manga.id,
title:manga.title,
image:manga.coverImage.medium
})
}
return aux;
}
}
async getMangaInfo(id)
{
var variables = { var variables = {
ss id
}; };
var query = `query ($ss: String) { var query = `query ($id: Int) {
Media(search: $ss, type: MANGA) { Media(id: $id) {
title { title {
romaji romaji
english english

Loading…
Cancel
Save