Added option to download document from the context menu

This commit is contained in:
2019-03-05 17:43:19 -06:00
parent 95fe0c9516
commit 98c5c052de
3 changed files with 18 additions and 1 deletions

View File

@@ -544,6 +544,7 @@ class documentBuffer(feedBuffer):
added = False
m = menus.documentMenu(added)
widgetUtils.connect_event(m, widgetUtils.MENU, self.add_remove_document, menuitem=m.action)
widgetUtils.connect_event(m, widgetUtils.MENU, self.download, menuitem=m.download)
return m
def add_remove_document(self, *args, **kwargs):
@@ -560,6 +561,16 @@ class documentBuffer(feedBuffer):
result = self.session.vk.client.docs.add(owner_id=p["owner_id"], doc_id=p["id"])
output.speak(_("The document has been successfully added."))
def download(self, *args, **kwargs):
post = self.get_post()
filename = post["title"]
# If document does not end in .extension we must fix it so the file dialog will save it properly later.
if filename.endswith(post["ext"]) == False:
filename = filename+ "."+post["ext"]
filepath = self.tab.get_download_path(filename)
if filepath != None:
pub.sendMessage("download-file", url=post["url"], filename=filepath)
class documentCommunityBuffer(documentBuffer):
can_get_items = True