From ca34679cf8e18cf6525ca2e54f15feb1cd1c387a Mon Sep 17 00:00:00 2001 From: freearhey Date: Thu, 8 Aug 2019 03:29:36 +0300 Subject: [PATCH] Update util.js - added blacklist - added validateUrl() function --- helpers/util.js | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/helpers/util.js b/helpers/util.js index 48f98fc351..c335692995 100644 --- a/helpers/util.js +++ b/helpers/util.js @@ -6,6 +6,14 @@ const zlib = require("zlib") const DOMParser = require('xmldom').DOMParser const urlParser = require('url') +const supportedGroups = [ 'Auto','Business', 'CCTV', 'Classic','Comedy','Documentary','Education','Entertainment', 'Family','Fashion','Food', 'General', 'Health', 'History', 'Hobby', 'Kids', 'Legislative','Lifestyle','Local', 'Movies', 'Music', 'News', 'Quiz','Radio', 'Religious','Sci-Fi', 'Shop', 'Sport', 'Travel', 'Weather', 'XXX' ] + +const blacklist = [ + '80.80.160.168', // repeats on a loop + '63.237.48.3', // not a live stream + '189.216.247.113', // not working streams +] + let cache = {} class Playlist { @@ -36,7 +44,6 @@ class Channel { } _getGroup(groupTitle) { - const supportedGroups = [ 'Auto','Business', 'CCTV', 'Classic','Comedy','Documentary','Education','Entertainment', 'Family','Fashion','Food', 'General', 'Health', 'History', 'Hobby', 'Kids', 'Legislative','Lifestyle','Local', 'Movies', 'Music', 'News', 'Quiz','Radio', 'Religious','Sci-Fi', 'Shop', 'Sport', 'Travel', 'Weather', 'XXX' ] const groupIndex = supportedGroups.map(g => g.toLowerCase()).indexOf(groupTitle.toLowerCase()) if(groupIndex === -1) { @@ -197,6 +204,12 @@ function getUrlPath(u) { return parsed.host + parsed.pathname + searchQuery } +function validateUrl(channelUrl) { + const url = new URL(channelUrl) + const host = url.hostname + + return blacklist.indexOf(host) === -1 +} module.exports = { parsePlaylist, @@ -209,5 +222,6 @@ module.exports = { getBasename, addToCache, checkCache, - clearCache + clearCache, + validateUrl } \ No newline at end of file