From 3e7c0a1ae324935420f2208c9bfb404247a00904 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 26 Apr 2017 13:15:23 -0700 Subject: [PATCH] Add support for detecting NSFW channels --- disco/types/channel.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/disco/types/channel.py b/disco/types/channel.py index 48a10c1..39d2f47 100644 --- a/disco/types/channel.py +++ b/disco/types/channel.py @@ -1,3 +1,4 @@ +import re import six from six.moves import map @@ -11,6 +12,9 @@ from disco.types.permissions import Permissions, Permissible, PermissionValue from disco.voice.client import VoiceClient +NSFW_RE = re.compile('^nsfw(-|$)') + + ChannelType = Enum( GUILD_TEXT=0, DM=1, @@ -179,6 +183,13 @@ class Channel(SlottedModel, Permissible): """ return self.type in (ChannelType.DM, ChannelType.GROUP_DM) + @property + def is_nsfw(self): + """ + Whether this channel is an NSFW channel. + """ + return self.type == ChannelType.GUILD_TEXT and NSFW_RE.match(self.name) + @property def is_voice(self): """