You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
319 lines
9.7 KiB
319 lines
9.7 KiB
# -*- 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.
|
|
"""
|
|
|
|
class Permissions:
|
|
"""Wraps up the Discord permission value.
|
|
|
|
Supported operations:
|
|
|
|
+-----------+------------------------------------------+
|
|
| Operation | Description |
|
|
+===========+==========================================+
|
|
| x == y | Checks if two permissions are equal. |
|
|
+-----------+------------------------------------------+
|
|
| x != y | Checks if two permissions are not equal. |
|
|
+-----------+------------------------------------------+
|
|
| hash(x) | Return the permission's hash. |
|
|
+-----------+------------------------------------------+
|
|
|
|
Attributes
|
|
-----------
|
|
value
|
|
The raw value. This value is a bit array field of a 32-bit integer
|
|
representing the currently available permissions. You should query
|
|
permissions via the properties rather than using this raw value.
|
|
|
|
The properties provided are two way. You can set and retrieve individual bits using the properties as if they
|
|
were regular bools. This allows you to edit permissions.
|
|
"""
|
|
|
|
__slots__ = [ 'value' ]
|
|
def __init__(self, permissions=0, **kwargs):
|
|
self.value = permissions
|
|
|
|
def __eq__(self, other):
|
|
return isinstance(other, Permissions) and self.value == other.value
|
|
|
|
def __ne__(self, other):
|
|
return not self.__eq__(other)
|
|
|
|
def __hash__(self):
|
|
return hash(self.value)
|
|
|
|
@classmethod
|
|
def none(cls):
|
|
"""A factory method that creates a :class:`Permission` with all
|
|
permissions set to False."""
|
|
return cls(0)
|
|
|
|
@classmethod
|
|
def all(cls):
|
|
"""A factory method that creates a :class:`Permission` with all
|
|
permissions set to True."""
|
|
return cls(0b00000011111100111111110000111111)
|
|
|
|
@classmethod
|
|
def all_channel(cls):
|
|
"""A :class:`Permission` with all channel-specific permissions set to
|
|
True and the server-specific ones set to False. The server-specific
|
|
permissions are currently:
|
|
|
|
- manager_server
|
|
- kick_members
|
|
- ban_members
|
|
"""
|
|
return cls(0b00000011111100111111110000011001)
|
|
|
|
@classmethod
|
|
def general(cls):
|
|
"""A factory method that creates a :class:`Permission` with all
|
|
"General" permissions set to True."""
|
|
return cls(0b00000000000000000000000000111111)
|
|
|
|
@classmethod
|
|
def text(cls):
|
|
"""A factory method that creates a :class:`Permission` with all
|
|
"Text" permissions set to True."""
|
|
return cls(0b00000000000000111111110000000000)
|
|
|
|
@classmethod
|
|
def voice(cls):
|
|
"""A factory method that creates a :class:`Permission` with all
|
|
"Voice" permissions set to True."""
|
|
return cls(0b00000011111100000000000000000000)
|
|
|
|
|
|
def _bit(self, index):
|
|
return bool((self.value >> index) & 1)
|
|
|
|
def _set(self, index, value):
|
|
if value == True:
|
|
self.value |= (1 << index)
|
|
elif value == False:
|
|
self.value &= ~(1 << index)
|
|
else:
|
|
raise TypeError('Value to set for Permissions must be a bool.')
|
|
|
|
def handle_overwrite(self, allow, deny):
|
|
# Basically this is what's happening here.
|
|
# We have an original bit array, e.g. 1010
|
|
# Then we have another bit array that is 'denied', e.g. 1111
|
|
# And then we have the last one which is 'allowed', e.g. 0101
|
|
# We want original OP denied to end up resulting in
|
|
# whatever is in denied to be set to 0.
|
|
# So 1010 OP 1111 -> 0000
|
|
# Then we take this value and look at the allowed values.
|
|
# And whatever is allowed is set to 1.
|
|
# So 0000 OP2 0101 -> 0101
|
|
# The OP is base & ~denied.
|
|
# The OP2 is base | allowed.
|
|
self.value = (self.value & ~deny) | allow
|
|
|
|
@property
|
|
def create_instant_invite(self):
|
|
"""Returns True if the user can create instant invites."""
|
|
return self._bit(0)
|
|
|
|
@create_instant_invite.setter
|
|
def create_instant_invite(self, value):
|
|
self._set(0, value)
|
|
|
|
@property
|
|
def kick_members(self):
|
|
"""Returns True if the user can kick users from the server."""
|
|
return self._bit(1)
|
|
|
|
@kick_members.setter
|
|
def kick_members(self, value):
|
|
self._set(1, value)
|
|
|
|
@property
|
|
def ban_members(self):
|
|
"""Returns True if a user can ban users from the server."""
|
|
return self._bit(2)
|
|
|
|
@ban_members.setter
|
|
def ban_members(self, value):
|
|
self._set(2, value)
|
|
|
|
@property
|
|
def manage_roles(self):
|
|
"""Returns True if a user can manage server roles. This role overrides all other permissions."""
|
|
return self._bit(3)
|
|
|
|
@manage_roles.setter
|
|
def manage_roles(self, value):
|
|
self._set(3, value)
|
|
|
|
@property
|
|
def manage_channels(self):
|
|
"""Returns True if a user can edit, delete, or create channels in the server."""
|
|
return self._bit(4)
|
|
|
|
@manage_channels.setter
|
|
def manage_channels(self, value):
|
|
self._set(4, value)
|
|
|
|
@property
|
|
def manage_server(self):
|
|
"""Returns True if a user can edit server properties."""
|
|
return self._bit(5)
|
|
|
|
@manage_server.setter
|
|
def manage_server(self, value):
|
|
self._set(5, value)
|
|
|
|
# 4 unused
|
|
|
|
@property
|
|
def read_messages(self):
|
|
"""Returns True if a user can read messages from all or specific text channels."""
|
|
return self._bit(10)
|
|
|
|
@read_messages.setter
|
|
def read_messages(self, value):
|
|
self._set(10, value)
|
|
|
|
@property
|
|
def send_messages(self):
|
|
"""Returns True if a user can send messages from all or specific text channels."""
|
|
return self._bit(11)
|
|
|
|
@send_messages.setter
|
|
def send_messages(self, value):
|
|
self._set(11, value)
|
|
|
|
@property
|
|
def send_tts_messages(self):
|
|
"""Returns True if a user can send TTS messages from all or specific text channels."""
|
|
return self._bit(12)
|
|
|
|
@send_tts_messages.setter
|
|
def send_tts_messages(self, value):
|
|
self._set(12, value)
|
|
|
|
@property
|
|
def manage_messages(self):
|
|
"""Returns True if a user can delete messages from a text channel. Note that there are currently no ways to edit other people's messages."""
|
|
return self._bit(13)
|
|
|
|
@manage_messages.setter
|
|
def manage_messages(self, value):
|
|
self._set(13, value)
|
|
|
|
@property
|
|
def embed_links(self):
|
|
"""Returns True if a user's messages will automatically be embedded by Discord."""
|
|
return self._bit(14)
|
|
|
|
@embed_links.setter
|
|
def embed_links(self, value):
|
|
self._set(14, value)
|
|
|
|
@property
|
|
def attach_files(self):
|
|
"""Returns True if a user can send files in their messages."""
|
|
return self._bit(15)
|
|
|
|
@attach_files.setter
|
|
def attach_files(self, value):
|
|
self._set(15, value)
|
|
|
|
@property
|
|
def read_message_history(self):
|
|
"""Returns True if a user can read a text channel's previous messages."""
|
|
return self._bit(16)
|
|
|
|
@read_message_history.setter
|
|
def read_message_history(self, value):
|
|
self._set(16, value)
|
|
|
|
@property
|
|
def mention_everyone(self):
|
|
"""Returns True if a user's @everyone will mention everyone in the text channel."""
|
|
return self._bit(17)
|
|
|
|
@mention_everyone.setter
|
|
def mention_everyone(self, value):
|
|
self._set(17, value)
|
|
|
|
# 2 unused
|
|
|
|
@property
|
|
def connect(self):
|
|
"""Returns True if a user can connect to a voice channel."""
|
|
return self._bit(20)
|
|
|
|
@connect.setter
|
|
def connect(self, value):
|
|
self._set(20, value)
|
|
|
|
@property
|
|
def speak(self):
|
|
"""Returns True if a user can speak in a voice channel."""
|
|
return self._bit(21)
|
|
|
|
@speak.setter
|
|
def speak(self, value):
|
|
self._set(21, value)
|
|
|
|
@property
|
|
def mute_members(self):
|
|
"""Returns True if a user can mute other users."""
|
|
return self._bit(22)
|
|
|
|
@mute_members.setter
|
|
def mute_members(self, value):
|
|
self._set(22, value)
|
|
|
|
@property
|
|
def deafen_members(self):
|
|
"""Returns True if a user can deafen other users."""
|
|
return self._bit(23)
|
|
|
|
@deafen_members.setter
|
|
def deafen_members(self, value):
|
|
self._set(23, value)
|
|
|
|
@property
|
|
def move_members(self):
|
|
"""Returns True if a user can move users between other voice channels."""
|
|
return self._bit(24)
|
|
|
|
@move_members.setter
|
|
def move_members(self, value):
|
|
self._set(24, value)
|
|
|
|
@property
|
|
def use_voice_activation(self):
|
|
"""Returns True if a user can use voice activation in voice channels."""
|
|
return self._bit(25)
|
|
|
|
@use_voice_activation.setter
|
|
def use_voice_activation(self, value):
|
|
self._set(25, value)
|
|
|
|
# 6 unused
|
|
|