소스 검색

!status nocolor for HallowsAG

tags/v0.1^2
Ben Kurtovic 13 년 전
부모
커밋
3e5801d5e6
2개의 변경된 파일10개의 추가작업 그리고 4개의 파일을 삭제
  1. +9
    -3
      bot/commands/afc_status.py
  2. +1
    -1
      bot/tasks/afc_statistics.py

+ 9
- 3
bot/commands/afc_status.py 파일 보기

@@ -66,21 +66,27 @@ class Command(BaseCommand):
msg = "aggregate is \x0305{0}\x0301 (AfC {1})."
self.connection.reply(data, msg.format(agg_num, aggregate))

elif action.startswith("nocolor") or action == "n":
self.connection.reply(data, self.get_status(color=False))

else:
msg = "unknown argument: \x0303{0}\x0301. Valid args are 'subs', 'redirs', 'files', 'agg'."
msg = "unknown argument: \x0303{0}\x0301. Valid args are 'subs', 'redirs', 'files', 'agg', 'nocolor'."
self.connection.reply(data, msg.format(data.args[0]))

else:
self.connection.reply(data, self.get_status())

def get_status(self):
def get_status(self, color=True):
subs = self.count_submissions()
redirs = self.count_redirects()
files = self.count_files()
agg_num = self.get_aggregate_number((subs, redirs, files))
aggregate = self.get_aggregate(agg_num)

msg = "Articles for creation {0} (\x0302AFC\x0301: \x0305{1}\x0301; \x0302AFC/R\x0301: \x0305{2}\x0301; \x0302FFU\x0301: \x0305{3}\x0301)."
if color:
msg = "Articles for creation {0} (\x0302AFC\x0301: \x0305{1}\x0301; \x0302AFC/R\x0301: \x0305{2}\x0301; \x0302FFU\x0301: \x0305{3}\x0301)."
else:
msg = "Articles for creation {0} (AFC: {1}; AFC/R: {2}; FFU: {3})."
return msg.format(aggregate, subs, redirs, files)

def count_submissions(self):


+ 1
- 1
bot/tasks/afc_statistics.py 파일 보기

@@ -292,7 +292,7 @@ class Task(BaseTask):
"""Update hook for when page is not in our database.

A variety of SQL queries are used to gather information about the page,
which are then saved to our database.
which is then saved to our database.
"""
content = self.get_content(title)
if content is None:


불러오는 중...
취소
저장