diff options
author | Mark Powers <mark@marks.kitchen> | 2022-12-29 14:03:57 -0600 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2022-12-29 14:03:57 -0600 |
commit | b5c10718ddeaa8fcac368515ca150705b1a2c5ab (patch) | |
tree | 473c6b8197774ed3a29df73821c404381535ccbc /bridges/youtube.js | |
parent | ff9f53e5673d742d155881a2a29f31ba312dce9c (diff) |
Refactor scripts, add table preview
Diffstat (limited to 'bridges/youtube.js')
-rw-r--r-- | bridges/youtube.js | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/bridges/youtube.js b/bridges/youtube.js deleted file mode 100644 index 202873b..0000000 --- a/bridges/youtube.js +++ /dev/null @@ -1,63 +0,0 @@ -function get_native_playlist_feed(playlistId){ - return `https://www.youtube.com/feeds/videos.xml?playlist_id=${playlistId}` -} - -function get_native_channel_feed(channelId){ - return `https://www.youtube.com/feeds/videos.xml?channel_id=${channelId}` -} - -async function get_youtube() { - let url = window.location.href; - - let patternVideo = /youtube.com\/watch\?v=[A-z0-9-_]+/ - let matchVideo = url.match(patternVideo) - - let patternUser = /youtube.com\/user\/[A-z0-9-_]+.*/ - let matchUser = url.match(patternUser) - - let patternChannel = /youtube.com\/channel\/[A-z0-9-_]+.*/ - let matchChannel = url.match(patternChannel) - - let patternPlaylist = /youtube.com\/playlist\?list=[A-z0-9-_]+.*/ - let matchPlaylist = url.match(patternPlaylist) - - if (matchVideo) { - let channel_url = document.querySelector("[role='main'] #channel-name a")["href"] - let matchChannel2 = channel_url.match(patternChannel) - let channelId = matchChannel2[1] - let feed_url = `${base_url}/?action=display&bridge=Youtube&context=By+channel+id&c=${channelId}&duration_min=&duration_max=&format=` - let native_url = get_native_channel_feed(channelId) - let feeds = get_all_types(feed_url, "channel").concat([{ type: `native (channel): Rss`, url: native_url }]) - - let patternListInVideo = /youtube.com\/watch\?v=\w+\&list=(\w+)/ - let matchListInVideo = url.match(patternListInVideo) - if(matchListInVideo){ - let playlistId = matchListInVideo[1] - let playlist_feed_url = `${base_url}/?action=display&bridge=Youtube&context=By+playlist+Id&p=${playlistId}&duration_min=&duration_max=&format=` - let native_url = get_native_playlist_feed(playlistId) - let rb_feeds = get_all_types(playlist_feed_url, "playlist") - feeds = feeds.concat(rb_feeds.concat([{ type: `native (playlist): Rss`, url: native_url }])) - } - - return feeds - } - if (matchUser) { - let user = matchUser[1]; - let feed_url = `${base_url}/?action=display&bridge=Youtube&context=By+username&u=${user}&duration_min=&duration_max=&format=` - return get_all_types(feed_url) - } - if (matchChannel) { - let channelId = matchChannel[1] - let feed_url = `${base_url}/?action=display&bridge=Youtube&context=By+channel+id&c=${channelId}&duration_min=&duration_max=&format=` - return get_all_types(feed_url) - } - if (matchPlaylist) { - let playlistId = matchPlaylist[1] - let native_url = get_native_playlist_feed(playlistId) - let feed_url = `${base_url}/?action=display&bridge=Youtube&context=By+playlist+Id&p=${playlistId}&duration_min=&duration_max=&format=` - let rb_feeds = get_all_types(feed_url) - return rb_feeds.concat([{ type: `native: Rss`, url: native_url }]) - } - return [] -} - |