aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/youtube.py
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2018-12-20 01:25:36 -0800
committerJames Taylor <user234683@users.noreply.github.com>2018-12-20 01:25:36 -0800
commitcbdc404703f5895d04e6d6af4241921b2a7bc39c (patch)
treefcd6d131d9b45b11582167b76fb44f41f07c8415 /youtube/youtube.py
parenta8d74ba082404bac016b210d151fb2d46cbd54d9 (diff)
downloadyt-local-cbdc404703f5895d04e6d6af4241921b2a7bc39c.tar.lz
yt-local-cbdc404703f5895d04e6d6af4241921b2a7bc39c.tar.xz
yt-local-cbdc404703f5895d04e6d6af4241921b2a7bc39c.zip
Correctly handle case where video ID is too short
Diffstat (limited to 'youtube/youtube.py')
-rw-r--r--youtube/youtube.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube/youtube.py b/youtube/youtube.py
index cb35eac..eb319e1 100644
--- a/youtube/youtube.py
+++ b/youtube/youtube.py
@@ -26,6 +26,10 @@ def youtube(env, start_response):
return comments.get_comments_page(query_string).encode()
elif path == "/watch":
+ video_id = urllib.parse.parse_qs(query_string)['v'][0]
+ if len(video_id) < 11:
+ start_response('404 Not Found', ())
+ return b'Incomplete video id (too short): ' + video_id.encode('ascii')
start_response('200 OK', (('Content-type','text/html'),) )
return watch.get_watch_page(query_string).encode()