Dislocker/dislocker.py

234 lines
14 KiB
Python
Raw Normal View History

2024-06-04 09:36:29 +09:00
import json
import discord
import os
import psycopg2
import hashlib
import string
import random
2024-06-04 09:36:29 +09:00
2024-06-04 22:53:31 +09:00
class Bot(discord.Client):
def db_connect(self, host, db, port, user, password):
self.db = psycopg2.connect(f"host={host} dbname={db} port={port} user={user} password={password}")
2024-06-04 22:53:31 +09:00
def password_generate(self, length):
numbers = string.digits # (1)
password = ''.join(random.choice(numbers) for _ in range(length)) # (2)
2024-06-09 18:39:42 +09:00
return password
def hash_genarate(self, source):
hashed = hashlib.md5(source.encode())
return hashed.hexdigest()
2024-06-09 18:39:42 +09:00
def register(self, **kwrags):
discord_user_id = str(kwrags["user_id"])
pc_number = int(kwrags["pc_number"])
device_number = int(kwrags["device_number"])
if "detail" in kwrags:
detail = str(kwrags["detail"])
else:
detail = None
#パスワード生成、ハッシュ化
password = self.password_generate(4)
password_hash = self.hash_genarate(password)
2024-06-10 14:38:33 +09:00
print("パスワード生成完了")
2024-06-09 18:39:42 +09:00
#メンバーリストと送信者を照合
cursor = self.db.cursor()
cursor.execute("SELECT * FROM club_member WHERE discord_userid = %s", (discord_user_id,))
user_record = cursor.fetchall()
#ユーザーデータがなかったら(未登録の場合)
2024-06-09 20:15:06 +09:00
if not user_record:
2024-06-09 18:49:46 +09:00
result = {"result": "user_data_not_found"}
2024-06-09 18:39:42 +09:00
#ユーザーデータが見つかった場合(登録済みの場合)
else:
2024-06-10 14:38:33 +09:00
print("ユーザーデータが見つかった")
2024-06-09 18:39:42 +09:00
cursor.execute("SELECT * FROM pc_usage_history WHERE member_id=%s ORDER BY id DESC LIMIT 1", (user_record[0][0],))
pc_usage_history_record = cursor.fetchall()
2024-06-09 20:11:20 +09:00
if pc_usage_history_record:
2024-06-10 14:38:33 +09:00
print("使用したことがあります")
2024-06-09 20:11:20 +09:00
if pc_usage_history_record[0][5] == None:
result = {"result": "pc_already_in_use_by_you", "pc_number": str(pc_usage_history_record[0][2]), "device_number": str(pc_usage_history_record[0][3]), "start_time": str(pc_usage_history_record[0][4]), "detail": str(pc_usage_history_record[0][6])}
else:
2024-06-09 20:15:06 +09:00
cursor.execute("SELECT * FROM pc_list WHERE pc_number=%s", (pc_number,))
pc_list_record = cursor.fetchall()
if not pc_list_record[0][1] == None:
result = {"result": "pc_already_in_use_by_other"}
2024-06-09 18:39:42 +09:00
else:
2024-06-09 20:15:06 +09:00
if detail == None:
cursor.execute("INSERT INTO pc_usage_history (member_id, pc_number, device_number, start_use_time) VALUES (%s, %s, %s, current_timestamp)", (user_record[0][0], pc_number, device_number))
#使用用途があるとき
else:
cursor.execute("INSERT INTO pc_usage_history (member_id, pc_number, device_number, start_use_time, use_detail) VALUES (%s, %s, %s, current_timestamp, %s)", (user_record[0][0], pc_number, device_number, detail))
cursor.execute("UPDATE pc_list SET using_user_id = %s WHERE pc_number = %s", (user_record[0][0], pc_number))
cursor.execute("UPDATE pc_list SET password_hash = %s WHERE pc_number = %s", (password_hash, pc_number))
self.db.commit()
result = {"result": "ok", "password": str(password), "name": str(user_record[0][1])}
else:
cursor.execute("SELECT * FROM pc_usage_history WHERE member_id=%s ORDER BY id DESC LIMIT 1", (user_record[0][0],))
pc_usage_history_record = cursor.fetchall()
if pc_usage_history_record:
if pc_usage_history_record[0][5] == None:
result = {"result": "pc_already_in_use_by_you", "pc_number": str(pc_usage_history_record[0][2]), "device_number": str(pc_usage_history_record[0][3]), "start_time": str(pc_usage_history_record[0][4]), "detail": str(pc_usage_history_record[0][6])}
else:
cursor.execute("SELECT * FROM pc_list WHERE pc_number=%s", (pc_number,))
pc_list_record = cursor.fetchall()
if not pc_list_record[0][1] == None:
result = {"result": "pc_already_in_use_by_other"}
else:
if detail == None:
cursor.execute("INSERT INTO pc_usage_history (member_id, pc_number, device_number, start_use_time) VALUES (%s, %s, %s, current_timestamp)", (user_record[0][0], pc_number, device_number))
#使用用途があるとき
else:
cursor.execute("INSERT INTO pc_usage_history (member_id, pc_number, device_number, start_use_time, use_detail) VALUES (%s, %s, %s, current_timestamp, %s)", (user_record[0][0], pc_number, device_number, detail))
cursor.execute("UPDATE pc_list SET using_user_id = %s WHERE pc_number = %s", (user_record[0][0], pc_number))
cursor.execute("UPDATE pc_list SET password_hash = %s WHERE pc_number = %s", (password_hash, pc_number))
self.db.commit()
result = {"result": "ok", "password": str(password), "name": str(user_record[0][1])}
2024-06-09 19:04:32 +09:00
return result
2024-06-09 18:39:42 +09:00
def stop(self, **kwrags):
discord_user_id = str(kwrags["user_id"])
cursor = self.db.cursor()
cursor.execute("SELECT * FROM club_member WHERE discord_userid = %s", (discord_user_id,))
user_record = cursor.fetchall()
cursor.execute("SELECT * FROM pc_usage_history WHERE member_id= %s ORDER BY id DESC LIMIT 1", (user_record[0][0],))
pc_usage_history_record = cursor.fetchall()
2024-06-09 20:11:20 +09:00
if pc_usage_history_record:
if not pc_usage_history_record[0][5] == None:
result = {"result": "unused"}
else:
cursor.execute("UPDATE pc_usage_history SET end_use_time = current_timestamp WHERE id = %s", (pc_usage_history_record[0][0],))
cursor.execute("UPDATE pc_list SET using_user_id = NULL WHERE pc_number = %s", (pc_usage_history_record[0][2],))
cursor.execute("UPDATE pc_list SET password_hash = NULL WHERE pc_number = %s", (pc_usage_history_record[0][2],))
self.db.commit()
result = {"result": "ok", "pc_number": str(pc_usage_history_record[0][2]), "name": str(user_record[0][1])}
2024-06-09 19:04:32 +09:00
return result
2024-06-09 18:39:42 +09:00
def user_register(self, **kwrags):
discord_user_id = str(kwrags["discord_user_id"])
discord_user_name = str(kwrags["discord_user_name"])
name = str(kwrags["name"])
cursor = self.db.cursor()
cursor.execute("SELECT * FROM club_member WHERE discord_userid = %s", (discord_user_id,))
user_record = cursor.fetchall()
if not user_record:
cursor.execute("INSERT INTO club_member (name, discord_username, discord_userid) VALUES (%s, %s, %s)", (name, discord_user_name, discord_user_id))
self.db.commit()
result = {"result": "ok"}
else:
result = {"result": "already_exists"}
return result
2024-06-04 22:53:31 +09:00
async def on_ready(self):
print("ログイン成功")
2024-06-04 09:36:29 +09:00
2024-06-04 22:53:31 +09:00
async def on_message(self, message):
if message.author.bot:
2024-06-09 18:49:46 +09:00
pass
2024-06-09 18:39:42 +09:00
elif isinstance(message.channel, discord.DMChannel):
2024-06-04 22:53:31 +09:00
msg_split = message.content.split()
if msg_split[0] == "/password" or msg_split[0] == "/start":
2024-06-09 18:39:42 +09:00
#メッセージの要素が2つ以下の場合は拒否
2024-06-04 22:53:31 +09:00
if len(msg_split) <= 2:
await message.channel.send("PC番号、もしくはデバイス番号が入力されていません。")
2024-06-09 19:04:32 +09:00
#メッセージの要素が3つ以上の場合
elif len(msg_split) >= 3:
2024-06-09 18:39:42 +09:00
#番号が数字であることを確認
2024-06-04 22:53:31 +09:00
if msg_split[1].isdigit() and msg_split[2].isdigit():
2024-06-09 18:39:42 +09:00
#PC番号が1以上10以下であることを確認
2024-06-04 22:53:31 +09:00
if int(msg_split[1]) <= 10 and int(msg_split[1]) >= 1:
2024-06-09 19:04:32 +09:00
if len(msg_split) == 3:
register = self.register(user_id=message.author.id, pc_number=msg_split[1], device_number=msg_split[2])
elif len(msg_split) == 4:
register = self.register(user_id=message.author.id, pc_number=msg_split[1], device_number=msg_split[2], detail=msg_split[3])
2024-06-09 18:39:42 +09:00
if register["result"] == "ok":
2024-06-09 19:04:32 +09:00
if len(msg_split) == 3:
await message.channel.send(f"使用が開始されました。\nパスワード | {register["password"]}\nPC番号 | {msg_split[1]}\nデバイス番号 | {msg_split[2]}")
elif len(msg_split) == 4:
await message.channel.send(f"使用が開始されました。\nパスワード | {register["password"]}\nPC番号 | {msg_split[1]}\nデバイス番号 | {msg_split[2]}\n使用目的 | {msg_split[3]}")
await self.get_channel(bot_config["log_channel_id"]).send(f'{register["name"]} さんがPC {msg_split[1]} を使用しています')
2024-06-09 18:39:42 +09:00
elif register["result"] == "user_data_not_found":
await message.channel.send("ユーザーとして登録されていないようです。管理者に問い合わせてください。")
elif register["result"] == "pc_already_in_use_by_you":
await message.channel.send(f"あなたはPCをもう使用されているようです。使用状態を解除するには /stop で使用終了をお知らせください。\nPC番号 | {register["pc_number"]}\nデバイス番号 | {register["device_number"]}\n使用開始時刻 | {register["start_time"]}\n使用目的 | {register["detail"]}")
elif register["result"] == "pc_already_in_use_by_other":
await message.channel.send(f"PCはもう使用されています。別のPC番号を指定して、再度お試しください。")
2024-06-04 22:53:31 +09:00
else:
2024-06-09 18:39:42 +09:00
await message.channel.send("番号がおかしいようです。")
2024-06-04 22:53:31 +09:00
else:
2024-06-09 18:39:42 +09:00
await message.channel.send("指定された番号は不正です。")
2024-06-04 22:53:31 +09:00
elif msg_split[0] == "/stop":
2024-06-09 18:39:42 +09:00
stop = self.stop(user_id=message.author.id)
if stop["result"] == "unused":
await message.channel.send("使用されていないようです...")
2024-06-09 18:39:42 +09:00
elif stop["result"] == "ok":
await message.channel.send(f"PC番号 {stop["pc_number"]} の使用が終了されました。")
await self.get_channel(bot_config["log_channel_id"]).send(f'{stop["name"]} さんがPC {stop["pc_number"]} の使用を終了しました')
elif message.channel.id == bot_config["config_channel_id"]:
msg_split = message.content.split()
if msg_split[0] == "/register":
if len(msg_split) <= 3:
await message.channel.send("名前、Discordのユーザー名、DiscordのユーザーIDのいずれかが入力されていません。")
elif len(msg_split) == 4:
if msg_split[3].isdigit():
register = self.user_register(name=msg_split[1], discord_user_name=msg_split[2], discord_user_id=msg_split[3])
if register["result"] == "ok":
await message.channel.send(f"登録が完了しました。\n名前 | {msg_split[1]}\nDiscordのユーザー名 | {msg_split[2]}\nDiscordのユーザーID | {msg_split[3]}")
elif register["result"] == "already_exists":
await message.channel.send("そのDiscordアカウントはすでに登録されています。")
else:
await message.channel.send("DiscordのユーザーIDが不正です。")
else:
await message.channel.send("なんでかわからんけど不正です。")
2024-06-04 22:53:31 +09:00
config_dir_path = "./config/"
2024-06-04 19:53:24 +09:00
db_config_path = config_dir_path + "db.json"
if not os.path.isfile(db_config_path):
if not os.path.isdir(config_dir_path):
os.mkdir(config_dir_path)
2024-06-04 09:36:29 +09:00
2024-06-04 19:53:24 +09:00
db_config = {
"host": "localhost",
"db": "dislocker",
"username": "user",
2024-06-04 22:53:31 +09:00
"password": "example_pass",
"port": "5432"
2024-06-04 19:53:24 +09:00
}
with open(db_config_path, "w") as w:
json.dump(db_config, w, indent=4)
elif os.path.isfile(db_config_path):
with open(db_config_path, "r") as r:
db_config = json.load(r)
2024-06-04 09:36:29 +09:00
2024-06-04 19:53:24 +09:00
bot_config_path = config_dir_path + "bot.json"
2024-06-04 09:36:29 +09:00
if not os.path.isfile(bot_config_path):
2024-06-04 19:53:24 +09:00
if not os.path.isdir(config_dir_path):
os.mkdir(config_dir_path)
2024-06-04 09:36:29 +09:00
bot_config = {
2024-06-07 12:29:49 +09:00
"token": "TYPE HERE BOTS TOKEN KEY",
"log_channel_id" : "TYPE HERE CHANNEL ID",
"config_channel_id": "TYPE HERE CHANNEL ID"
2024-06-04 09:36:29 +09:00
}
with open(bot_config_path, "w") as w:
json.dump(bot_config, w, indent=4)
elif os.path.isfile(bot_config_path):
2024-06-04 19:53:24 +09:00
with open(bot_config_path, "r") as r:
2024-06-04 09:36:29 +09:00
bot_config = json.load(r)
intents = discord.Intents.default()
intents.message_content = True
bot = Bot(intents=intents)
bot.db_connect(db_config["host"], db_config["db"], db_config["port"], db_config["username"], db_config["password"])
2024-06-04 09:36:29 +09:00
bot.run(bot_config["token"])