Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sourcery Starbot ⭐ refactored easyguyme/telegram-bot #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,7 @@ def handle_text(message):
admins = db.all_admins()
text = "All admins:\n\n"
for admin in admins:
if str(admin[0]) == 'none':
pass
else:
if str(admin[0]) != 'none':
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function handle_text refactored with the following changes:

text += "<b>@%s</b>\n" % (str(admin[0]))
bot.send_message(message.from_user.id, text, parse_mode='HTML')

Expand Down Expand Up @@ -200,17 +198,19 @@ def del_warning(message):

@bot.message_handler(commands=['allwarnings'])
def handle_text(message):
if message.chat.type == "private" and message.from_user.id in superadmins:
warnings = db.all_warnings()
text = "All warnings:\n\n"
for warning in warnings:
if str(warning[0]) == 'none':
pass
else:
text += "<b>@%s</b>: %s\n" % (str(warning[0]), str(warning[1]))
splitted_text = util.split_string(text, 3000)
for text in splitted_text:
bot.send_message(message.chat.id, text, parse_mode='HTML')
if (
message.chat.type != "private"
or message.from_user.id not in superadmins
):
return
warnings = db.all_warnings()
text = "All warnings:\n\n"
for warning in warnings:
if str(warning[0]) != 'none':
text += "<b>@%s</b>: %s\n" % (str(warning[0]), str(warning[1]))
splitted_text = util.split_string(text, 3000)
for text in splitted_text:
bot.send_message(message.chat.id, text, parse_mode='HTML')
Comment on lines -203 to +213
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function handle_text refactored with the following changes:



# ============================================= #
Expand Down
6 changes: 2 additions & 4 deletions dbhelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,10 @@ def del_warning(self, insta_username):

def all_warnings(self):
self.c.execute("SELECT insta_user, warnings FROM data")
warnings = self.c.fetchall()
return warnings
return self.c.fetchall()
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function DBHelper.all_warnings refactored with the following changes:


def all_admins(self):
self.c.execute("SELECT insta_user FROM data WHERE admin=1")
admins = self.c.fetchall()
return admins
return self.c.fetchall()
Comment on lines -116 to +115
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function DBHelper.all_admins refactored with the following changes: