Error handling -> Edge cases on youtube urls; house cleaning on routes

master
Cristiano Pires 2 years ago
parent 6d3cbf645f
commit 183b162d91

@ -326,7 +326,17 @@ exports.getChannelName = async (req,res)=>
}
exports.checkChannel = async (req, res)=>
{
var isValid = await fetch('https://www.youtube.com/'+req.headers.id,
var url = req.headers.id;
var regExp = '^(?:(?:https?:)?\/\/)?(?:www\.|(m\.)?)(youtube\.com|youtu\.be)(\/[^\s]*)?$';
var rE = new RegExp(regExp);
if (rE.test(url)) {
url = req.headers.id;
}
else
{
url = 'https://www.youtube.com/'+req.headers.id
}
var isValid = await fetch(url,
{
method: "GET",
mode: "cors",

@ -213,7 +213,30 @@ class _Client extends Client
if(!res) return false;
const channel = this.channels.cache.get(feed.ChannelId);
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;
const lastSentMessage= await channel.messages.fetch().then(res=>
{
@ -240,7 +263,7 @@ class _Client extends Client
}
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()
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'});

@ -511,7 +511,7 @@ async function _updateFeed(element)
var YTchannelID = document.getElementById('YTchannelID').value;
var CostumMessageI = document.getElementById('CostumMessageI').value;
var YTValid = await channelCheck(YTchannelID);
if(!YTValid) return document.getElementById('YTchannelID').style = "border: 2px solid red" //! COMPLETE THIS WITH A ERROR POPUP
if(!YTValid) return handleWrongLink();
fetch(`${window.location.origin}/api/addFeed`,
{
method: "POST",
@ -530,7 +530,11 @@ async function _updateFeed(element)
})
.catch(console.error);
}
function handleWrongLink()
{
window.alert('Youtube channel not found, verify the link.')
return document.getElementById('YTchannelID').style = "border: 2px solid red"
}
async function channelCheck(yt)
{
@ -552,5 +556,5 @@ async function channelCheck(yt)
{
return error;
});
return res=='true'?true:false;
return res
}

@ -22,7 +22,7 @@ module.exports = (io, bot)=>
router.route('/dashboard').get(dash.get(io))
.post(dash.post(io));
router.route('/getMessage').get(api.getMessage(bot));
router.route('/leagues').get(api.getTournamentPage);
//router.route('/leagues').get(api.getTournamentPage);
router.route('/dc').get(homeController.dc);
// This goes to electron
// router.route('/league/:league').get(api.getLeaguePage);

Loading…
Cancel
Save