From 98777ee82561ae205f156a7f8497728aecfa080c Mon Sep 17 00:00:00 2001 From: James Taylor Date: Wed, 18 Dec 2019 19:39:16 -0800 Subject: Extraction: Rewrite item_extraction for better error handling and readability, rename extracted names for more consistency --- youtube/templates/comments.html | 4 +- youtube/templates/common_elements.html | 78 ++++++++++++++++++---------------- youtube/templates/playlist.html | 5 ++- youtube/templates/watch.html | 6 +-- 4 files changed, 49 insertions(+), 44 deletions(-) (limited to 'youtube/templates') diff --git a/youtube/templates/comments.html b/youtube/templates/comments.html index 20cde4e..396852a 100644 --- a/youtube/templates/comments.html +++ b/youtube/templates/comments.html @@ -12,11 +12,11 @@ {{ comment['author'] }} {{ common_elements.text_runs(comment['text']) }} - {{ comment['likes_text'] if comment['likes'] else ''}} + {{ comment['likes_text'] if comment['like_count'] else ''}}
{{ comment['view_replies_text'] }} {% if 'delete_url' is in comment %} diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index 1a417ae..4c776b6 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -9,55 +9,59 @@ {{ text_run["text"] }} {%- endif -%} {%- endfor -%} - {%- else -%} + {%- elif runs -%} {{ runs }} {%- endif -%} {% endmacro %} {% macro item(info, description=false, horizontal=true, include_author=true, include_badges=true) %}
-
- - - {% if info['type'] != 'channel' %} -
- {{ info['size'] if info['type'] == 'playlist' else info['duration'] }} -
- {% endif %} -
+ {% if info['error'] %} + {{ info['error'] }} + {% else %} +
+ + + {% if info['type'] != 'channel' %} +
+ {{ (info['video_count']|string + ' videos') if info['type'] == 'playlist' else info['duration'] }} +
+ {% endif %} +
- + -
    - {% if info['type'] == 'channel' %} -
  • {{ info['subscriber_count'] }} subscribers
  • -
  • {{ info['size'] }} videos
  • - {% else %} - {% if include_author %} - {% if 'author_url' is in(info) %} -
  • By {{ info['author'] }}
  • - {% else %} -
  • {{ info['author'] }}
  • +
      + {% if info['type'] == 'channel' %} +
    • {{ info['approx_subscriber_count'] }} subscribers
    • +
    • {{ info['video_count'] }} videos
    • + {% else %} + {% if include_author %} + {% if info.get('author_url') %} +
    • By {{ info['author'] }}
    • + {% else %} +
    • {{ info['author'] }}
    • + {% endif %} + {% endif %} + {% if info.get('approx_view_count') %} +
    • {{ info['approx_view_count'] }} views
    • + {% endif %} + {% if info.get('time_published') %} +
    • {% endif %} {% endif %} - {% if 'views' is in(info) %} -
    • {{ info['views'] }}
    • - {% endif %} - {% if 'published' is in(info) %} -
    • - {% endif %} - {% endif %} -
    +
- {% if description %} - {{ text_runs(info.get('description', '')) }} - {% endif %} - {% if include_badges %} - {{ info['badges']|join(' | ') }} + {% if description %} + {{ text_runs(info.get('description', '')) }} + {% endif %} + {% if include_badges %} + {{ info['badges']|join(' | ') }} + {% endif %} +
+ {% if info['type'] == 'video' %} + {% endif %} -
- {% if info['type'] == 'video' %} - {% endif %}
diff --git a/youtube/templates/playlist.html b/youtube/templates/playlist.html index 52c468e..ebd152b 100644 --- a/youtube/templates/playlist.html +++ b/youtube/templates/playlist.html @@ -54,8 +54,9 @@

{{ title }}

{{ author }}
-
{{ views }}
-
{{ size }} videos
+
{{ video_count|commatize }} videos
+
{{ view_count|commatize }} views
+
Last updated {{ time_published }}
{{ common_elements.text_runs(description) }}
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index 0ffa358..5bd2a25 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -261,11 +261,11 @@ {%- endif -%}
Uploaded by {{ uploader }}
- {{ views }} views + {{ view_count }} views - - {{ likes }} likes {{ dislikes }} dislikes + + {{ like_count }} likes {{ dislike_count }} dislikes
Download