372 lines
14 KiB
Python
372 lines
14 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
import time
|
|
import curses
|
|
|
|
from . import docs
|
|
from .content import SubmissionContent, SubredditContent
|
|
from .page import Page, PageController, logged_in
|
|
from .objects import Navigator, Command
|
|
from .exceptions import TemporaryFileError
|
|
|
|
|
|
class SubmissionController(PageController):
|
|
character_map = {}
|
|
|
|
|
|
class SubmissionPage(Page):
|
|
|
|
FOOTER = docs.FOOTER_SUBMISSION
|
|
|
|
def __init__(self, reddit, term, config, oauth, url=None, submission=None):
|
|
super(SubmissionPage, self).__init__(reddit, term, config, oauth)
|
|
|
|
self.controller = SubmissionController(self, keymap=config.keymap)
|
|
|
|
if url:
|
|
self.content = SubmissionContent.from_url(
|
|
reddit, url, term.loader,
|
|
max_comment_cols=config['max_comment_cols'])
|
|
else:
|
|
self.content = SubmissionContent(
|
|
submission, term.loader,
|
|
max_comment_cols=config['max_comment_cols'])
|
|
# Start at the submission post, which is indexed as -1
|
|
self.nav = Navigator(self.content.get, page_index=-1)
|
|
self.selected_subreddit = None
|
|
|
|
@SubmissionController.register(Command('SUBMISSION_TOGGLE_COMMENT'))
|
|
def toggle_comment(self):
|
|
"""
|
|
Toggle the selected comment tree between visible and hidden
|
|
"""
|
|
|
|
current_index = self.nav.absolute_index
|
|
self.content.toggle(current_index)
|
|
|
|
# This logic handles a display edge case after a comment toggle. We
|
|
# want to make sure that when we re-draw the page, the cursor stays at
|
|
# its current absolute position on the screen. In order to do this,
|
|
# apply a fixed offset if, while inverted, we either try to hide the
|
|
# bottom comment or toggle any of the middle comments.
|
|
if self.nav.inverted:
|
|
data = self.content.get(current_index)
|
|
if data['hidden'] or self.nav.cursor_index != 0:
|
|
window = self._subwindows[-1][0]
|
|
n_rows, _ = window.getmaxyx()
|
|
self.nav.flip(len(self._subwindows) - 1)
|
|
self.nav.top_item_height = n_rows
|
|
|
|
@SubmissionController.register(Command('SUBMISSION_EXIT'))
|
|
def exit_submission(self):
|
|
"""
|
|
Close the submission and return to the subreddit page
|
|
"""
|
|
|
|
self.active = False
|
|
|
|
@SubmissionController.register(Command('REFRESH'))
|
|
def refresh_content(self, order=None, name=None):
|
|
"""
|
|
Re-download comments and reset the page index
|
|
"""
|
|
|
|
order = order or self.content.order
|
|
url = name or self.content.name
|
|
|
|
with self.term.loader('Refreshing page'):
|
|
self.content = SubmissionContent.from_url(
|
|
self.reddit, url, self.term.loader, order=order,
|
|
max_comment_cols=self.config['max_comment_cols'])
|
|
if not self.term.loader.exception:
|
|
self.nav = Navigator(self.content.get, page_index=-1)
|
|
|
|
@SubmissionController.register(Command('PROMPT'))
|
|
def prompt_subreddit(self):
|
|
"""
|
|
Open a prompt to navigate to a different subreddit
|
|
"""
|
|
|
|
name = self.term.prompt_input('Enter page: /')
|
|
if name is not None:
|
|
with self.term.loader('Loading page'):
|
|
content = SubredditContent.from_name(
|
|
self.reddit, name, self.term.loader)
|
|
if not self.term.loader.exception:
|
|
self.selected_subreddit = content
|
|
self.active = False
|
|
|
|
@SubmissionController.register(Command('SUBMISSION_OPEN_IN_BROWSER'))
|
|
def open_link(self):
|
|
"""
|
|
Open the selected item with the web browser
|
|
"""
|
|
|
|
data = self.get_selected_item()
|
|
if data['type'] == 'Submission':
|
|
self.term.open_link(data['url_full'])
|
|
self.config.history.add(data['url_full'])
|
|
elif data['type'] == 'Comment' and data['permalink']:
|
|
self.term.open_browser(data['permalink'])
|
|
else:
|
|
self.term.flash()
|
|
|
|
@SubmissionController.register(Command('SUBMISSION_OPEN_IN_PAGER'))
|
|
def open_pager(self):
|
|
"""
|
|
Open the selected item with the system's pager
|
|
"""
|
|
|
|
data = self.get_selected_item()
|
|
if data['type'] == 'Submission':
|
|
text = '\n\n'.join((data['permalink'], data['text']))
|
|
self.term.open_pager(text)
|
|
elif data['type'] == 'Comment':
|
|
text = '\n\n'.join((data['permalink'], data['body']))
|
|
self.term.open_pager(text)
|
|
else:
|
|
self.term.flash()
|
|
|
|
@SubmissionController.register(Command('SUBMISSION_POST'))
|
|
@logged_in
|
|
def add_comment(self):
|
|
"""
|
|
Submit a reply to the selected item.
|
|
|
|
Selected item:
|
|
Submission - add a top level comment
|
|
Comment - add a comment reply
|
|
"""
|
|
|
|
data = self.get_selected_item()
|
|
if data['type'] == 'Submission':
|
|
body = data['text']
|
|
reply = data['object'].add_comment
|
|
elif data['type'] == 'Comment':
|
|
body = data['body']
|
|
reply = data['object'].reply
|
|
else:
|
|
self.term.flash()
|
|
return
|
|
|
|
# Construct the text that will be displayed in the editor file.
|
|
# The post body will be commented out and added for reference
|
|
lines = ['# |' + line for line in body.split('\n')]
|
|
content = '\n'.join(lines)
|
|
comment_info = docs.COMMENT_FILE.format(
|
|
author=data['author'],
|
|
type=data['type'].lower(),
|
|
content=content)
|
|
|
|
with self.term.open_editor(comment_info) as comment:
|
|
if not comment:
|
|
self.term.show_notification('Canceled')
|
|
return
|
|
|
|
with self.term.loader('Posting', delay=0):
|
|
reply(comment)
|
|
# Give reddit time to process the submission
|
|
time.sleep(2.0)
|
|
|
|
if self.term.loader.exception is None:
|
|
self.refresh_content()
|
|
else:
|
|
raise TemporaryFileError()
|
|
|
|
@SubmissionController.register(Command('DELETE'))
|
|
@logged_in
|
|
def delete_comment(self):
|
|
"""
|
|
Delete the selected comment
|
|
"""
|
|
|
|
if self.get_selected_item()['type'] == 'Comment':
|
|
self.delete_item()
|
|
else:
|
|
self.term.flash()
|
|
|
|
@SubmissionController.register(Command('SUBMISSION_OPEN_IN_URLVIEWER'))
|
|
def comment_urlview(self):
|
|
"""
|
|
Open the selected comment with the URL viewer
|
|
"""
|
|
|
|
data = self.get_selected_item()
|
|
comment = data.get('body') or data.get('text') or data.get('url_full')
|
|
if comment:
|
|
self.term.open_urlview(comment)
|
|
else:
|
|
self.term.flash()
|
|
|
|
def _draw_item(self, win, data, inverted, highlight):
|
|
|
|
if data['type'] in ('MoreComments', 'HiddenComment'):
|
|
self._draw_more_comments(win, data, highlight)
|
|
elif data['type'] == 'Comment':
|
|
self._draw_comment(win, data, inverted, highlight)
|
|
else:
|
|
self._draw_submission(win, data, highlight)
|
|
|
|
def _draw_comment(self, win, data, inverted, highlight):
|
|
|
|
n_rows, n_cols = win.getmaxyx()
|
|
n_cols -= 1
|
|
|
|
# Handle the case where the window is not large enough to fit the text.
|
|
valid_rows = range(0, n_rows)
|
|
offset = 0 if not inverted else -(data['n_rows'] - n_rows)
|
|
|
|
# If there isn't enough space to fit the comment body on the screen,
|
|
# replace the last line with a notification.
|
|
split_body = data['split_body']
|
|
if data['n_rows'] > n_rows:
|
|
# Only when there is a single comment on the page and not inverted
|
|
if not inverted and len(self._subwindows) == 0:
|
|
cutoff = data['n_rows'] - n_rows + 1
|
|
split_body = split_body[:-cutoff]
|
|
split_body.append('(Not enough space to display)')
|
|
|
|
row = offset
|
|
if row in valid_rows:
|
|
if data['is_author']:
|
|
attr = self.term.attr('comment_author_self', highlight)
|
|
else:
|
|
attr = self.term.attr('comment_author', highlight)
|
|
self.term.add_line(win, '{author}'.format(**data), row, 1, attr)
|
|
|
|
if data['flair']:
|
|
attr = self.term.attr('user_flair', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '{flair}'.format(**data), attr=attr)
|
|
|
|
arrow, attr = self.term.get_arrow(data['likes'], highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, arrow, attr=attr)
|
|
|
|
attr = self.term.attr('score', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '{score}'.format(**data), attr=attr)
|
|
|
|
attr = self.term.attr('created', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '{created}'.format(**data), attr=attr)
|
|
|
|
if data['gold']:
|
|
attr = self.term.attr('gold', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, self.term.guilded, attr=attr)
|
|
|
|
if data['stickied']:
|
|
attr = self.term.attr('stickied', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '[stickied]', attr=attr)
|
|
|
|
if data['saved']:
|
|
attr = self.term.attr('saved', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '[saved]', attr=attr)
|
|
|
|
for row, text in enumerate(split_body, start=offset+1):
|
|
attr = self.term.attr('comment_text', highlight)
|
|
if row in valid_rows:
|
|
self.term.add_line(win, text, row, 1, attr=attr)
|
|
|
|
# Unfortunately vline() doesn't support custom color so we have to
|
|
# build it one segment at a time.
|
|
index = data['level'] % len(self.term.theme.BAR_LEVELS)
|
|
attr = self.term.attr(self.term.theme.BAR_LEVELS[index], highlight)
|
|
for y in range(n_rows):
|
|
self.term.addch(win, y, 0, self.term.vline, attr)
|
|
|
|
def _draw_more_comments(self, win, data, highlight):
|
|
|
|
n_rows, n_cols = win.getmaxyx()
|
|
n_cols -= 1
|
|
|
|
attr = self.term.attr('hidden_comment_text', highlight)
|
|
self.term.add_line(win, '{body}'.format(**data), 0, 1, attr=attr)
|
|
|
|
attr = self.term.attr('hidden_comment_expand', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '[{count}]'.format(**data), attr=attr)
|
|
|
|
index = data['level'] % len(self.term.theme.BAR_LEVELS)
|
|
attr = self.term.attr(self.term.theme.BAR_LEVELS[index], highlight)
|
|
self.term.addch(win, 0, 0, self.term.vline, attr)
|
|
|
|
def _draw_submission(self, win, data, highlight):
|
|
|
|
n_rows, n_cols = win.getmaxyx()
|
|
n_cols -= 3 # one for each side of the border + one for offset
|
|
|
|
attr = self.term.attr('submission_title', highlight)
|
|
for row, text in enumerate(data['split_title'], start=1):
|
|
self.term.add_line(win, text, row, 1, attr)
|
|
|
|
row = len(data['split_title']) + 1
|
|
attr = self.term.attr('submission_author', highlight)
|
|
self.term.add_line(win, '{author}'.format(**data), row, 1, attr)
|
|
|
|
if data['flair']:
|
|
attr = self.term.attr('submission_flair', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '{flair}'.format(**data), attr=attr)
|
|
|
|
attr = self.term.attr('created', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '{created}'.format(**data), attr=attr)
|
|
|
|
attr = self.term.attr('submission_subreddit', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '/r/{subreddit}'.format(**data), attr=attr)
|
|
|
|
row = len(data['split_title']) + 2
|
|
if data['url_full'] in self.config.history:
|
|
attr = self.term.attr('url_seen', highlight)
|
|
else:
|
|
attr = self.term.attr('url', highlight)
|
|
self.term.add_line(win, '{url}'.format(**data), row, 1, attr)
|
|
|
|
offset = len(data['split_title']) + 3
|
|
|
|
# Cut off text if there is not enough room to display the whole post
|
|
split_text = data['split_text']
|
|
if data['n_rows'] > n_rows:
|
|
cutoff = data['n_rows'] - n_rows + 1
|
|
split_text = split_text[:-cutoff]
|
|
split_text.append('(Not enough space to display)')
|
|
|
|
attr = self.term.attr('submission_text', highlight)
|
|
for row, text in enumerate(split_text, start=offset):
|
|
self.term.add_line(win, text, row, 1, attr=attr)
|
|
|
|
row = len(data['split_title']) + len(split_text) + 3
|
|
attr = self.term.attr('score', highlight)
|
|
self.term.add_line(win, '{score}'.format(**data), row, 1, attr=attr)
|
|
|
|
arrow, attr = self.term.get_arrow(data['likes'], highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, arrow, attr=attr)
|
|
|
|
attr = self.term.attr('comment_count', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '{comments}'.format(**data), attr=attr)
|
|
|
|
if data['gold']:
|
|
attr = self.term.attr('gold', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, self.term.guilded, attr=attr)
|
|
|
|
if data['nsfw']:
|
|
attr = self.term.attr('nsfw', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, 'NSFW', attr=attr)
|
|
|
|
if data['saved']:
|
|
attr = self.term.attr('saved', highlight)
|
|
self.term.add_space(win)
|
|
self.term.add_line(win, '[saved]', attr=attr)
|
|
|
|
win.border()
|