Add /feeds/videos.xml

This commit is contained in:
Omar Roth 2019-03-29 15:50:18 -05:00
parent 0ae43e242f
commit 36c0eae7ed
1 changed files with 10 additions and 0 deletions

View File

@ -2315,6 +2315,16 @@ get "/feed/playlist/:plid" do |env|
document
end
get "/feeds/videos.xml" do |env|
if ucid = env.params.query["channel_id"]?
env.redirect "/feed/channel/#{ucid}"
elsif user = env.params.query["user"]?
env.redirect "/feed/channel/#{user}"
elsif plid = env.params.query["playlist_id"]?
env.redirect "/feed/playlist/#{plid}"
end
end
# Support push notifications via PubSubHubbub
get "/feed/webhook/:token" do |env|