diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-08-31 23:10:22 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-08-31 23:10:22 -0700 |
commit | 6146c5293bc44edd3a5797275874b58cd019a4fc (patch) | |
tree | 67164c92ef45836ef4b657fb8a4fdb723ae80f46 /youtube | |
parent | a9ea97ad395cd37a97762550d5f4f2573b4759c6 (diff) | |
download | yt-local-6146c5293bc44edd3a5797275874b58cd019a4fc.tar.lz yt-local-6146c5293bc44edd3a5797275874b58cd019a4fc.tar.xz yt-local-6146c5293bc44edd3a5797275874b58cd019a4fc.zip |
Return comments by newest after posting top-level comment
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/account_functions.py | 9 | ||||
-rw-r--r-- | youtube/comments.css | 9 | ||||
-rw-r--r-- | youtube/comments.py | 12 |
3 files changed, 17 insertions, 13 deletions
diff --git a/youtube/account_functions.py b/youtube/account_functions.py index 9dd3d10..b3c9541 100644 --- a/youtube/account_functions.py +++ b/youtube/account_functions.py @@ -93,12 +93,7 @@ def post_comment(query_string, fields): return comments.get_comments_page(query_string) else: _post_comment(fields['comment_text'][0], fields['video_id'][0], token, cookie_data) - return common.yt_basic_template.substitute( - page_title = "Success", - style = '', - header = common.get_header(), - page = 'Comment sucessfully posted', - ) + return comments.get_comments_page('ctoken=' + comments.make_comment_ctoken(video_id, sort=1)) def get_post_comment_page(query_string): @@ -120,7 +115,7 @@ textarea{ grid-column:2; }''' page = '''<div class="left"> - <form action="" method="post" class="comment-form"> + <form action="''' + common.URL_ORIGIN + '/comments?ctoken=' + comments.make_comment_ctoken(video_id, sort=1).replace("=", "%3D") + '''" method="post" class="comment-form"> <textarea name="comment_text"></textarea> <input type="hidden" name="video_id" value="''' + video_id + '''"> <button type="submit">Post comment</button> diff --git a/youtube/comments.css b/youtube/comments.css index 599f569..ed1721f 100644 --- a/youtube/comments.css +++ b/youtube/comments.css @@ -1,10 +1,10 @@ .video-metadata{ display: grid; grid-template-columns: auto 1fr; - grid-template-rows: auto 1fr auto; + grid-template-rows: auto auto 1fr auto; } .video-metadata > .video-metadata-thumbnail-box{ - grid-row: 1 / span 2; + grid-row: 1 / span 3; } .video-metadata > .title{ word-wrap:break-word; @@ -14,8 +14,11 @@ grid-row: 2; font-size: 15px; } + .video-metadata > span{ + grid-row:3; + } .video-metadata > hr{ - grid-row: 3; + grid-row: 4; grid-column: 1 / span 2; width: 100%; } diff --git a/youtube/comments.py b/youtube/comments.py index a1f08bf..2913bde 100644 --- a/youtube/comments.py +++ b/youtube/comments.py @@ -80,9 +80,13 @@ def ctoken_metadata(ctoken): result['offset'] = offset_information.get(5, 0) result['is_replies'] = False - if 3 in offset_information: - if 2 in offset_information[3]: - result['is_replies'] = True + if (3 in offset_information) and (2 in offset_information[3]): + result['is_replies'] = True + else: + try: + result['sort'] = offset_information[4][6] + except KeyError: + result['sort'] = 0 return result def get_ids(ctoken): @@ -252,6 +256,7 @@ video_metadata_template = Template('''<section class="video-metadata"> <a class="title" href="$url" title="$title">$title</a> <h2>Comments page $page_number</h2> + <span>Sorted by $sort</span> <hr> </section> ''') @@ -282,6 +287,7 @@ def get_comments_page(query_string): video_metadata = video_metadata_template.substitute( page_number = page_number, + sort = 'top' if metadata['sort'] == 0 else 'newest', title = html.escape(parsed_comments['video_title']), url = common.URL_ORIGIN + '/watch?v=' + metadata['video_id'], thumbnail = '/i.ytimg.com/vi/'+ metadata['video_id'] + '/mqdefault.jpg', |