Browse Source

[guild] rework role update interface

Previously to update a role you would update attributes of the role
object, and then call save. This was very much an anti-pattern when
compared to the way things work elsewhere, and had the following
annoyances attached to it;

- Updating attributes of the object actually smashes state, we aren't
guarenteed that the user will call save nor that the API will accept our
save, and thus attributes on the object (which could be shared within
the state module) are smashed and innaccurate.
- Guild.update_role is effectively useless in this case, we can only
ever pass a role object in. This makes partial updates impossible, and
forces us to match the OO interface to use it.

The new style follows along with how we do things elsewhere, there is
still likely some additional work that can be done here to allow passing
in the role, but for now we'll just call this a deprecation
pull/54/head
Andrei 8 years ago
parent
commit
b755c62377
  1. 19
      disco/api/client.py
  2. 18
      disco/types/guild.py

19
disco/api/client.py

@ -389,11 +389,26 @@ class APIClient(LoggingClass):
r = self.http(Routes.GUILDS_ROLES_MODIFY_BATCH, dict(guild=guild), json=roles, headers=_reason_header(reason)) r = self.http(Routes.GUILDS_ROLES_MODIFY_BATCH, dict(guild=guild), json=roles, headers=_reason_header(reason))
return Role.create_map(self.client, r.json(), guild_id=guild) return Role.create_map(self.client, r.json(), guild_id=guild)
def guilds_roles_modify(self, guild, role, reason=None, **kwargs): def guilds_roles_modify(self, guild, role,
name=None,
hoist=None,
color=None,
permissions=None,
position=None,
mentionable=None,
reason=None):
r = self.http( r = self.http(
Routes.GUILDS_ROLES_MODIFY, Routes.GUILDS_ROLES_MODIFY,
dict(guild=guild, role=role), dict(guild=guild, role=role),
json=kwargs, json=optional(
name=name,
hoist=hoist,
color=color,
permissions=permissions,
position=position,
mentionable=mentionable,
),
headers=_reason_header(reason)) headers=_reason_header(reason))
return Role.create(self.client, r.json(), guild_id=guild) return Role.create(self.client, r.json(), guild_id=guild)

18
disco/types/guild.py

@ -116,8 +116,8 @@ class Role(SlottedModel):
def delete(self): def delete(self):
self.guild.delete_role(self) self.guild.delete_role(self)
def save(self): def update(self, *args, **kwargs):
self.guild.update_role(self) self.guild.update_role(self, *args, **kwargs)
@property @property
def mention(self): def mention(self):
@ -410,15 +410,11 @@ class Guild(SlottedModel, Permissible):
""" """
self.client.api.guilds_roles_delete(self.id, to_snowflake(role)) self.client.api.guilds_roles_delete(self.id, to_snowflake(role))
def update_role(self, role): def update_role(self, role, **kwargs):
return self.client.api.guilds_roles_modify(self.id, role.id, **{ if 'permissions' in kwargs and isinstance(kwargs['permissions'], PermissionValue):
'name': role.name, kwargs['permissions'] = kwargs['permissions'].value
'permissions': role.permissions.value,
'position': role.position, return self.client.api.guilds_roles_modify(self.id, to_snowflake(role), **kwargs)
'color': role.color,
'hoist': role.hoist,
'mentionable': role.mentionable,
})
def sync(self): def sync(self):
if self.synced: if self.synced:

Loading…
Cancel
Save