-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetUpServer.py
58 lines (53 loc) · 2.24 KB
/
setUpServer.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
import os
import json
import discord
from lcUtils import getEmbed
from discord.ext import commands
async def setChannel(ctx):
embed = getEmbed()
if ctx.author.guild_permissions.administrator:
serverId = str(ctx.guild.id)
channelId = ctx.channel.id
with open(f"./servers/{serverId}.json", "r") as readFile:
server = json.load(readFile)
server["LOTDCHANNEL"] = channelId
with open(f"./servers/{serverId}.json", "w") as writeFile:
json.dump(server, writeFile)
embed.color = discord.Colour.green()
embed.description = f"LeetCode of the Day will now be posted to \"{ctx.channel.name}.\""
await ctx.send(embed=embed)
else:
embed.color = discord.Colour.green()
embed.description = f"You need to be an administrator to do this."
await ctx.send(embed=embed)
async def setPing(ctx, ping):
embed = getEmbed()
if ctx.author.guild_permissions.administrator:
if ping.lower() == "none":
with open(f"./servers/{ctx.guild.id}.json", "r") as readFile:
server = json.load(readFile)
server["LOTDPING"] = None
with open(f"./servers/{ctx.guild.id}.json", "w") as writeFile:
json.dump(server, writeFile)
embed.color = discord.Colour.green()
embed.description = "Ping removed."
await ctx.send(embed=embed)
return
if ping is None or not ping.startswith("<@"):
embed.color = discord.Colour.red()
embed.description = "Invalid ping. Syntax: `-setping @role`."
await ctx.send(embed=embed)
return
serverId = str(ctx.guild.id)
with open(f"./servers/{serverId}.json", "r") as readFile:
server = json.load(readFile)
server["LOTDPING"] = ping
with open(f"./servers/{serverId}.json", "w") as writeFile:
json.dump(server, writeFile)
embed.color = discord.Colour.green()
embed.description = f"LeetCode of the Day will now ping {ping}."
await ctx.send(embed=embed)
else:
embed.color = discord.Colour.green()
embed.description = f"You need to be an administrator to do this."
await ctx.send(embed=embed)