diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-07-31 17:03:47 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-07-31 17:03:47 -0700 |
commit | 1dc2cb0ab6025af4d5e4c705eb0134108c53c024 (patch) | |
tree | 225ac6c05e67e60b78c8a3a700e05a0376f3f87a /youtube | |
parent | dcc3183411e3173c570ceab0b7a5d9534b3b284b (diff) | |
download | yt-local-1dc2cb0ab6025af4d5e4c705eb0134108c53c024.tar.lz yt-local-1dc2cb0ab6025af4d5e4c705eb0134108c53c024.tar.xz yt-local-1dc2cb0ab6025af4d5e4c705eb0134108c53c024.zip |
Return blank page for searching when visiting just localhost/youtube.com
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/search.py | 10 | ||||
-rw-r--r-- | youtube/youtube.py | 3 |
2 files changed, 9 insertions, 4 deletions
diff --git a/youtube/search.py b/youtube/search.py index 406dc82..8bb3aff 100644 --- a/youtube/search.py +++ b/youtube/search.py @@ -9,9 +9,6 @@ from youtube import common, proto with open("yt_search_results_template.html", "r") as file: yt_search_results_template = file.read() - -with open("yt_search_template.html", "r") as file: - yt_search_template = file.read() page_button_template = Template('''<a class="page-button" href="$href">$page</a>''') current_page_button_template = Template('''<div class="page-button">$page</div>''') @@ -83,7 +80,12 @@ did_you_mean = Template(''' def get_search_page(query_string, parameters=()): qs_query = urllib.parse.parse_qs(query_string) if len(qs_query) == 0: - return yt_search_template + return common.yt_basic_template.substitute( + page_title = "Search", + header = common.get_header(), + style = '', + page = '', + ) query = qs_query["query"][0] page = qs_query.get("page", "1")[0] autocorrect = int(qs_query.get("autocorrect", "1")[0]) diff --git a/youtube/youtube.py b/youtube/youtube.py index 93b947f..03956b6 100644 --- a/youtube/youtube.py +++ b/youtube/youtube.py @@ -15,6 +15,9 @@ def youtube(env, start_response): mime_type = mimetypes.guess_type(path)[0] or 'application/octet-stream' start_response('200 OK', (('Content-type',mime_type),) ) return f.read() + elif path.lstrip('/') == "": + start_response('200 OK', (('Content-type','text/html'),) ) + return search.get_search_page(query_string).encode() elif path == "/comments": start_response('200 OK', (('Content-type','text/html'),) ) |