Allow multiple feeds on the same channel.

master
Cristiano Pires 2 years ago
parent f327ce496f
commit ab10587924

@ -96,8 +96,6 @@ class setYTFeed extends Command{
return data.feed.author.name._text return data.feed.author.name._text
} }
if(!name) return {error:'Provided Youtube channel does not exist.'} if(!name) return {error:'Provided Youtube channel does not exist.'}
const channelInUse = await feedM.findOne({ChannelId:channelId}).then(channel=>{return channel}).catch(()=>{return []});
if(channelInUse) return {error:'Discord channel already in use. Please choose another.'}
return {YTChannelId, channelId, name, channelName:exists.name} return {YTChannelId, channelId, name, channelName:exists.name}
} }

@ -360,8 +360,6 @@ async function confirmArgs(args, bot)
}) })
.catch(error=>{return error;}); .catch(error=>{return error;});
if(!name) return {error:'Provided Youtube channel does not exist.'} if(!name) return {error:'Provided Youtube channel does not exist.'}
const channelInUse = await feedsM.findOne({ChannelId:channelId}).then(channel=>{return channel}).catch(()=>{return []});
if(channelInUse) return {error:'Discord channel already in use. Please choose another.'}
return {YTChannelId, channelId, name, channelName:exists.name} return {YTChannelId, channelId, name, channelName:exists.name}
} }
exports.deleteFeed = (req,res) => exports.deleteFeed = (req,res) =>

@ -171,10 +171,6 @@ class _Client extends Client
} }
async YTFeed() async YTFeed()
{ {
//TODO: Allow multiple feeds per channel
//Rust: FacePunch and Shadowfrax
//!Needs some other element for comparison other than published date
const feeds = await feedM.find().then(feeds=>{return feeds}) const feeds = await feedM.find().then(feeds=>{return feeds})
if(feeds.length<1) return if(feeds.length<1) return
for(var feed of feeds) for(var feed of feeds)
@ -216,7 +212,7 @@ 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;
const lastSentMessage = await channel.messages.fetch().then(res=> const lastSentMessage= await channel.messages.fetch().then(res=>
{ {
for(var item of res) for(var item of res)
{ {
@ -226,13 +222,15 @@ class _Client extends Client
{ {
var fields = item[1].embeds[0].fields.filter(x=>x.name === 'PublishedTimeStamp'); var fields = item[1].embeds[0].fields.filter(x=>x.name === 'PublishedTimeStamp');
var isFeed = fields.length>0; var isFeed = fields.length>0;
if(isFeed) return fields[0].value if(isFeed) return item[1].embeds[0];
} }
} }
} }
}) })
if(!lastSentMessage) sendMessage(res, feed, channel) const lastSentMessagePublished = lastSentMessage.fields[0].value;
else if(lastSentMessage != res.published) sendMessage(res, feed, channel); const lastSentMessageChannelURL = lastSentMessage.data.url
if(!lastSentMessagePublished) sendMessage(res, feed, channel)
else if(lastSentMessagePublished != res.published && lastSentMessageChannelURL == res.author.url) sendMessage(res, feed, channel);
})(feed); })(feed);
} }
function sendMessage(res, feed, channel) function sendMessage(res, feed, channel)

Loading…
Cancel
Save