-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
79 lines (63 loc) · 2.61 KB
/
main.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
import os
from dotenv import load_dotenv
from wakeonlan import send_magic_packet
import discord
import pings
import paramiko
# .envファイルの内容を読み込見込む
load_dotenv()
HOSTNAME = os.environ["SSH"]
USERNAME = os.environ["RUSERNAME"]
PASSWORD = os.environ["RPASSWD"]
LINUX_COMMAND1 = f"echo {os.environ['RPASSWD']} | sudo -S shutdown -h now"
LINUX_COMMAND2 = f"echo {os.environ['RPASSWD']} | sudo -S reboot"
intents = discord.Intents.default()
intents.message_content = True
client = discord.Client(intents=intents)
# ログインしたとき
@client.event
async def on_ready():
print(f"{client.user} としてログインしました")
# メッセージ反応
@client.event
async def on_message(message):
if message.author == client.user:
return
# サーバー起動
if message.content.startswith("$サーバーを起動して"):
# Ping
p = pings.Ping()
res = p.ping(os.environ["SSH"])
if res.is_reached():
await message.channel.send("サーバーは既に起動しています")
else:
send_magic_packet(os.environ["WOL"])
await message.channel.send("サーバーを起動しました")
# サーバー停止
if message.content.startswith("$サーバーを停止して"):
with paramiko.SSHClient() as clientp:
try:
clientp = paramiko.SSHClient()
clientp.set_missing_host_key_policy(paramiko.AutoAddPolicy())
clientp.connect(
hostname=HOSTNAME, port=22, username=USERNAME, password=PASSWORD
)
stdin, stdout, stderr = clientp.exec_command(LINUX_COMMAND1)
await message.channel.send("サーバーを停止しました")
except Exception as e:
await message.channel.send(f"エラー!: {e}")
# サーバー再起動
if message.content.startswith("$サーバーを再起動して"):
with paramiko.SSHClient() as clientp:
try:
clientp = paramiko.SSHClient()
clientp.set_missing_host_key_policy(paramiko.AutoAddPolicy())
clientp.connect(
hostname=HOSTNAME, port=22, username=USERNAME, password=PASSWORD
)
stdin, stdout, stderr = clientp.exec_command(LINUX_COMMAND2)
await message.channel.send("サーバーを再起動しました")
except Exception as e:
await message.channel.send(f"エラー!: {e}")
# os.environを用いて環境変数を表示させます
client.run(os.environ["DISTOKEN"])