# -*- coding: utf-8 -*- """ The MIT License (MIT) Copyright (c) 2015-2016 Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from .permissions import Permissions from .colour import Colour from .mixins import Hashable class Role(Hashable): """Represents a Discord role in a :class:`Server`. Supported Operations: +-----------+------------------------------------+ | Operation | Description | +===========+====================================+ | x == y | Checks if two roles are equal. | +-----------+------------------------------------+ | x != y | Checks if two roles are not equal. | +-----------+------------------------------------+ | hash(x) | Return the role's hash. | +-----------+------------------------------------+ | str(x) | Returns the role's name. | +-----------+------------------------------------+ Attributes ---------- id : str The ID for the role. name : str The name of the role. permissions : :class:`Permissions` Represents the role's permissions. colour : :class:`Colour` Represents the role colour. An alias exists under ``color``. hoist : bool Indicates if the role will be displayed separately from other members. position : int The position of the role. This number is usually positive. managed : bool Indicates if the role is managed by the server through some form of integrations such as Twitch. """ __slots__ = ['id', 'name', 'permissions', 'color', 'colour', 'position', 'managed', '_is_everyone', 'hoist' ] def __init__(self, **kwargs): self._is_everyone = kwargs.get('everyone', False) self.update(**kwargs) def __str__(self): return self.name def update(self, **kwargs): self.id = kwargs.get('id') self.name = kwargs.get('name') self.permissions = Permissions(kwargs.get('permissions', 0)) self.position = kwargs.get('position', 0) self.colour = Colour(kwargs.get('color', 0)) self.hoist = kwargs.get('hoist', False) self.managed = kwargs.get('managed', False) self.color = self.colour if 'everyone' in kwargs: self._is_everyone = kwargs['everyone'] @property def is_everyone(self): """Checks if the role is the @everyone role.""" return self._is_everyone