-
Notifications
You must be signed in to change notification settings - Fork 0
/
aa.py
840 lines (690 loc) · 32.5 KB
/
aa.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
import asyncio
import json
import os
import platform
import psutil
import subprocess
from datetime import datetime, timedelta
from typing import Optional, Dict, List
from fastapi import Body, FastAPI, File, Form, Request, HTTPException, Response, UploadFile, Header, WebSocket
from fastapi.concurrency import run_in_threadpool
from fastapi.responses import JSONResponse, FileResponse, HTMLResponse
from fastapi.templating import Jinja2Templates
from fastapi.staticfiles import StaticFiles
from pathlib import Path
from bingart import BingArt
import websockets # WebSocket server のためのライブラリ
import g4f
import json
import os
import logging
import shutil
import threading
import time
import re
import requests
import base64
from datetime import datetime, timedelta
from collections import defaultdict
from datetime import datetime, timedelta
import g4f.Provider
from g4f.client import AsyncClient
from g4f.Provider import OpenaiChat, Gemini, You, Bing, GeminiProChat, Reka
import uuid
import psutil, socket
import platform
from g4f.cookies import set_cookies, set_cookies_dir, read_cookie_files
from APIandCookes import *
from antibot import check_and_ban, ban_user, unban_user, get_ban_history, get_banned_count # アンチボットシステムの関数をインポート
# 環境変数からパスワードを取得
import os
from dotenv import load_dotenv
from passlib.context import CryptContext
load_dotenv() # .env ファイルから環境変数をロード
server_status = {
"running": True,
"stop_message":""
}
# パスワードハッシュ化の設定
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
ADMIN_PASSWORD_HASH = os.environ.get("ADMIN_PASSWORD_HASH")
cookies_dir = os.path.join(os.path.dirname(__file__), "har")
set_cookies_dir(cookies_dir)
read_cookie_files(cookies_dir)
conversation_histories: Dict[str, List[Dict[str, str]]] = {}
last_prompt = {}
last_comment = {}
conversation_history = {}
start_time = datetime.now()
# ファイルハンドラの設定
handler = logging.FileHandler('console.log')
handler.setLevel(logging.INFO)
# ログファイルをクリアする時間間隔(分)
interval = 30
# 次にログファイルをクリアする時間
next_clear_time = datetime.now() + timedelta(minutes=interval)
with open('cookies.json', 'r') as file:
data = json.load(file)
cookies = {}
for cookie in data:
cookies[cookie["name"]] = cookie["value"]
g4f.debug.logging = True # Enable debug logging
g4f.debug.version_check = False # Disable automatic version checking
logging.basicConfig(level=logging.INFO)
Token = Bing_U
Kiev_cookies = Bing_Kiev
app = FastAPI()
templates = Jinja2Templates.render(directory="templates")
app.mount("/home", StaticFiles(directory="home"), name="home")
# Set up logging to console
logging.basicConfig(level=logging.DEBUG,
format='%(asctime)s %(levelname)s %(message)s',
handlers=[logging.StreamHandler()])
def cleanup_directories(root_dir, delay):
while True:
now = time.time()
for dir in Path(root_dir).iterdir():
if dir.is_dir() and re.match(r'^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$', dir.name) and now - dir.stat().st_mtime > delay:
shutil.rmtree(dir)
time.sleep(delay)
# Start the cleanup task in a separate thread
threading.Thread(target=cleanup_directories, args=('.', 5*60)).start()
def read_server_status():
"""loads.jsonからサーバーのステータスを読み込みます。"""
global server_status
try:
with open(os.path.join(os.path.dirname(__file__), "loads.json"), 'r', encoding='utf-8') as f:
server_status = json.load(f)
except FileNotFoundError:
raise HTTPException(status_code=404, detail="ファイル 'loads.json' が見つかりません。")
except json.JSONDecodeError:
raise HTTPException(status_code=400, detail="ファイル 'loads.json' のJSON形式が正しくありません。")
read_server_status()
@app.get('/')
def home(request: Request):
templates = Jinja2Templates(directory="templates")
return templates.TemplateResponse("index.html", {"request": request})
geminis = {}
@app.get('/ask')
async def ask(request: Request):
if not server_status["running"]:
return JSONResponse(content={"response": server_status["message"]}) # 停止メッセージを返す
text = request.query_params.get('text')
user_id = request.query_params.get('user_id') or request.client.host
if not text:
return JSONResponse(content={"response": "No question asked"}, status_code=200)
# 同じコメントが繰り返し使われていないかチェック
if user_id in last_comment and text == last_comment[user_id]:
return JSONResponse(content={"response": "同じコメントは連続して使用できません"}, status_code=400)
# 最後のコメントを更新
last_comment[user_id] = text
# アンチボットシステムでユーザーをチェック
is_banned, reason = check_and_ban(user_id, request) # antibot.py の関数を呼び出す
if is_banned:
return JSONResponse(content={"response": reason}, status_code=429)
messages = [{"role": "user", "content": text}]
try:
client = AsyncClient(
provider=g4f.Provider.HuggingChat,
cookies=set_cookies_dir(cookies_dir),
)
response = await client.chat.completions.create(
model="CohereForAI/c4ai-command-r-plus",
messages=messages,
)
except Exception as e:
logging.error(f"Error occurred: {str(e)}")
# If the ask function fails, return an error message
response_error = f"(追記:6/11時点Response 500が返されるというエラーが起きています)HuggingChatプロバイダーでエラーが発生しましたエラー内容:"
return JSONResponse(content={"response": response_error + str(e)}, status_code=500)
try:
ai_response = response.choices[0].message.content
remove_string = "\u0000"
clean_response = ai_response.replace(remove_string, "")
decoded_response = json.loads(json.dumps(ai_response))
except json.decoder.JSONDecodeError:
error_message = "Invalid JSON response"
logging.error(f"{error_message}: {ai_response}")
return JSONResponse(content={"error": error_message}, status_code=500)
return JSONResponse(content={"response": decoded_response}, status_code=200)
async def geminipro(user_id: str, prompt: str):
# ユーザー識別子がなければUUIDで新たに作成
if not user_id:
user_id = str(uuid.uuid4())
# ユーザー識別子に対応する会話履歴を取得、なければ新たに作成
conversation_history = conversation_histories.get(user_id, [])
# ユーザーのメッセージを会話履歴に追加
conversation_history.append({"role": "user", "content": prompt})
# 最新の5つのメッセージのみを保持
conversation_history = conversation_history[-5:]
conversation_histories[user_id] = conversation_history
try:
client = AsyncClient(
provider=GeminiProChat,
#api_key=read_cookie_files(cookies_dir), # 正しい関数名に修正
)
response = await client.chat.completions.create(
model="default",
messages=conversation_history,
)
return response.choices[0].message.content # 正常な応答を返す
except Exception as e:
logging.error(f"Error occurred: {str(e)}")
return "GeminiProのプロバイダーでエラーが発生しました。何度も起きる場合はServerERRORのため管理者に連絡してください。" # エラーメッセージを返す
# 会話履歴を保持する辞書は関数の外で定義
async def chat_with_OpenAI(user_id: str, prompt: str):
# ユーザー識別子がなければUUIDで新たに作成
if not user_id:
user_id = str(uuid.uuid4())
# ユーザー識別子に対応する会話履歴を取得、なければ新たに作成
conversation_history = conversation_histories.get(user_id, [])
# ユーザーのメッセージを会話履歴に追加
conversation_history.append({"role": "user", "content": prompt})
# 最新の5つのメッセージのみを保持
conversation_history = conversation_history[-5:]
conversation_histories[user_id] = conversation_history
try:
client = AsyncClient(
provider=g4f.Provider.OpenaiChat,
api_key=read_cookie_files(cookies_dir), # 正しい関数名に修正
)
response = await client.chat.completions.create(
model="auto",
messages=conversation_history,
)
return response.choices[0].message.content # 正常な応答を返す
except Exception as e:
logging.error(f"Error occurred: {str(e)}")
return "OpenAIのプロバイダーでエラーが発生しました。何度も起きる場合はServerERRORのため管理者に連絡してください。" # エラーメッセージを返す
chatlist = {} # 全ユーザーの会話履歴を保存する辞書
async def g4f_gemini(user_id: str, prompt: str):
# ユーザー識別子がなければUUIDで新たに作成
if not user_id:
user_id = str(uuid.uuid4())
try:
client = AsyncClient(
provider=Gemini,
api_key=read_cookie_files(cookies_dir),
)
response = await client.chat.completions.create(
model="gemini",
messages=[{"role": "user", "content": prompt}],
)
return response.choices[0].message.content # 正常な応答を返す
except Exception as e:
logging.error(f"Error occurred: {str(e)}")
return f"Geminiプロバイダーでエラーが発生しました: 何度も起きる場合はServerERRORの為管理者に連絡してください" # エラーメッセージを返す
async def reka_core(user_id: str, prompt: str):
if not user_id:
user_id = str(uuid.uuid4())
try:
client = AsyncClient(
provider=Reka,
api_key=read_cookie_files(cookies_dir),
)
response = await client.chat.completions.create(
model="reka",
messages=[{"role": "user", "content": prompt}],
)
ai_response = response.choices[0].message.content
remove_string = ["(Translation:", "<sep"]
clean_response = ai_response
for string in remove_string:
clean_response = clean_response.split(string, 1)[0]
return clean_response
except Exception as e:
logging.error(f"Error occurred: {str(e)}")
return f"Bingプロバイダーでエラーが発生しました: 何度も起きる場合はServerERRORの為管理者に連絡してください" # エラーメッセージを返す
async def lianocloud(user_id: str, prompt: str, system: str):
if not user_id:
user_id = str(uuid.uuid4())
try:
client = AsyncClient(
provider=g4f.Provider.Liaobots,
auth=Li_auth,
)
response = await client.chat.completions.create(
model="claude-3-opus-20240229",
systemPrompt=system,
messages=[{"role": "user", "content": prompt}],
)
return response.choices[0].message.content
except Exception as e:
logging.error(f"Error occurred: {str(e)}")
return f"Liaobotsプロバイダーでエラーが発生しました: 何度も起きる場合はServerERRORの為管理者に連絡してください" # エラーメッセージを返す
AI_prompt = "あなたは有能なAIです"
async def process_chat(provider: str, user_id: str, prompt: str, system: str = AI_prompt):
if not server_status["running"]:
return JSONResponse(content={"response": server_status["message"]}) # 停止メッセージを返す
if provider == 'OpenAI':
response = await chat_with_OpenAI(user_id, prompt)
elif provider == 'Gemini':
response = await g4f_gemini(user_id, prompt)
elif provider == 'GeminiPro':
response = await geminipro(user_id, prompt)
elif provider == 'Reka':
response = await reka_core(user_id, prompt)
elif provider == "Claude3":
response = await lianocloud(user_id, prompt, system)
else:
return JSONResponse(content={"error": "Invalid provider specified"}, status_code=400)
return JSONResponse(content={"response": response})
@app.get("/chat")
async def chat(request: Request, provider: str, prompt: str, system: str = AI_prompt):
user_id = request.query_params.get('user_id') or request.client.host
if not user_id:
user_id = str(uuid.uuid4())
if not prompt:
return JSONResponse(content={"response": "No question asked"}, status_code=200)
if not system:
system = AI_prompt
# 同じコメントが繰り返し使われていないかチェック
if user_id in last_comment and prompt == last_comment[user_id]:
return JSONResponse(content={"response": "同じコメントは連続して使用できません"}, status_code=400)
# 最後のコメントを更新
last_comment[user_id] = prompt
# アンチボットシステムでユーザーをチェック
is_banned, reason = check_and_ban(user_id, request) # antibot.py の関数を呼び出す
if is_banned:
return JSONResponse(content={"response": reason}, status_code=429)
return await process_chat(provider, user_id, prompt, system)
@app.get("/generate_image")
async def generate_image(request: Request, prompt: Optional[str] = None):
user_id = request.query_params.get('user_id') or request.client.host
if not prompt:
return JSONResponse(content={"response": "No question asked"}, status_code=200)
# 同じコメントが繰り返し使われていないかチェック
if user_id in last_prompt and prompt == last_prompt[user_id]:
return JSONResponse(content={"response": "同じコメントは連続して使用できません"}, status_code=400)
if not server_status["running"]:
return JSONResponse(content={"response": server_status["message"]}) # 停止メッセージを返す
# 最後のコメントを更新
last_prompt[user_id] = prompt
# アンチボットシステムでユーザーをチェック
is_banned, reason = check_and_ban(user_id, request) # antibot.py の関数を呼び出す
if is_banned:
return JSONResponse(content={"response": reason}, status_code=429)
# Ensure a prompt was provided
if prompt is None:
return JSONResponse(content={"error": "No prompt provided"}, status_code=400)
bing_art = BingArt(auth_cookie_U=Token, auth_cookie_KievRPSSecAuth=Kiev_cookies)
results = bing_art.generate_images(prompt)
# 画像URLをbase64に変換
images_base64 = []
for image in results['images']:
response = requests.get(image['url'])
image_base64 = base64.b64encode(response.content).decode('utf-8')
images_base64.append(image_base64)
# base64に変換した画像を含むJSONを返す
return JSONResponse(content={"images": images_base64})
def clear_log():
global next_clear_time
# 現在の時間が次のクリア時間を超えていたらログファイルをクリア
if datetime.now() >= next_clear_time:
with open('console.log', 'w') as f:
f.truncate(0)
next_clear_time = datetime.now() + timedelta(minutes=interval)
def execute_command(command):
"""コマンドを実行し、結果をconsole.logに保存します。"""
result = os.popen(command).read() # コマンドを実行し、結果を取得します
with open('console.log', 'a') as f:
f.write(result) # 結果をconsole.logに保存します
def show_status():
"""サーバーの状態情報を取得します。"""
# CPU使用率を取得
cpu_usage = psutil.cpu_percent(interval=1)
# メモリ使用率を取得
memory_usage = psutil.virtual_memory().percent
# 起動時間を取得
boot_time = datetime.fromtimestamp(psutil.boot_time()).strftime("%Y-%m-%d %H:%M:%S")
# OSバージョンを取得
os_version = platform.system() + " " + platform.release()
# Pythonバージョンを取得
python_version = platform.python_version()
# グローバルIPアドレスを取得
global_ip = socket.gethostbyname(socket.gethostname())
# ディスク使用率を取得
disk_usage = psutil.disk_usage('/').percent
# ネットワーク情報を取得
net_info = psutil.net_io_counters()
# 状態情報を辞書として保存
status_info = {
"CPU使用率": f"{cpu_usage}%",
"メモリ使用率": f"{memory_usage}%",
"ディスク使用率": f"{disk_usage}%",
"ネットワーク情報": net_info._asdict(), # NamedTuple を辞書に変換
"時間": boot_time,
"OS": os_version,
"Pythonバージョン": python_version,
"グローバルIPアドレス": global_ip,
"stop_message": server_status.get("stop_message", "") # stop_message を追加
}
return status_info # 状態情報をJSON形式で直接返す
def check_files():
"""現在のディレクトリのファイル一覧を取得します。"""
directory = os.getcwd()
files = os.listdir(directory)
return json.dumps(files, ensure_ascii=False)
def change_name(old_name: str, new_name: str):
"""ファイルまたはフォルダの名前を変更します。"""
if os.path.splitext(old_name)[1] != os.path.splitext(new_name)[1]:
raise HTTPException(status_code=400, detail="拡張子の変更は許可されていません")
os.rename(old_name, new_name)
def restart_server():
"""FastAPI を再起動します。"""
subprocess.run(['python', 'beta.py'], check=True)
return {"message": "FastAPI を再起動しました。"}
def shutdown_server():
"""FastAPI を停止します。"""
return {"message": "FastAPI を停止します。"} # 実行中のプロセスを終了
async def get_processes():
"""実行中のプロセス一覧を取得します。"""
if platform.system() == "Windows":
process = subprocess.run(['tasklist'], capture_output=True, text=True)
else: # Ubuntu などの Linux 環境を想定
process = subprocess.run(['ps', 'aux'], capture_output=True, text=True)
return {"processes": process.stdout}
@app.get("/check")
async def check_device(request: Request):
client_host = request.client.host
headers = request.headers
return {"client_host": client_host, "headers": headers}
@app.post("/admin")
async def admin_console(request: Request, command: str = Form(None), rename: Dict[str, str] = Form(None),show: str = Form(None)):
"""管理者用コンソールコマンド処理(パスワード認証が必要な操作のみ)"""
form = await request.json() # JSONデータを取得
password = form.get("password")
print(password)
if pwd_context.verify(password, ADMIN_PASSWORD_HASH):
# コマンドの実行
if command:
return execute_and_log_command(command)
# ファイル/フォルダの名前変更
elif rename:
return rename_file_or_folder(rename["old_name"], rename["new_name"])
# ファイルの表示
elif show:
return show_file(show)
# コンソールログの表示
else:
return get_console_log()
else:
raise HTTPException(status_code=401, detail="Unauthorized")
def execute_and_log_command(command: str) -> dict:
"""コマンドを実行し、結果をconsole.logに保存します。"""
result = os.popen(command).read()
with open('console.log', 'a') as f:
f.write(result)
return {"message": f"コマンド '{command}' を実行しました。"}
def rename_file_or_folder(old_name: str, new_name: str) -> dict:
"""ファイルまたはフォルダの名前を変更します。"""
if os.path.splitext(old_name)[1] != os.path.splitext(new_name)[1]:
raise HTTPException(status_code=400, detail="拡張子の変更は許可されていません")
os.rename(old_name, new_name)
return {"message": f"{old_name} を {new_name} に変更しました。"}
def show_file(file_name: str) -> str:
"""ファイルを読み込み、内容を文字列として返します。"""
file_path = os.path.join(os.path.dirname(__file__), file_name)
if os.path.exists(file_path):
with open(file_path, 'r', encoding='utf-8') as f:
return f.read()
else:
return {"error": "指定されたファイルは存在しません。"}
def get_console_log():
"""コンソールログを表示します。"""
with open('console.log', 'r') as f:
console_log = f.readlines()
return {"console_log": console_log}
def read_json_file(file_name):
"""JSONファイルを読み込みます。"""
file_path = os.path.join(os.path.dirname(__file__), file_name) # ファイルパスを生成
try:
with open(file_path, 'r', encoding='utf-8') as f:
data = json.load(f)
return data
except FileNotFoundError:
raise HTTPException(status_code=404, detail=f"ファイル '{file_name}' が見つかりません。")
except json.JSONDecodeError:
raise HTTPException(status_code=400, detail=f"ファイル '{file_name}' のJSON形式が正しくありません。")
def write_json_file(file_name, data):
"""JSONファイルを書き込みます。"""
file_path = os.path.join(os.path.dirname(__file__), file_name) # ファイルパスを生成
try:
with open(file_path, 'w', encoding='utf-8') as f:
json.dump(data, f, indent=4, ensure_ascii=False)
except Exception as e:
raise HTTPException(status_code=500, detail=f"ファイル '{file_name}' への書き込み中にエラーが発生しました: {str(e)}")
# 接続中のWebSocketクライアント
connected_clients = set()
@app.get("/antibot")
async def antibot_page(request: Request):
return templates.TemplateResponse("antibot.html", {"request": request})
@app.websocket("/ws")
async def websocket_endpoint(websocket: WebSocket):
await websocket.accept()
await handler(websocket)
async def handler(websocket: WebSocket):
"""WebSocket接続時の処理"""
connected_clients.add(websocket)
try:
while True:
data = await websocket.receive_json()
command = data.get("command")
if command == "get_server_status":
status_info = show_status()
await send_message(websocket, {
"type": "server_status",
"data": status_info
})
elif command == "get_processes":
processes = await get_processes()
await send_message(websocket, {
"type": "processes",
"data": processes
})
elif command == "get_console_log":
console_log = get_console_log()
await send_message(websocket, {
"type": "console_log",
"data": console_log
})
elif command == "execute_command":
command_to_execute = data.get("command_to_execute")
if command_to_execute:
result = execute_and_log_command(command_to_execute)
await send_message(websocket, {
"type": "command_result",
"data": result
})
elif command == "get_resources":
resources = await get_system_resources_async() # get_system_resources を非同期で実行
await send_message(websocket, {
"type": "resources",
"data": resources
})
# ... 他のコマンド処理 ...
finally:
connected_clients.remove(websocket)
async def send_message(websocket: WebSocket, message: dict):
"""指定されたクライアントにメッセージを送信"""
try:
await websocket.send_text(json.dumps(message))
except websockets.exceptions.ConnectionClosed:
pass
@app.post("/admin/status")
async def admin_status(request: Request):
"""サーバーの稼働状態とステータス情報を返します。"""
form = await request.json()
password = form.get("password")
if pwd_context.verify(password, ADMIN_PASSWORD_HASH):
if server_status["running"]:
return show_status() # サーバー稼働中の場合、ステータス情報を返す
else:
return JSONResponse(content={"message": server_status["stop_message"]}) # 停止中の場合、停止メッセージを返す
else:
raise HTTPException(status_code=401, detail="Unauthorized") # 認証失敗
@app.post("/admin/processes")
async def admin_processes(request: Request):
form = await request.json()
password = form.get("password")
if pwd_context.verify(password, ADMIN_PASSWORD_HASH):
# 非同期関数としてget_processesを呼び出す
return await get_processes()
else:
raise HTTPException(status_code=401, detail="Unauthorized")
@app.post("/admin/restart")
async def admin_restart(request: Request):
form = await request.json()
password = form.get("password")
if pwd_context.verify(password, ADMIN_PASSWORD_HASH):
# サーバーを再起動する代わりに、別のプロセスで実行する
# 例:`uvicorn main:app --reload`
subprocess.Popen(['python', 'beta.py'], close_fds=True) # 独立したプロセスで実行
return {"message": "FastAPI を再起動しました。"}
else:
raise HTTPException(status_code=401, detail="Unauthorized")
@app.post("/admin/shutdown")
async def admin_shutdown(request: Request):
form = await request.json()
password = form.get("password")
if pwd_context.verify(password, ADMIN_PASSWORD_HASH):
# サーバーを停止する代わりに、現在のプロセスを終了する
# 例:`sys.exit(0)`
# 適切な方法でプロセスを終了する必要がある
os._exit(0) # 現在のプロセスを終了
else:
raise HTTPException(status_code=401, detail="Unauthorized")
@app.post("/admin/update_json")
async def update_json(request: Request):
"""JSONファイルを更新します。"""
form = await request.json() # showfile 関数と同様に JSON をパース
password = form.get("password")
file_path = form.get("file_path") # JSON から file_path を取得
data = form.get("data") # JSON から data を取得
if not pwd_context.verify(password, ADMIN_PASSWORD_HASH):
raise HTTPException(status_code=401, detail="Unauthorized")
try:
# JSONファイルを読み込み
file_data = read_json_file(file_path)
# データを更新
file_data.update(data)
# JSONファイルを書き込み
write_json_file(file_path, file_data)
return {"message": f"ファイル '{file_path}' を更新しました。"}
except HTTPException as e:
raise e
except Exception as e:
raise HTTPException(status_code=500, detail=f"JSONファイルの更新中にエラーが発生しました: {str(e)}")
@app.post("/admin/showfile")
async def admin_showfile(request: Request):
"""管理者用ファイル表示(リクエストボディからパスワードを取得)"""
form = await request.json()
file_name = form.get("file_name") # form から file_name を取得
password = form.get("password")
if pwd_context.verify(password, ADMIN_PASSWORD_HASH):
file_content = show_file(file_name)
if isinstance(file_content, dict): # エラーの場合
return JSONResponse(content=file_content)
else:
return Response(content=file_content, media_type="text/plain") # ファイル内容をテキストとして返す
else:
raise HTTPException(status_code=401, detail="Unauthorized")
@app.post("/admin/update_server_status")
async def update_server_status(request: Request, status: str = Form(...)):
"""サーバーのステータスを更新します。"""
form = await request.form()
password = form.get("password")
if not pwd_context.verify(password, ADMIN_PASSWORD_HASH):
raise HTTPException(status_code=401, detail="Unauthorized")
global server_status
if status == "stop":
server_status["running"] = False
# service.json から stop_message を取得
server_status["stop_message"] = read_json_file("service.json").get("stop_message", "サーバーは停止中です。")
elif status == "start":
server_status["running"] = True
server_status["stop_message"] = "" # 稼働中は空文字列
else:
raise HTTPException(status_code=400, detail="無効なステータスです。")
# service.json にサーバーのステータスを書き込む
with open(os.path.join(os.path.dirname(__file__), "service.json"), 'w', encoding='utf-8') as f:
json.dump(server_status, f, indent=4, ensure_ascii=False)
return {"message": f"サーバーのステータスを{status}に更新しました。"}
@app.post("/antibot")
async def antibot_login(password: str = Form(...)):
if pwd_context.verify(password, ADMIN_PASSWORD_HASH):
return {"success": True}
else:
return {"success": False}
@app.post("/antibot/unban")
async def antibot_unban(user_id: str = Form(...)):
unban_user(user_id) # antibot.py の関数を呼び出す
return {"success": True}
@app.get("/antibot/history")
async def antibot_history():
ban_history = get_ban_history() # antibot.py の関数を呼び出す
banned_count = get_banned_count() # antibot.py の関数を呼び出す
return {"banHistory": ban_history, "bannedCount": banned_count}
# get_system_resources を非同期関数として定義
async def get_system_resources_async():
"""システムリソース情報を返します。"""
cpu_usage = psutil.cpu_percent()
memory = psutil.virtual_memory()
memory_usage = memory.percent
return {'cpu_usage': cpu_usage, 'memory_usage': memory_usage}
# FastAPI起動時にWebSocketサーバーも起動
@app.on_event("startup")
async def startup_event():
asyncio.create_task(start_websocket_server())
async def start_websocket_server():
async with websockets.serve(websocket_endpoint, "0.0.0.0", 8000):
print("WebSocket server started on ws://0.0.0.0:8000")
await asyncio.Future() # run forever
async def websocket_endpoint(websocket: WebSocket, path: str):
await websocket.accept()
connected_clients.add(websocket)
try:
while True:
data = await websocket.receive_json()
command = data.get("command")
print(f"Received command: {command}") # デバッグ用に出力
if command == "get_server_status":
status_info = show_status()
await send_message(websocket, {
"type": "server_status",
"data": status_info
})
elif command == "get_processes":
processes = await get_processes()
await send_message(websocket, {
"type": "processes",
"data": processes
})
elif command == "get_console_log":
console_log = get_console_log()
await send_message(websocket, {
"type": "console_log",
"data": console_log
})
elif command == "execute_command":
command_to_execute = data.get("command_to_execute")
if command_to_execute:
result = execute_and_log_command(command_to_execute)
await send_message(websocket, {
"type": "command_result",
"data": result
})
elif command == "get_resources":
resources = await get_system_resources_async()
await send_message(websocket, {
"type": "resources",
"data": resources
})
finally:
connected_clients.remove(websocket)
async def send_message(websocket: WebSocket, message: dict):
"""指定されたクライアントにメッセージを送信"""
try:
await websocket.send_text(json.dumps(message))
except websockets.exceptions.ConnectionClosed:
pass