|
|
@ -213,7 +213,30 @@ class _Client extends Client
|
|
|
|
if(!res) return false;
|
|
|
|
if(!res) return false;
|
|
|
|
const channel = this.channels.cache.get(feed.ChannelId);
|
|
|
|
const channel = this.channels.cache.get(feed.ChannelId);
|
|
|
|
if(!channel) return false;
|
|
|
|
if(!channel) return false;
|
|
|
|
// console.log('Res from',feed,res)
|
|
|
|
var ytChannelName = await fetch('https://www.youtube.com/feeds/videos.xml?channel_id='+feed.YTChannelId,
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
mode: "cors",
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.then(response=>
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if(response.ok) return response.text();
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.then(data=>
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
data = xmlparser.xml2json(data,
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
compact: true,
|
|
|
|
|
|
|
|
space: 4
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
data = JSON.parse(data);
|
|
|
|
|
|
|
|
return data.feed.author.name._text
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(error=>
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return error;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// console.log('Lib: YTFeed:',ytChannelName, res.author.name, channel.name,feed.ChannelId ,channel.id)
|
|
|
|
var aux = res;
|
|
|
|
var aux = res;
|
|
|
|
const lastSentMessage= await channel.messages.fetch().then(res=>
|
|
|
|
const lastSentMessage= await channel.messages.fetch().then(res=>
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -240,7 +263,7 @@ class _Client extends Client
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function sendMessage(res, feed, channel)
|
|
|
|
function sendMessage(res, feed, channel)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
console.log('Lib, res on sendMessage method', res)
|
|
|
|
console.log('Lib: YTFeed: SendMessage: Res', res.author.name)
|
|
|
|
const embed = new EmbedBuilder()
|
|
|
|
const embed = new EmbedBuilder()
|
|
|
|
embed.setFooter({text:'Rem-chan on ', iconURL:"https://i.imgur.com/g6FSNhL.png"})
|
|
|
|
embed.setFooter({text:'Rem-chan on ', iconURL:"https://i.imgur.com/g6FSNhL.png"})
|
|
|
|
embed.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'});
|
|
|
|
embed.setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'});
|
|
|
|