add #ignore tag

feature-unify_handlers
Tomáš Mládek 2018-02-05 12:38:33 +01:00 committed by Tomáš Mládek
parent 4b1144a757
commit eb53df610e
1 changed files with 9 additions and 0 deletions

View File

@ -105,6 +105,10 @@ def handle_url(bot, update):
logger.info("Downloading %s" % ytdl_urls)
hashtag = get_first_hashtag(update.message)
if hashtag == 'IGNORE':
update.message.reply_text('Ignoring...')
return
reply = 'Downloading'
if hashtag:
mkdir_p(f'{OUT_DIR}/{hashtag}')
@ -141,12 +145,17 @@ def handle_rest(bot, update):
url = bot.getFile(file).file_path
logger.info("Downloading %s" % url)
hashtag = get_first_hashtag(update.message)
if hashtag == 'IGNORE':
update.message.reply_text('Ignoring...')
return
reply = 'Downloading'
if hashtag:
mkdir_p(f'{OUT_DIR}/{hashtag}')
reply += f' to "{hashtag}"'
reply += '...'
update.message.reply_text(reply)
if hashtag:
mkdir_p(f'{OUT_DIR}/{hashtag}')
download_raw(url, filename, hashtag or '.', update.message.date)