diff --git a/player.py b/player.py index 2c88066..3716988 100644 --- a/player.py +++ b/player.py @@ -127,22 +127,26 @@ class Player: if "play_on" in self.current and self.current["play_on"]: message += f"Сейчас играет на {self.stats['servers'][self.current['play_on']['server_id']]['name']}\n" message += "\n" - #тут должна быть последняя причина выхода с сервера, но она не релизована в бекенде - message += "Последняя игра на серверах:\n" + + #Последняя игра и игровое время + self.lastplayAndGametime = {} if "lastplay" in self.current and self.current["lastplay"]: for maps in self.current["lastplay"].values(): for map_name, last_play in maps.items(): - message += f"{workshopmap2bsp(map_name)} - {utime2human(last_play)}\n" - else: - message += "Не играл у нас\n" - message += "\n" - #Далее игровое время бро + if not workshopmap2bsp(map_name) in self.lastplayAndGametime: + self.lastplayAndGametime[workshopmap2bsp(map_name)] = {"total":0, "lastplay":0} + self.lastplayAndGametime[workshopmap2bsp(map_name)]['lastplay'] = last_play if "gametime" in self.current and self.current["gametime"]: message += "Статистика по картам:\n" for maps in self.current["gametime"].values(): for map_name, play_time in maps.items(): - message += f"{workshopmap2bsp(map_name)} - {human_TIME(play_time)}\n" - message += "\n" + if not workshopmap2bsp(map_name) in self.lastplayAndGametime: + self.lastplayAndGametime[workshopmap2bsp(map_name)] = {"total":0, "lastplay":0} + self.lastplayAndGametime[workshopmap2bsp(map_name)]["total"] = play_time + message += "Статистика игры:\n" + for map_name, values in self.lastplayAndGametime.items(): + message += f"{map_name}\n{human_TIME(values['total']) if values['total'] > 0 else 'Не играл'} / {utime2human(values['lastplay']) if values['lastplay'] > 0 else 'Не играл'}\n\n" + #Далее идут проверка прав if "permition" in self.current and self.current["permition"]: message += f"Права: {self.current['permition']['status']} назначены {utime2human(self.current['permition']['u_timestamp']) if self.current['permition']['u_timestamp'] != 0 else 'с момента создания'}\n" @@ -163,7 +167,15 @@ class Player: message += f"Дата разбана: {utime2human(self.current['ban']['ban_utime'] + self.current['ban']['ban_length_seconds'])}\n" else: message += f"Кто разбанил: {'бан снялся со временем' if self.current['ban']['unbanned_by_id'] == 'STEAM_0:0:0' else self.current['ban']['unbanned_by_id']}\n" - #Не реализованное получение числа скок был в бане + message += "\n" + #Скок был в бане + if "ban_list" in self.current and self.current["ban_list"]: + message += f"Был в бане {len(self.current['ban_list'])} раз\n" + message += "\n" + #Количество репортво + if "reports" in self.current and self.current["reports"]: + message += f"Было отправлено {self.current.get('reports',{}).get('created', 0)} репортов\n Жаловались {self.current.get('reports',{}).get('accepted', 0)} раз\n" + message += "\n" return message async def GetSteamIDOfProfile(self, any:str):