def report_setting(bot: Bot, update: Update, args: List[str]): chat = update.effective_chat # type: Optional[Chat] msg = update.effective_message # type: Optional[Message] if chat.type == chat.PRIVATE: if len(args) >= 1: if args[0] in ("yes", "on"): sql.set_user_setting(chat.id, True) msg.reply_text("Turned on reporting! You'll be notified whenever anyone reports something.") elif args[0] in ("no", "off"): sql.set_user_setting(chat.id, False) msg.reply_text("Turned off reporting! You wont get any reports.") else: msg.reply_text("Your current report preference is: `{}`".format(sql.user_should_report(chat.id)), parse_mode=ParseMode.MARKDOWN) else: if len(args) >= 1: if args[0] in ("yes", "on"): sql.set_chat_setting(chat.id, True) msg.reply_text("Turned on reporting! Admins who have turned on reports will be notified when /report " "or @admin are called.") elif args[0] in ("no", "off"): sql.set_chat_setting(chat.id, False) msg.reply_text("Turned off reporting! No admins will be notified on /report or @admin.") else: msg.reply_text("This chat's current setting is: `{}`".format(sql.chat_should_report(chat.id)), parse_mode=ParseMode.MARKDOWN)
def report_setting(bot: Bot, update: Update, args: List[str]): chat = update.effective_chat # type: Optional[Chat] msg = update.effective_message # type: Optional[Message] if chat.type == chat.PRIVATE: if len(args) >= 1: if args[0] in ("yes", "on"): sql.set_user_setting(chat.id, True) msg.reply_text(tld(chat.id, "reports_pm_on")) elif args[0] in ("no", "off"): sql.set_user_setting(chat.id, False) msg.reply_text(tld(chat.id, "reports_pm_off")) else: msg.reply_text(tld(chat.id, "reports_pm_pref").format( sql.user_should_report(chat.id)), parse_mode=ParseMode.MARKDOWN) else: if len(args) >= 1: if args[0] in ("yes", "on"): sql.set_chat_setting(chat.id, True) msg.reply_text(tld(chat.id, "reports_chat_on")) elif args[0] in ("no", "off"): sql.set_chat_setting(chat.id, False) msg.reply_text(tld(chat.id, "reports_chat_off")) else: msg.reply_text(tld(chat.id, "reports_chat_pref").format( sql.chat_should_report(chat.id)), parse_mode=ParseMode.MARKDOWN)
def import_data(bot: Bot, update): msg = update.effective_message # type: Optional[Message] chat = update.effective_chat # type: Optional[Chat] user = update.effective_user # type: Optional[User] # TODO: allow uploading doc with command, not just as reply # only work with a doc spam = spamfilters(update.effective_message.text, update.effective_message.from_user.id, update.effective_chat.id, update.effective_message) if spam == True: return conn = connected(bot, update, chat, user.id, need_admin=True) if conn: chat = dispatcher.bot.getChat(conn) chat_id = conn chat_name = dispatcher.bot.getChat(conn).title else: if update.effective_message.chat.type == "private": send_message(update.effective_message, tld(update.effective_message, "You can use this command in group and not in PM")) return "" chat = update.effective_chat chat_id = update.effective_chat.id chat_name = update.effective_message.chat.title if msg.reply_to_message and msg.reply_to_message.document: filetype = msg.reply_to_message.document.file_name if filetype.split('.')[-1] not in ("backup", "json", "txt"): send_message(update.effective_message, tld(update.effective_message, "Invalid backup file!")) return try: file_info = bot.get_file(msg.reply_to_message.document.file_id) except BadRequest: send_message(update.effective_message, tld(update.effective_message, "Try downloading and re-uploading the file as yourself before importing - this one seems broken!")) return with BytesIO() as file: file_info.download(out=file) file.seek(0) data = json.load(file) try: # If backup is from Emilia if data.get('bot_base') == "Kanna": imp_antiflood = False imp_blacklist = False imp_blacklist_count = 0 imp_disabled_count = 0 imp_filters_count = 0 imp_locks = False imp_notes = 0 imp_report = False imp_rules = False NOT_IMPORTED = "This cannot be imported because from other bot." NOT_IMPORTED_INT = 0 # If backup is from this bot, import all files if data.get('bot_id') == bot.id: is_self = True else: is_self = False # Import antiflood if data.get('antiflood'): imp_antiflood = True flood_limit = data['antiflood'].get('flood_limit') flood_mode = data['antiflood'].get('flood_mode') flood_duration = data['antiflood'].get('flood_duration') # Add to db antifloodsql.set_flood(chat_id, int(flood_limit)) antifloodsql.set_flood_strength(chat_id, flood_mode, flood_duration) # Import blacklist if data.get('blacklists'): imp_blacklist = True blacklist_mode = data['blacklists'].get('blacklist_mode') blacklist_duration = data['blacklists'].get('blacklist_duration') blacklisted = data['blacklists'].get('blacklists') # Add to db blacklistsql.set_blacklist_strength(chat_id, blacklist_mode, blacklist_duration) if blacklisted: for x in blacklisted: blacklistsql.add_to_blacklist(chat_id, x.lower()) imp_blacklist_count += 1 # Import blacklist sticker # Import disabled if data.get('disabled'): candisable = disabledsql.get_disableable() if data['disabled'].get('disabled'): for listdisabled in data['disabled'].get('disabled'): if listdisabled in candisable: disabledsql.disable_command(chat_id, listdisabled) imp_disabled_count += 1 # Import filters if data.get('filters'): NOT_IMPORTED += "\n\nFilters:\n" for x in data['filters'].get('filters'): # If from self, import all if is_self: is_sticker = False is_document = False is_image = False is_audio = False is_voice = False is_video = False has_markdown = False universal = False if x['type'] == 1: is_sticker = True elif x['type'] == 2: is_document = True elif x['type'] == 3: is_image = True elif x['type'] == 4: is_audio = True elif x['type'] == 5: is_voice = True elif x['type'] == 6: is_video = True elif x['type'] == 0: has_markdown = True note_data, buttons = button_markdown_parser(x['reply'], entities=0) filtersql.add_filter(chat_id, x['name'], note_data, is_sticker, is_document, is_image, is_audio, is_voice, is_video, buttons) imp_filters_count += 1 else: if x['has_markdown']: note_data, buttons = button_markdown_parser(x['reply'], entities=0) filtersql.add_filter(chat_id, x['name'], note_data, False, False, False, False, False, False, buttons) imp_filters_count += 1 else: NOT_IMPORTED += "- {}\n".format(x['name']) NOT_IMPORTED_INT += 1 # Import greetings # Import Locks if data.get('locks'): if data['locks'].get('lock_warn'): locksql.set_lockconf(chat_id, True) else: locksql.set_lockconf(chat_id, False) if data['locks'].get('locks'): for x in list(data['locks'].get('locks')): if x in LOCK_TYPES: is_locked = data['locks']['locks'].get('x') locksql.update_lock(chat_id, x, locked=is_locked) imp_locks = True if x in RESTRICTION_TYPES: is_locked = data['locks']['locks'].get('x') locksql.update_restriction(chat_id, x, locked=is_locked) imp_locks = True # Import notes if data.get('notes'): allnotes = data['notes'] NOT_IMPORTED += "\n\nNotes:\n" for x in allnotes: # If from self, import all if is_self: note_data, buttons = button_markdown_parser(x['note_data'], entities=0) note_name = x['note_tag'] note_file = None note_type = x['note_type'] if x['note_file']: note_file = x['note_file'] if note_type == 0: note_type = Types.TEXT elif note_type == 1: note_type = Types.BUTTON_TEXT elif note_type == 2: note_type = Types.STICKER elif note_type == 3: note_type = Types.DOCUMENT elif note_type == 4: note_type = Types.PHOTO elif note_type == 5: note_type = Types.AUDIO elif note_type == 6: note_type = Types.VOICE elif note_type == 7: note_type = Types.VIDEO elif note_type == 8: note_type = Types.VIDEO_NOTE else: note_type = None if note_type <= 8: notesql.add_note_to_db(chat_id, note_name, note_data, note_type, buttons, note_file) imp_notes += 1 else: # If this text if x['note_type'] == 0: note_data, buttons = button_markdown_parser(x['text'].replace("\\", ""), entities=0) note_name = x['name'] notesql.add_note_to_db(chat_id, note_name, note_data, Types.TEXT, buttons, None) imp_notes += 1 else: NOT_IMPORTED += "- {}\n".format(x['name']) NOT_IMPORTED_INT += 1 # Import reports if data.get('report'): reporting = data['report'].get('report') reportsql.set_chat_setting(chat_id, bool(reporting)) imp_report = True # Import rules if data.get('rules'): contrules = data['rules'].get('rules') if contrules: rulessql.set_rules(chat_id, contrules) imp_rules = True # Import warn config if conn: text = tld(update.effective_message, "The backup is fully restored at * {} *. Welcome back! 😀").format(chat_name) else: text = tld(update.effective_message, "The backup is fully restored. Congratulations welcome back! 😀").format(chat_name) text += tld(update.effective_message, "\n\nWhat I return:\n") if imp_antiflood: text += tld(update.effective_message, "- Settings Antiflood\n") if imp_blacklist: text += tld(update.effective_message, "- Settings Blacklist\n") if imp_blacklist_count: text += tld(update.effective_message, "- {} blacklists\n").format(imp_blacklist_count) if imp_disabled_count: text += tld(update.effective_message, "- {} cmd disabled\n").format(imp_disabled_count) if imp_filters_count: text += tld(update.effective_message, "- {} filters\n").format(imp_filters_count) if imp_locks: text += tld(update.effective_message, "- Lockup\n") if imp_notes: text += tld(update.effective_message, "- {} a note\n").format(imp_notes) if imp_report: text += tld(update.effective_message, "- Reporting arrangements\n") if imp_rules: text += tld(update.effective_message, "- Order regulations group\n") try: send_message(update.effective_message, text, parse_mode="markdown") except BadRequest: send_message(update.effective_message, text, parse_mode="markdown", quote=False) if NOT_IMPORTED_INT: f = open("{}-notimported.txt".format(chat_id), "w") f.write(str(NOT_IMPORTED)) f.close() bot.sendDocument(chat_id, document=open('{}-notimported.txt'.format(chat_id), 'rb'), caption=tl(update.effective_message, "*Data yang tidak dapat di import*"), timeout=360, parse_mode=ParseMode.MARKDOWN) os.remove("{}-notimported.txt".format(chat_id)) return except Exception as err: send_message(update.effective_message, tld(update.effective_message, "An error occured in importing backup.Report it in @LucySupportChat"), parse_mode="markdown") LOGGER.exception("An error when importing from Haruka base!") return try: # If backup is from rose # doing manual lol if data.get('bot_id') == 609517172: imp_antiflood = False imp_blacklist = False imp_blacklist_count = 0 imp_disabled_count = 0 imp_filters_count = 0 imp_notes = 0 imp_report = False imp_rules = False NOT_IMPORTED = "This cannot be imported because from other bot." NOT_IMPORTED_INT = 0 if data.get('data'): # Import antiflood if data['data'].get('antiflood'): floodlimit = data['data']['antiflood'].get('flood_limit') action = data['data']['antiflood'].get('action') actionduration = data['data']['antiflood'].get('action_duration') act_dur = make_time(int(actionduration)) antifloodsql.set_flood(chat_id, int(floodlimit)) if action == "ban": antifloodsql.set_flood_strength(chat_id, 1, str(act_dur)) imp_antiflood = True elif action == "kick": antifloodsql.set_flood_strength(chat_id, 2, str(act_dur)) imp_antiflood = True elif action == "mute": antifloodsql.set_flood_strength(chat_id, 3, str(act_dur)) imp_antiflood = True # Import blacklist if data['data'].get('blacklists'): action = data['data']['blacklists'].get('action') actionduration = data['data']['blacklists'].get('action_duration') act_dur = make_time(int(actionduration)) strengthdone = False if action == "del": strengthdone = True blacklistsql.set_blacklist_strength(chat_id, 1, str(act_dur)) imp_blacklist = True elif action == "warn": strengthdone = True blacklistsql.set_blacklist_strength(chat_id, 2, str(act_dur)) imp_blacklist = True elif action == "mute": strengthdone = True blacklistsql.set_blacklist_strength(chat_id, 3, str(act_dur)) imp_blacklist = True elif action == "kick": strengthdone = True blacklistsql.set_blacklist_strength(chat_id, 4, str(act_dur)) imp_blacklist = True elif action == "ban": strengthdone = True blacklistsql.set_blacklist_strength(chat_id, 5, str(act_dur)) imp_blacklist = True else: if not strengthdone: action = data['data']['blacklists'].get('should_delete') if action: blacklistsql.set_blacklist_strength(chat_id, 1, "0") imp_blacklist = True blacklisted = data['data']['blacklists'].get('filters') if blacklisted: for x in blacklisted: blacklistsql.add_to_blacklist(chat_id, x['name'].lower()) imp_blacklist_count += 1 # Import disabled if data['data'].get('disabled'): if data['data']['disabled'].get('disabled'): candisable = disabledsql.get_disableable() for listdisabled in data['data']['disabled'].get('disabled'): if listdisabled in candisable: disabledsql.disable_command(chat_id, listdisabled) imp_disabled_count += 1 # Import filters if data['data'].get('filters'): NOT_IMPORTED += "\n\nFilters:\n" if data['data']['filters'].get('filters'): for x in data['data']['filters'].get('filters'): if x['type'] == 0: note_data, buttons = button_markdown_parser(x['text'].replace("\\", ""), entities=0) filtersql.add_filter(chat_id, x['name'], note_data, False, False, False, False, False, False, buttons) imp_filters_count += 1 else: NOT_IMPORTED += "- {}\n".format(x['name']) NOT_IMPORTED_INT += 1 # Import greetings # Import notes if data['data'].get('notes'): NOT_IMPORTED += "\n\nNotes:\n" allnotes = data['data']['notes']['notes'] for x in allnotes: # If this text if x['type'] == 0: note_data, buttons = button_markdown_parser(x['text'].replace("\\", ""), entities=0) note_name = x['name'] notesql.add_note_to_db(chat_id, note_name, note_data, Types.TEXT, buttons, None) imp_notes += 1 else: NOT_IMPORTED += "- {}\n".format(x['name']) NOT_IMPORTED_INT += 1 # Import reports if data['data'].get('reports'): if data['data']['reports'].get('disable_reports'): reporting = False else: reporting = True reportsql.set_chat_setting(chat_id, reporting) imp_report = True # Import rules if data['data'].get('rules'): contrules = data['data']['rules'].get('content') if contrules: rulessql.set_rules(chat_id, contrules.replace("\\", "")) imp_rules = True # Import warn if conn: text = tld(update.effective_message, "Backup fully restored at *{}*. Congratulations welcome back! 😀").format(chat_name) else: text = tld(update.effective_message, "Backup fully restored. Congratulations welcome back! 😀").format(chat_name) text += tld(update.effective_message, "\n\nI returned:\n") if imp_antiflood: text += tld(update.effective_message, "- Setting Antiflood\n") if imp_blacklist: text += tld(update.effective_message, "- Settings Blacklist\n") if imp_blacklist_count: text += tld(update.effective_message, "- {} blacklists\n").format(imp_blacklist_count) if imp_disabled_count: text += tld(update.effective_message, "- {} cmd disabled\n").format(imp_disabled_count) if imp_filters_count: text += tld(update.effective_message, "- {} filters\n").format(imp_filters_count) if imp_notes: text += tld(update.effective_message, "- {} a note\n").format(imp_notes) if imp_report: text += tld(update.effective_message, "- Reporting arrangements\n") if imp_rules: text += tld(update.effective_message, "- Order group rules\n") try: send_message(update.effective_message, text, parse_mode="markdown") except BadRequest: send_message(update.effective_message, text, parse_mode="markdown", quote=False) if NOT_IMPORTED_INT: f = open("{}-notimported.txt".format(chat_id), "w") f.write(str(NOT_IMPORTED)) f.close() bot.sendDocument(chat_id, document=open('{}-notimported.txt'.format(chat_id), 'rb'), caption=tld(update.effective_message, "*data cannot be imported*"), timeout=360, parse_mode=ParseMode.MARKDOWN) os.remove("{}-notimported.txt".format(chat_id)) return except Exception as err: send_message(update.effective_message, tld(update.effective_message, "An error occured while restoring backup report at @LucySupportChat"), parse_mode="markdown") LOGGER.exception("An error when importing from Rose base!") return # only import one group if len(data) > 1 and str(chat_id) not in data: send_message(update.effective_message, tld(update.effective_message, "There is more than one group in this file, and no one has the same chat id as" "this group - how do you choose what to import?")) return # Check if backup is this chat try: if data.get(str(chat_id)) == None: if conn: text = tld(update.effective_message, "Backup originates from another chat, I can't return another chat to chat *{}*").format(chat_name) else: text = tld(update.effective_message, "Backup originates from another chat") return send_message(update.effective_message, text, parse_mode="markdown") except: return send_message(update.effective_message, tld(update.effective_message, "An error has occurred in checking the data, please report it to my author at @ LucySupportChat! 🙂")) # Check if backup is from self try: if str(bot.id) != str(data[str(chat_id)]['bot']): return send_message(update.effective_message, tld(update.effective_message, "Backup comes from another bot🙂")) except: pass # Select data source if str(chat_id) in data: data = data[str(chat_id)]['hashes'] else: data = data[list(data.keys())[0]]['hashes'] try: for mod in DATA_IMPORT: mod.__import_data__(str(chat_id), data) except Exception: send_message(update.effective_message, tld(update.effective_message, "An error occurred while restoring your data. The process may not be complete🙂")) LOGGER.exception("Impor untuk id chat %s dengan nama %s gagal.", str(chat_id), str(chat.title)) return # TODO: some of that link logic # NOTE: consider default permissions stuff? if conn: text = tld(update.effective_message, "Backup was restored successfully *{}*. Congratulations welcome back! 😀").format(chat_name) else: text = tld(update.effective_message, "Backup was restored successfully. Congratulations welcome back! 😀").format(chat_name) send_message(update.effective_message, text, parse_mode="markdown")