Browse Source

client: add block/unblock methods for steam users

Close #243
Close #225
pull/254/head
Rossen Georgiev 5 years ago
parent
commit
abd737589b
  1. 40
      steam/client/builtins/friends.py
  2. 8
      steam/client/user.py

40
steam/client/builtins/friends.py

@ -176,3 +176,43 @@ class SteamFriendlist(EventEmitter):
self._steam.send(MsgProto(EMsg.ClientRemoveFriend), {'friendid': steamid})
def block(self, steamid):
"""
Block Steam user
:param steamid: their steamid
:type steamid: :class:`int`, :class:`.SteamID`, :class:`.SteamUser`
"""
if isinstance(steamid, SteamUser):
steamid = steamid.steam_id
resp = self._steam.send_um_and_wait("Player.IgnoreFriend#1",
{"steamid": steamid},
timeout=10)
if not resp:
return EResult.Timeout
else:
if steamid in self:
self[steamid].relationship = EFriendRelationship(resp.body.friend_relationship)
return resp.header.eresult
def unblock(self, steamid):
"""
Unblock Steam user
:param steamid: their steamid
:type steamid: :class:`int`, :class:`.SteamID`, :class:`.SteamUser`
"""
if isinstance(steamid, SteamUser):
steamid = steamid.steam_id
resp = self._steam.send_um_and_wait("Player.IgnoreFriend#1",
{"steamid": steamid, "unignore": True},
timeout=10)
if not resp:
return EResult.Timeout
else:
if steamid in self:
self[steamid].relationship = EFriendRelationship(resp.body.friend_relationship)
return resp.header.eresult

8
steam/client/user.py

@ -126,3 +126,11 @@ class SteamUser(object):
'chat_entry_type': EChatEntryType.ChatMsg,
'message': message.encode('utf8'),
})
def block(self):
"""Block user"""
self._steam.friends.block(self)
def unblock(self):
"""Unblock user"""
self._steam.friends.unblock(self)

Loading…
Cancel
Save