From 3cc146a66fcd3125cfb7305506307b6cef1e0dc6 Mon Sep 17 00:00:00 2001 From: Holger Huo Date: Sun, 27 Mar 2022 11:03:05 +0800 Subject: [PATCH] change: better log output --- run.py | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/run.py b/run.py index 4dd11ff..1dd6c64 100644 --- a/run.py +++ b/run.py @@ -28,6 +28,7 @@ if 'threads' in config['general']: bot.worker_pool = util.ThreadPool(num_threads=config['general']['threads']) + # Handle '/start' and '/help' command @bot.message_handler(commands=['help', 'start']) def send_welcome(message): @@ -42,18 +43,31 @@ def send_welcome(message): def handle_netease(message): keyword = message.text[2:] reply = bot.reply_to(message, text='正在搜索'+ keyword+"...", parse_mode='HTML') - song = netease.get_song_info(keyword.replace(" ", "+")) + try: + song = netease.get_song_info(keyword.replace(" ", "+")) + except Exception as e: + bot.edit_message_text(chat_id=message.chat.id, message_id=reply.id, text='搜索\n'+keyword+'\n失败!请重试!', parse_mode='HTML') + logger.warning(keyword+" search cannot be performed!") + logger.debug(e) + else: # Return copyright content error - if not song: - bot.edit_message_text(chat_id=message.chat.id, message_id=reply.id, text=''+keyword+'\n无法被找到或没有版权', parse_mode='HTML') - logger.warning(keyword+" is not found!") - else: # Send Music - bot.edit_message_text(chat_id=message.chat.id, message_id=reply.id, text="正在缓存\n「"+song.name+"」\nby "+song.artist, parse_mode='HTML') - location = netease.cache_song(song.id, song.url, song.format, song.name, song.artist, song.album) - with open(location, 'rb') as music: - bot.edit_message_text(chat_id=message.chat.id, message_id=reply.id, text="正在发送\n「"+song.name+"」\nby "+song.artist, parse_mode='HTML') - bot.send_chat_action(message.chat.id, "upload_audio") - bot.send_audio(chat_id=message.chat.id, reply_to_message_id=message.message_id, audio=music, caption="「"+song.name+"」\nby "+song.artist, parse_mode='HTML') - bot.delete_message(chat_id=message.chat.id, message_id=reply.id) + if not song: + bot.edit_message_text(chat_id=message.chat.id, message_id=reply.id, text=''+keyword+'\n无法被找到或没有版权', parse_mode='HTML') + logger.warning(keyword+" is not found!") + else: # Send Music + bot.edit_message_text(chat_id=message.chat.id, message_id=reply.id, text="正在缓存\n「"+song.name+"」\nby "+song.artist, parse_mode='HTML') + try: + location = netease.cache_song(song.id, song.url, song.format, song.name, song.artist, song.album) + except Exception as e: + bot.edit_message_text(chat_id=message.chat.id, message_id=reply.id, text="「"+song.name+"」\n缓存失败!请重试", parse_mode='HTML') + logger.warning(song.name+" - "+song.artist+" could not be cached!") + logger.debug(e) + else: + bot.edit_message_text(chat_id=message.chat.id, message_id=reply.id, text="正在发送\n「"+song.name+"」\nby "+song.artist, parse_mode='HTML') + with open(location, 'rb') as music: + bot.send_chat_action(message.chat.id, "upload_audio") + bot.send_audio(chat_id=message.chat.id, reply_to_message_id=message.message_id, audio=music, caption="「"+song.name+"」\nby "+song.artist, parse_mode='HTML') + bot.delete_message(chat_id=message.chat.id, message_id=reply.id) + logger.warning(song.name+' - '+song.artist+" has been sent to "+str(message.chat.id)) bot.infinity_polling() \ No newline at end of file