channel_delete_middleware()   A
last analyzed

Complexity

Conditions 2

Size

Total Lines 29
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 29
rs 10
c 0
b 0
f 0
cc 2
nop 3
1
# Copyright Pincer 2021-Present
2
# Full MIT License can be found in `LICENSE` at the project root.
3
4
"""sent when a channel is deleted"""
5
6
from __future__ import annotations
7
8
from typing import TYPE_CHECKING
9
10
from ..objects import Channel
11
12
if TYPE_CHECKING:
13
    from ..client import Client
14
    from ..core.gateway import Gateway
15
    from ..core.gateway import GatewayDispatch
16
17
18
async def channel_delete_middleware(
19
    self: Client, gateway: Gateway, payload: GatewayDispatch
0 ignored issues
show
Unused Code introduced by
The argument gateway seems to be unused.
Loading history...
Coding Style introduced by
Wrong hanging indentation before block (add 4 spaces).
Loading history...
20
):
21
    """|coro|
22
23
    Middleware for the ``on_channel_delete`` event.
24
25
    Parameters
26
    ----------
27
    payload : :class:`pincer.core.gateway.GatewayDispatch`
28
        The data received from the channel delete event.
29
    gateway : :class:`~pincer.core.gateway.Gateway`
30
        The gateway for the current shard.
31
32
    Returns
33
    -------
34
    Tuple[:class:`str`, :class:`~pincer.objects.guild.channel.Channel`]
35
        ``on_channel_delete`` and a ``Channel``
36
    """
37
38
    channel = Channel.from_dict(payload.data)
39
40
    guild = self.guilds.get(channel.guild_id)
41
    if guild:
42
        guild.channels = [c for c in guild.channels if c.id != channel.id]
43
44
    self.channels.pop(channel.id, None)
45
46
    return "on_channel_delete", channel
47
48
49
def export():
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
50
    return channel_delete_middleware
51