-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdmreply.py
156 lines (136 loc) · 5.81 KB
/
dmreply.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import datetime
import aiosqlite
import discord
from discord.ext import commands
def micsid(ctx):
return (
ctx.author.id == 481377376475938826
or ctx.author.id == 624076054969188363
or ctx.author.id == 644266328554995712
)
class DMReply(commands.Cog):
def __init__(self, client):
self.client = client
self.dm_channel = 935891510367494154
@commands.is_owner()
@commands.command()
async def blacklist(self, ctx, id: int):
async with aiosqlite.connect("databases/blacklist.db") as conn:
await conn.execute("INSERT INTO blacklist VALUES(?)", (id,))
await conn.commit()
await ctx.send(f"Added {id} to blacklist")
@commands.is_owner()
@commands.command()
async def unblacklist(self, ctx, id: int):
async with aiosqlite.connect("databases/blacklist.db") as conn:
await conn.execute("DELETE FROM blacklist WHERE id=?", (id,))
await conn.commit()
await ctx.send(f"Removed {id} from blacklist")
# @commands.is_owner()
# @commands.command()
# async def blacklistmake(self, ctx):
# async with aiosqlite.connect("databases/blacklist.db") as conn:
# await conn.execute("CREATE TABLE blacklist(id int)")
# await conn.commit()
# await ctx.send("Done")
@commands.command(aliases=["dmr"])
@commands.check(micsid)
async def dmreply(self, ctx, *, msg=None):
if ctx.message.reference is None:
return
else:
await ctx.message.delete()
id = ctx.message.reference.message_id
id = await ctx.channel.fetch_message(id)
await id.reply(msg)
id = int(id.content)
person = await self.client.fetch_user(id)
if msg is None:
pass
else:
x = await person.send(msg)
await x.add_reaction("📩")
if ctx.message.attachments is None:
return
else:
for i in ctx.message.attachments:
em = discord.Embed(color=ctx.author.color)
em.timestamp = datetime.datetime.utcnow()
em.set_image(url=i.url)
x = await person.send(embed=em)
await x.add_reaction("📩")
@commands.Cog.listener()
async def on_message(self, message):
if message.author.bot:
return
if isinstance(message.channel, discord.DMChannel):
cha = await self.client.fetch_channel(self.dm_channel)
em = discord.Embed(
title="New DM",
description=f"From {message.author.name}",
color=message.author.color,
)
em.timestamp = datetime.datetime.utcnow()
if message.content != "":
em.add_field(name="Content", value=f"{message.content}")
async with aiosqlite.connect("databases/blacklist.db") as conn:
async with conn.execute("SELECT * FROM blacklist") as cursor:
async for row in cursor:
if message.author.id == row[0]:
await message.author.send(
"You are blacklisted from messaging the bot"
)
return
await cha.send(content=f"{message.author.id}", embed=em)
# react to users message
await message.add_reaction("📩")
if message.attachments is not None:
for attachment in message.attachments:
if "image/" not in str(attachment.content_type):
return await cha.send(attachment.url)
em = discord.Embed(title="** **", color=discord.Color.blue())
em.timestamp = datetime.datetime.utcnow()
em.set_image(url=attachment.url)
async with aiosqlite.connect("databases/blacklist.db") as conn:
async with conn.execute("SELECT * FROM blacklist") as cursor:
async for row in cursor:
if message.author.id == row[0]:
await message.author.send(
"You are blacklisted from messaging the bot"
)
return
await cha.send(embed=em)
await message.add_reaction("📩")
try:
if (
message.channel.id == self.dm_channel
and message.author.id == self.client.owner_id
):
if message.reference is None:
return
else:
id = message.reference.message_id
id = await message.channel.fetch_message(id)
id = int(id.content)
person = await self.client.fetch_user(id)
if message.content is None:
pass
else:
await person.send(message.content)
await message.add_reaction("✅")
if message.attachments is None:
return
else:
for i in message.attachments:
if "image/" not in str(i.content_type):
return await person.send(i.url)
em = discord.Embed(color=message.author.color)
em.timestamp = datetime.datetime.utcnow()
em.set_image(url=i.url)
await person.send(embed=em)
await message.add_reaction("✅")
except Exception as e:
print(e)
await message.add_reaction("❌")
def setup(client):
client.add_cog(DMReply(client))