forked from sandboxdream/AI-Vtuber
-
Notifications
You must be signed in to change notification settings - Fork 460
/
webui.py
7543 lines (6758 loc) · 575 KB
/
webui.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
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from nicegui import ui, app
import sys, os, json, subprocess, importlib, re, threading, signal
import traceback
import time
import asyncio
from urllib.parse import urljoin
from pathlib import Path
# from functools import partial
from utils.my_log import logger
from utils.config import Config
from utils.common import Common
from utils.audio import Audio
"""
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@.:;;;++;;;;:,@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@:;+++++;;++++;;;.@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@:++++;;;;;;;;;;+++;,@@@@@@@@@@@@@@@@@
@@@@@@@@@@@.;+++;;;;;;;;;;;;;;++;:@@@@@@@@@@@@@@@@
@@@@@@@@@@;+++;;;;;;;;;;;;;;;;;;++;:@@@@@@@@@@@@@@
@@@@@@@@@:+++;;;;;;;;;;;;;;;;;;;;++;.@@@@@@@@@@@@@
@@@@@@@@;;+;;;;;;;;;;;;;;;;;;;;;;;++:@@@@@@@@@@@@@
@@@@@@@@;+;;;;:::;;;;;;;;;;;;;;;;:;+;,@@@@@@@@@@@@
@@@@@@@:+;;:;;:::;:;;:;;;;::;;:;:::;+;.@@@@@@@@@@@
@@@@@@.;+;::;:,:;:;;+:++:;:::+;:::::++:+@@@@@@@@@@
@@@@@@:+;;:;;:::;;;+%;*?;;:,:;*;;;;:;+;:@@@@@@@@@@
@@@@@@;;;+;;+;:;;;+??;*?++;,:;+++;;;:++:@@@@@@@@@@
@@@@@.++*+;;+;;;;+?;?**??+;:;;+.:+;;;;+;;@@@@@@@@@
@@@@@,+;;;;*++*;+?+;**;:?*;;;;*:,+;;;;+;,@@@@@@@@@
@@@@@,:,+;+?+?++?+;,?#%*??+;;;*;;:+;;;;+:@@@@@@@@@
@@@@@@@:+;*?+?#%;;,,?###@#+;;;*;;,+;;;;+:@@@@@@@@@
@@@@@@@;+;??+%#%;,,,;SSS#S*+++*;..:+;?;+;@@@@@@@@@
@@@@@@@:+**?*?SS,,,,,S#S#+***?*;..;?;**+;@@@@@@@@@
@@@@@@@:+*??*??S,,,,,*%SS+???%++;***;+;;;.@@@@@@@@
@@@@@@@:*?*;*+;%:,,,,;?S?+%%S?%+,:?;+:,,,@@@@@@@@
@@@@@@@,*?,;+;+S:,,,,%?+;S%S%++:+??+:,,,:@@@@@@@@
@@@@@@@,:,@;::;+,,,,,+?%*+S%#?*???*;,,,,,.@@@@@@@@
@@@@@@@@:;,::;;:,,,,,,,,,?SS#??*?+,.,,,:,@@@@@@@@@
@@@@@@;;+;;+:,:%?%*;,,,,SS#%*??%,.,,,,,:@@@@@@@@@
@@@@@.+++,++:;???%S?%;.+#####??;.,,,,,,:@@@@@@@@@
@@@@@:++::??+S#??%#??S%?#@#S*+?*,,,,,,:,@@@@@@@@@@
@@@@@:;;:*?;+%#%?S#??%SS%+#%..;+:,,,,,,@@@@@@@@@@@
@@@@@@,,*S*;?SS?%##%?S#?,.:#+,,+:,,,,,,@@@@@@@@@@@
@@@@@@@;%?%#%?*S##??##?,..*#,,+:,,;*;.@@@@@@@@@@@
@@@@@@.*%??#S*?S#@###%;:*,.:#:,+;:;*+:@@@@@@@@@@@@
@@@@@@,%S??SS%##@@#%S+..;;.,#*;???*?+++:@@@@@@@@@@
@@@@@@:S%??%####@@S,,*,.;*;+#*;+?%??#S%+.@@@@@@@@@
@@@@@@:%???%@###@@?,,:**S##S*;.,%S?;+*?+.,..@@@@@@
@@@@@@;%??%#@###@@#:.;@@#@%%,.,%S*;++*++++;.@@@@@
@@@@@@,%S?S@@###@@@%+#@@#@?;,.:?;??++?%?***+.@@@@@
@@@@@@.*S?S####@@####@@##@?..:*,+:??**%+;;;;..@@@@
@@@@@@:+%?%####@@####@@#@%;:.;;:,+;?**;++;,:;:,@@@
@@@@@@;;*%?%@##@@@###@#S#*:;*+,;.+***?******+:.@@@
@@@@@@:;:??%@###%##@#%++;+*:+;,:;+%?*;+++++;:.@@@@
@@@@@@.+;:?%@@#%;+S*;;,:::**+,;:%??*+.@....@@@@@@@
@@@@@@@;*::?#S#S+;,..,:,;:?+?++*%?+::@@@@@@@@@@@@@
@@@@@@@.+*+++?%S++...,;:***??+;++:.@@@@@@@@@@@@@@@
@@@@@@@@:::..,;+*+;;+*?**+;;;+;:.@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@,+*++;;:,..@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@::,.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
"""
"""
全局变量
"""
user_info = None
# 创建一个全局变量,用于表示程序是否正在运行
running_flag = False
# 定义一个标志变量,用来追踪定时器的运行状态
loop_screenshot_timer_running = False
loop_screenshot_timer = None
common = None
config = None
audio = None
my_handle = None
config_path = None
# 存储运行的子进程
my_subprocesses = {}
# 本地启动的web服务,用来加载本地的live2d
web_server_port = 12345
# 聊天记录计数
scroll_area_chat_box_chat_message_num = 0
# 聊天记录最多保留100条
scroll_area_chat_box_chat_message_max_num = 100
"""
初始化基本配置
"""
def init():
"""
初始化基本配置
"""
global config_path, config, common, audio
common = Common()
if getattr(sys, 'frozen', False):
# 当前是打包后的可执行文件
bundle_dir = Path(getattr(sys, '_MEIPASS', Path(sys.executable).parent))
file_relative_path = bundle_dir.resolve()
else:
# 当前是源代码
file_relative_path = Path(__file__).parent.resolve()
# logger.info(file_relative_path)
# 初始化文件夹
def init_dir():
# 创建日志文件夹
log_dir = file_relative_path / 'log'
# mkdir 方法的 parents=True 参数可以确保父目录的创建(如有必要),exist_ok=True 则避免在目录已存在时抛出异常。
log_dir.mkdir(parents=True, exist_ok=True)
# 创建音频输出文件夹
audio_out_dir = file_relative_path / 'out'
audio_out_dir.mkdir(parents=True, exist_ok=True)
init_dir()
logger.debug("项目相关文件夹初始化完成")
# 配置文件路径
config_path = file_relative_path / 'config.json'
config_path = str(config_path)
logger.debug("配置文件路径=" + str(config_path))
# 实例化音频类
audio = Audio(config_path, type=2)
# 实例化配置类
config = Config(config_path)
# 初始化基本配置
init()
# 将本地目录中的静态文件(如 CSS、JavaScript、图片等)暴露给 web 服务器,以便用户可以通过特定的 URL 访问这些文件。
if config.get("webui", "local_dir_to_endpoint", "enable"):
for tmp in config.get("webui", "local_dir_to_endpoint", "config"):
app.add_static_files(tmp['url_path'], tmp['local_dir'])
# 暗夜模式
dark = ui.dark_mode()
"""
通用函数
"""
def textarea_data_change(data):
"""
字符串数组数据格式转换
"""
tmp_str = ""
if data is not None:
for tmp in data:
tmp_str = tmp_str + tmp + "\n"
return tmp_str
"""
.@@@@@ @@@@@.
.@@@@@ @@@@@.
]]]]] .]]]]` .]]]]` ,]@@@@@\` .@@@@@,/@@@\` .]]]]] ]]]]]` ]]]]].
=@@@@^ =@@@@@` =@@@@. =@@@@@@@@@@@\ .@@@@@@@@@@@@@ *@@@@@ @@@@@^ @@@@@.
=@@@@ ,@@@@@@@ .@@@@` =@@@@^ =@@@@^ .@@@@@` =@@@@^ *@@@@@ @@@@@^ @@@@@.
@@@@^@@@@\@@@^=@@@^ @@@@@@@@@@@@@@@ .@@@@@ =@@@@@ *@@@@@ @@@@@^ @@@@@.
,@@@@@@@^ \@@@@@@@ =@@@@^ .@@@@@. =@@@@^ *@@@@@ .@@@@@^ @@@@@.
=@@@@@@ .@@@@@@. \@@@@@]/@@@@@` .@@@@@@]/@@@@@. .@@@@@@@@@@@@@^ @@@@@.
\@@@@` =@@@@^ ,\@@@@@@@@[ .@@@@^\@@@@@[ .\@@@@@[=@@@@^ @@@@@.
"""
# 配置
webui_ip = config.get("webui", "ip")
webui_port = config.get("webui", "port")
webui_title = config.get("webui", "title")
# CSS
theme_choose = config.get("webui", "theme", "choose")
tab_panel_css = config.get("webui", "theme", "list", theme_choose, "tab_panel")
card_css = config.get("webui", "theme", "list", theme_choose, "card")
button_bottom_css = config.get("webui", "theme", "list", theme_choose, "button_bottom")
button_bottom_color = config.get("webui", "theme", "list", theme_choose, "button_bottom_color")
button_internal_css = config.get("webui", "theme", "list", theme_choose, "button_internal")
button_internal_color = config.get("webui", "theme", "list", theme_choose, "button_internal_color")
switch_internal_css = config.get("webui", "theme", "list", theme_choose, "switch_internal")
echart_css = config.get("webui", "theme", "list", theme_choose, "echart")
def goto_func_page():
"""
跳转到功能页
"""
global audio, my_subprocesses, config
# 过期时间
expiration_ts = None
def start_programs():
"""根据配置启动所有程序。
"""
global config
for program in config.get("coordination_program"):
if not program["enable"]:
continue
name = program["name"]
executable = program["executable"] # Python 解释器的路径
app_path = program["parameters"][0] # 假设第一个参数总是 app.py 的路径
# 从 app.py 的路径中提取目录
app_dir = os.path.dirname(app_path)
# 使用 Python 解释器路径和 app.py 路径构建命令
cmd = [executable, app_path]
logger.info(f"运行程序: {name} 位于: {app_dir}")
# 在 app.py 文件所在的目录中启动程序
process = subprocess.Popen(cmd, cwd=app_dir, shell=True)
my_subprocesses[name] = process
name = "main"
# 根据操作系统的不同,微调参数
if common.detect_os() in ['Linux', 'MacOS']:
process = subprocess.Popen(["python", f"main.py"], shell=False)
else:
process = subprocess.Popen(["python", f"main.py"], shell=True)
my_subprocesses[name] = process
logger.info(f"运行程序: {name}")
def stop_program(name):
"""停止一个正在运行的程序及其所有子进程,兼容 Windows、Linux 和 macOS。
Args:
name (str): 要停止的程序的名称。
"""
if name in my_subprocesses:
pid = my_subprocesses[name].pid # 获取进程ID
logger.info(f"停止程序和它所有的子进程: {name} with PID {pid}")
try:
if os.name == 'nt': # Windows
command = ["taskkill", "/F", "/T", "/PID", str(pid)]
subprocess.run(command, check=True)
else: # POSIX系统,如Linux和macOS
os.killpg(os.getpgid(pid), signal.SIGKILL)
logger.info(f"程序 {name} 和 它所有的子进程都被终止.")
except Exception as e:
logger.error(f"终止程序 {name} 失败: {e}")
del my_subprocesses[name] # 从进程字典中移除
else:
logger.warning(f"程序 {name} 没有在运行.")
def stop_programs():
"""根据配置停止所有程序。
"""
global config
for program in config.get("coordination_program"):
if not program["enable"]:
continue
stop_program(program["name"])
stop_program("main")
def check_expiration():
try:
import requests
API_URL = urljoin(config.get("login", "ums_api"), '/auth/check_expiration')
if user_info is None:
ui.notify(position="top", type="negative", message=f"账号登录信息失效,请重新登录")
stop_programs()
return False
if "accessToken" not in user_info:
ui.notify(position="top", type="negative", message=f"账号登录信息失效,请重新登录")
stop_programs()
return False
headers = {
"Authorization": "Bearer " + user_info["accessToken"]
}
# 发送 POST 请求
response = requests.post(API_URL, headers=headers)
# 判断状态码
if response.status_code == 200:
resp_json = response.json()
if resp_json["code"] == 0 and resp_json["success"]:
remainder = common.time_difference_in_seconds(resp_json["data"]["expiration_ts"])
logger.info(f'账号可用,过期时间:{resp_json["data"]["expiration_ts"]}')
return True
else:
remainder = common.time_difference_in_seconds(resp_json["data"]["expiration_ts"])
ui.notify(position="top", type="negative", message=f'账号过期时间:{resp_json["data"]["expiration_ts"]},已过期:{remainder}秒,请联系管理员续费')
logger.error(f'账号过期时间:{resp_json["data"]["expiration_ts"]},已过期:{remainder}秒,请联系管理员续费')
stop_programs()
return False
# elif response.status_code == 401:
# ui.notify(position="top", type="negative", message=f"账号已到期,请联系管理员续费")
# logger.error(f"账号已到期,请联系管理员续费")
# stop_programs()
# return False
else:
logger.error(f"自检异常!")
return False
except Exception as e:
ui.notify(position="top", type="negative", message=f"错误:{e}")
logger.error(traceback.format_exc())
return False
if config.get("login", "enable"):
# 十分钟一次的检测
ui.timer(600.0, lambda: check_expiration())
"""
=@@^ ,@@@^ .@@@. ..... =@@. ]@\ ,]]]]]]]]]]]]]]]. .]]]]]]]]]]]]]]]]]]]] ,]]]]]]]]]]]]]]]]]` ,/. @@@^ /] ,@@@.
=@@^ .@@@@@@@@@@@@@@^ /@@\]]@@@@@=@@@@@@@@@. \@@@`=@@@@@@@@@@@@@@@. .@@@@@@@@@@@@@@@@@@@@ =@@@@@@@@@@@@@@@@@^ .\@@^@@@\@@@`.@@@^
@@@@@@@^@@@@@@@@@@@@@@^ =@@@@@^ =@@\]]]/@@]]@@]. =@/`=@@^ .@@@ .@@@. .@@@^ @@@^ =@@@ ,/@@@@/` =@@@@@@@@@@@^=@@@@@@@@@.
@@@@@@@^@@@^@@\` =@@^.@@@]]]`=@@^=@@@@@@@@@@@.]]]]` =@@^=@@@@@@@^@@@. .@@@\]]]]@@@\]]]]/@@@ @@@\/@\..@@@@[./@/@@@. ,[[\@@@@/[[[\@@@`..@@@`
=@@^ ,]]]/@@@]]]]]]]].\@@@@@^@@@OO=@@@@@@@@@..@@@@^ =@@^]]]@@@]]`@@@. .@@@@@@@@@@@@@@@@@@@@ @@@^=@@@^@@@^/@@@\@@@..]@@@@@@@@@@]@@@@^ .@@@.
=@@@@=@@@@@@@@@@@@@@@. =@@^ .OO@@@.[[\@@[[[[. =@@^ =@@^@@@@@@@@^@@@. .@@@^ @@@^ =@@@ @@@^ .`,]@@@^`,` =@@@. \@/.]@@@^,@@@@@@\ =@@^
.@@@@@@@. .@@@` /@@/ .@@@@@@@,.=@@=@@@@@@@@@^ =@@^,=@@^=@@@@@@@.@@@. .@@@\]]]]@@@\]]]]/@@@ @@@^]@@@@@@@@@@@]=@@@. ]]]@@@\]]]]] .=@@\@@@.
@@\@@^ .@@@\. /@@@. =@@^ =@\@@^.../@@..... =@@@@=@@^=@@[[\@@.@@@. .@@@@@@@@@@@@@@@@@@@@ @@@@@@/..@@@^,@@@@@@@. O@@@@@@@@@@@ .@@@@@^
=@@^ ,\@@@@@@@@. =@@^/^\@@@`@@@@@@@@@@^ /@@@/@@@`=@@OO@@@.@@@. =@@@` @@@^ =@@@ @@@^ \@@@@@^ .=@@@. .@@@@\`/@@/ /@@@\.
=@@^ ,/@@@@@@@@] =@@@@^/@@@@]` =@@. .\@/.=@@@ =@@[[[[[.@@@. /@@@ @@@^ ./@@@ @@@^.............=@@@. O@@@@@@\`,/@@@@@@@@`
@@@@@^.@@@@@@@/..[@@@@/. ,@@`/@@@`[@@@@@@@@@@@@. /@@@^ =@@@@@@. /@@@^ @@@^,@@@@@@^ @@@@@@@@@@@@@@@@@@@@@..\@@@@@[,\@@\@@@@` ,@@@^
,[[[. .O[[. [` ,/ ...... ,^ .[[[[` ,` .... [[[[` ,[[[. .[. ,/. .`
"""
# 创建一个函数,用于运行外部程序
def run_external_program(config_path="config.json", type="webui"):
global running_flag
if running_flag:
if type == "webui":
ui.notify(position="top", type="warning", message="运行中,请勿重复运行")
return
try:
running_flag = True
# 启动协同程序和主程序
start_programs()
if type == "webui":
ui.notify(position="top", type="positive", message="程序开始运行")
logger.info("程序开始运行")
return {"code": 200, "msg": "程序开始运行"}
except Exception as e:
if type == "webui":
ui.notify(position="top", type="negative", message=f"错误:{e}")
logger.error(traceback.format_exc())
running_flag = False
return {"code": -1, "msg": f"运行失败!{e}"}
# 定义一个函数,用于停止正在运行的程序
def stop_external_program(type="webui"):
global running_flag
if running_flag:
try:
# 停止协同程序
stop_programs()
running_flag = False
if type == "webui":
ui.notify(position="top", type="positive", message="程序已停止")
logger.info("程序已停止")
except Exception as e:
if type == "webui":
ui.notify(position="top", type="negative", message=f"停止错误:{e}")
logger.error(f"停止错误:{e}")
return {"code": -1, "msg": f"重启失败!{e}"}
# 开关灯
def change_light_status(type="webui"):
if dark.value:
button_light.set_text("关灯")
else:
button_light.set_text("开灯")
dark.toggle()
# 重启
def restart_application(type="webui"):
try:
# 先停止运行
stop_external_program(type)
logger.info(f"重启webui")
if type == "webui":
ui.notify(position="top", type="ongoing", message=f"重启中...")
python = sys.executable
os.execl(python, python, *sys.argv) # Start a new instance of the application
except Exception as e:
logger.error(traceback.format_exc())
return {"code": -1, "msg": f"重启失败!{e}"}
# 恢复出厂配置
def factory(src_path='config.json.bak', dst_path='config.json', type="webui"):
# src_path = 'config.json.bak'
# dst_path = 'config.json'
try:
with open(src_path, 'r', encoding="utf-8") as source:
with open(dst_path, 'w', encoding="utf-8") as destination:
destination.write(source.read())
logger.info("恢复出厂配置成功!")
if type == "webui":
ui.notify(position="top", type="positive", message=f"恢复出厂配置成功!")
# 重启
restart_application()
return {"code": 200, "msg": "恢复出厂配置成功!"}
except Exception as e:
logger.error(f"恢复出厂配置失败!\n{e}")
if type == "webui":
ui.notify(position="top", type="negative", message=f"恢复出厂配置失败!\n{e}")
return {"code": -1, "msg": f"恢复出厂配置失败!\n{e}"}
# openai 测试key可用性
def test_openai_key():
data_json = {
"base_url": input_openai_api.value,
"api_keys": textarea_openai_api_key.value,
"model": select_chatgpt_model.value,
"temperature": round(float(input_chatgpt_temperature.value), 1),
"max_tokens": int(input_chatgpt_max_tokens.value),
"top_p": round(float(input_chatgpt_top_p.value), 1),
"presence_penalty": round(float(input_chatgpt_presence_penalty.value), 1),
"frequency_penalty": round(float(input_chatgpt_frequency_penalty.value), 1),
"preset": input_chatgpt_preset.value
}
resp_json = common.test_openai_key(data_json, 2)
if resp_json["code"] == 200:
ui.notify(position="top", type="positive", message=resp_json["msg"])
else:
ui.notify(position="top", type="negative", message=resp_json["msg"])
# GPT-SoVITS加载模型
async def gpt_sovits_set_model():
try:
if select_gpt_sovits_type.value == "v2_api_0821":
async def set_gpt_weights():
try:
API_URL = urljoin(input_gpt_sovits_api_ip_port.value, '/set_gpt_weights?weights_path=' + input_gpt_sovits_gpt_model_path.value)
# logger.debug(API_URL)
resp_json = await common.send_async_request(API_URL, "GET", None, resp_data_type="json")
if resp_json is None:
content = f"gpt_weights:{input_gpt_sovits_gpt_model_path.value} 加载失败,请查看双方日志排查问题"
logger.error(content)
return False
else:
if resp_json["message"] == "success":
content = f"gpt_weights:{input_gpt_sovits_gpt_model_path.value} 加载成功"
logger.info(content)
else:
content = f"gpt_weights:{input_gpt_sovits_gpt_model_path.value} 加载失败,请查看双方日志排查问题"
logger.error(content)
return False
return True
except Exception as e:
logger.error(traceback.format_exc())
logger.error(f'gpt_sovits未知错误: {e}')
return False
async def set_sovits_weights():
try:
API_URL = urljoin(input_gpt_sovits_api_ip_port.value, '/set_sovits_weights?weights_path=' + input_gpt_sovits_sovits_model_path.value)
resp_json = await common.send_async_request(API_URL, "GET", None, resp_data_type="json")
if resp_json is None:
content = f"sovits_weights:{input_gpt_sovits_sovits_model_path.value} 加载失败,请查看双方日志排查问题"
logger.error(content)
return False
else:
if resp_json["message"] == "success":
content = f"sovits_weights:{input_gpt_sovits_sovits_model_path.value} 加载成功"
logger.info(content)
else:
content = f"sovits_weights:{input_gpt_sovits_sovits_model_path.value} 加载失败,请查看双方日志排查问题"
logger.error(content)
return False
return True
except Exception as e:
logger.error(traceback.format_exc())
logger.error(f'sovits_weights未知错误: {e}')
return False
if await set_gpt_weights() and await set_sovits_weights():
content = "gpt_sovits模型加载成功"
logger.info(content)
ui.notify(position="top", type="positive", message=content)
else:
content = "gpt_sovits模型加载失败,请查看双方日志排查问题"
logger.error(content)
ui.notify(position="top", type="negative", message=content)
else:
API_URL = urljoin(input_gpt_sovits_api_ip_port.value, '/set_model')
data_json = {
"gpt_model_path": input_gpt_sovits_gpt_model_path.value,
"sovits_model_path": input_gpt_sovits_sovits_model_path.value
}
resp_data = await common.send_async_request(API_URL, "POST", data_json, resp_data_type="content")
if resp_data is None:
content = "gpt_sovits加载模型失败,请查看双方日志排查问题"
logger.error(content)
ui.notify(position="top", type="negative", message=content)
else:
content = "gpt_sovits加载模型成功"
logger.info(content)
ui.notify(position="top", type="positive", message=content)
except Exception as e:
logger.error(traceback.format_exc())
logger.error(f'gpt_sovits未知错误: {e}')
ui.notify(position="top", type="negative", message=f'gpt_sovits未知错误: {e}')
# 页面滑到顶部
def scroll_to_top():
# 这段JavaScript代码将页面滚动到顶部
ui.run_javascript("window.scrollTo(0, 0);")
# 显示聊天数据的滚动框
scroll_area_chat_box = None
# 处理数据 显示聊天记录
def data_handle_show_chat_log(data_json):
global scroll_area_chat_box_chat_message_num
if data_json["type"] == "llm":
if data_json["data"]["content_type"] == "question":
name = data_json["data"]['username']
if 'user_face' in data_json["data"]:
# 由于直接请求b站头像返回403 所以暂时还是用默认头像
# avatar = data_json["data"]['user_face']
avatar = 'https://robohash.org/ui'
else:
avatar = 'https://robohash.org/ui'
else:
name = data_json["data"]['type']
avatar = "http://127.0.0.1:8081/favicon.ico"
with scroll_area_chat_box:
ui.chat_message(data_json["data"]["content"],
name=name,
stamp=data_json["data"]["timestamp"],
avatar=avatar
)
scroll_area_chat_box_chat_message_num += 1
if scroll_area_chat_box_chat_message_num > scroll_area_chat_box_chat_message_max_num:
scroll_area_chat_box.remove(0)
scroll_area_chat_box.scroll_to(percent=1, duration=0.2)
"""
/@@@@@@@@ @@@@@@@@@@@@@@@]. =@@@@@@@
=@@@@@@@@@^ @@@@@@@@@@@@@@@@@@` =@@@@@@@
,@@@@@@@@@@@` @@@@@@@@@@@@@@@@@@@^ =@@@@@@@
.@@@@@@\@@@@@@. @@@@@@@^ .\@@@@@@\ =@@@@@@@
/@@@@@/ \@@@@@\ @@@@@@@^ =@@@@@@@ =@@@@@@@
=@@@@@@. .@@@@@@^ @@@@@@@\]]]@@@@@@@@^ =@@@@@@@
,@@@@@@^ =@@@@@@` @@@@@@@@@@@@@@@@@@/ =@@@@@@@
.@@@@@@@@@@@@@@@@@@@. @@@@@@@@@@@@@@@@/` =@@@@@@@
/@@@@@@@@@@@@@@@@@@@\ @@@@@@@^ =@@@@@@@
=@@@@@@@@@@@@@@@@@@@@@^ @@@@@@@^ =@@@@@@@
,@@@@@@@. ,@@@@@@@` @@@@@@@^ =@@@@@@@
@@@@@@@^ =@@@@@@@. @@@@@@@^ =@@@@@@@
"""
from starlette.requests import Request
from utils.models import SendMessage, CommonResult, SysCmdMessage, SetConfigMessage
"""
配置config
config_path (str): 配置文件路径
data (dict): 传入的json
return:
{"code": 200, "message": "成功"}
"""
@app.post('/set_config')
async def set_config(msg: SetConfigMessage):
global config
try:
data_json = msg.dict()
logger.info(f'set_config接口 收到数据:{data_json}')
config_data = None
try:
with open(data_json["config_path"], 'r', encoding="utf-8") as config_file:
config_data = json.load(config_file)
except Exception as e:
logger.error(f"无法读取配置文件!\n{e}")
return CommonResult(code=-1, message=f"无法读取配置文件!{e}")
# 合并字典
config_data.update(data_json["data"])
# 写入配置到配置文件
try:
with open(data_json["config_path"], 'w', encoding="utf-8") as config_file:
json.dump(config_data, config_file, indent=2, ensure_ascii=False)
config_file.flush() # 刷新缓冲区,确保写入立即生效
logger.info("配置数据已成功写入文件!")
return CommonResult(code=200, message="配置数据已成功写入文件!")
except Exception as e:
logger.error(f"无法写入配置文件!\n{str(e)}")
return CommonResult(code=-1, message=f"无法写入配置文件!{e}")
except Exception as e:
logger.error(traceback.format_exc())
return CommonResult(code=-1, message=f"{data_json['type']}执行失败!{e}")
"""
系统命令
type 命令类型(run/stop/restart/factory)
data 传入的json
data_json = {
"type": "命令名",
"data": {
"key": "value"
}
}
return:
{"code": 200, "message": "成功"}
{"code": -1, "message": "失败"}
"""
@app.post('/sys_cmd')
async def sys_cmd(msg: SysCmdMessage):
try:
data_json = msg.dict()
logger.info(f'sys_cmd接口 收到数据:{data_json}')
logger.info(f"开始执行 {data_json['type']}命令...")
resp_json = {}
if data_json['type'] == 'run':
"""
{
"type": "run",
"data": {
"config_path": "config.json"
}
}
"""
# 运行
resp_json = run_external_program(data_json['data']['config_path'], type="api")
elif data_json['type'] =='stop':
"""
{
"type": "stop",
"data": {
"config_path": "config.json"
}
}
"""
# 停止
resp_json = stop_external_program(type="api")
elif data_json['type'] =='restart':
"""
{
"type": "restart",
"api_type": "webui",
"data": {
"config_path": "config.json"
}
}
"""
# 重启
resp_json = restart_application(type=data_json['api_type'])
elif data_json['type'] =='factory':
"""
{
"type": "factory",
"api_type": "webui",
"data": {
"src_path": "config.json.bak",
"dst_path": "config.json"
}
}
"""
# 恢复出厂
resp_json = factory(data_json['data']['src_path'], data_json['data']['dst_path'], type="api")
return resp_json
except Exception as e:
logger.error(traceback.format_exc())
return CommonResult(code=-1, message=f"{data_json['type']}执行失败!{e}")
"""
发送数据
type 数据类型(comment/gift/entrance/reread/tuning/...)
key 根据数据类型自行适配
data_json = {
"type": "数据类型",
"key": "value"
}
return:
{"code": 200, "message": "成功"}
{"code": -1, "message": "失败"}
"""
@app.post('/send')
async def send(msg: SendMessage):
global config
try:
data_json = msg.dict()
logger.info(f'WEBUI API send接口收到数据:{data_json}')
main_api_ip = "127.0.0.1" if config.get("api_ip") == "0.0.0.0" else config.get("api_ip")
resp_json = await common.send_async_request(f'http://{main_api_ip}:{config.get("api_port")}/send', "POST", data_json)
return resp_json
except Exception as e:
logger.error(traceback.format_exc())
return CommonResult(code=-1, message=f"发送数据失败!{e}")
"""
数据回调
data 传入的json
data_json = {
"type": "数据类型(llm)",
"data": {
"type": "LLM类型",
"username": "用户名",
"content_type": "内容的类型(question/answer)",
"content": "回复内容",
"timestamp": "时间戳"
}
}
return:
{"code": 200, "message": "成功"}
{"code": -1, "message": "失败"}
"""
@app.post('/callback')
async def callback(request: Request):
try:
data_json = await request.json()
logger.info(f'WEBUI API callback接口收到数据:{data_json}')
data_handle_show_chat_log(data_json)
return {"code": 200, "message": "成功"}
except Exception as e:
logger.error(traceback.format_exc())
return CommonResult(code=-1, message=f"失败!{e}")
"""
TTS合成,获取合成的音频文件路径
data 传入的json
例如:
data_json = {
"type": "reread",
"tts_type": "gpt_sovits",
"data": {
"type": "api",
"ws_ip_port": "ws://localhost:9872/queue/join",
"api_ip_port": "http://127.0.0.1:9880",
"ref_audio_path": "F:\\GPT-SoVITS\\raws\\ikaros\\21.wav",
"prompt_text": "マスター、どうりょくろか、いいえ、なんでもありません",
"prompt_language": "日文",
"language": "自动识别",
"cut": "凑四句一切",
"gpt_model_path": "F:\\GPT-SoVITS\\GPT_weights\\ikaros-e15.ckpt",
"sovits_model_path": "F:\\GPT-SoVITS\\SoVITS_weights\\ikaros_e8_s280.pth",
"webtts": {
"api_ip_port": "http://127.0.0.1:8080",
"spk": "sanyueqi",
"lang": "zh",
"speed": "1.0",
"emotion": "正常"
}
},
"username": "主人",
"content": "你好,这就是需要合成的文本内容"
}
return:
{
"code": 200,
"message": "成功",
"data": {
"type": "reread",
"tts_type": "gpt_sovits",
"data": {
"type": "api",
"ws_ip_port": "ws://localhost:9872/queue/join",
"api_ip_port": "http://127.0.0.1:9880",
"ref_audio_path": "F:\\\\GPT-SoVITS\\\\raws\\\\ikaros\\\\21.wav",
"prompt_text": "マスター、どうりょくろか、いいえ、なんでもありません",
"prompt_language": "日文",
"language": "自动识别",
"cut": "凑四句一切",
"gpt_model_path": "F:\\GPT-SoVITS\\GPT_weights\\ikaros-e15.ckpt",
"sovits_model_path": "F:\\GPT-SoVITS\\SoVITS_weights\\ikaros_e8_s280.pth",
"webtts": {
"api_ip_port": "http://127.0.0.1:8080",
"spk": "sanyueqi",
"lang": "zh",
"speed": "1.0",
"emotion": "正常"
}
},
"username": "主人",
"content": "你好,这就是需要合成的文本内容",
"result": {
"code": 200,
"msg": "合成成功",
"audio_path": "E:\\GitHub_pro\\AI-Vtuber\\out\\gpt_sovits_4.wav"
}
}
}
{"code": -1, "message": "失败"}
"""
@app.post('/tts')
async def tts(request: Request):
try:
data_json = await request.json()
logger.info(f'WEBUI API tts接口收到数据:{data_json}')
resp_json = await audio.tts_handle(data_json)
return {"code": 200, "message": "成功", "data": resp_json}
except Exception as e:
logger.error(traceback.format_exc())
return CommonResult(code=-1, message=f"失败!{e}")
"""
LLM推理,获取推理结果
data 传入的json
例如:type就是聊天类型实际对应的值
data_json = {
"type": "chatgpt",
"username": "用户名",
"content": "你好"
}
return:
{
"code": 200,
"message": "成功",
"data": {
"content": "你好,这是LLM回复的内容"
}
}
{"code": -1, "message": "失败"}
"""
@app.post('/llm')
async def llm(request: Request):
try:
data_json = await request.json()
logger.info(f'WEBUI API llm接口 收到数据:{data_json}')
main_api_ip = "127.0.0.1" if config.get("api_ip") == "0.0.0.0" else config.get("api_ip")
resp_json = await common.send_async_request(f'http://{main_api_ip}:{config.get("api_port")}/llm', "POST", data_json, "json", timeout=60)
if resp_json:
return resp_json
return CommonResult(code=-1, message="失败!")
except Exception as e:
logger.error(traceback.format_exc())
return CommonResult(code=-1, message=f"失败!{e}")
# fish speech 获取说话人数据
async def fish_speech_web_get_ref_data(speaker):
if speaker == "":
logger.info("说话人不能为空喵~")
ui.notify(position="top", type="warning", message="说话人不能为空喵~")
return
from utils.audio_handle.my_tts import MY_TTS
my_tts = MY_TTS(config_path)
data_json = await my_tts.fish_speech_web_get_ref_data(speaker)
if data_json is None:
ui.notify(position="top", type="negative", message="获取数据失败,请查看日志定位问题")
return
input_fish_speech_web_ref_audio_path.value = data_json["ref_audio_path"]
input_fish_speech_web_ref_text.value = data_json["ref_text"]
ui.notify(position="top", type="positive", message="获取数据成功,已自动填入输入框")
"""
./@\]
,@@@@\* \@@^ ,]]]
[[[* /@@]@@@@@/[[\@@@@/
]]@@@@@@\ /@@^ @@@^]]`[[
]]@@@@@@@[[* ,[` /@@\@@@@@@@@@@@@@@^
[[[[[` @@@/ \@@@@[[[\@@^ =@@/
.\@@\* *@@@` [\@@@@@@\`
,@@\=@@@ ,]@@@/` ,\@@@@*
,@@@@` ,[[[[` =@@@ ]]/O
/@@@@@` ]]]@@@@@@@@@/[[[[[`
,@@@@[ \@@@\` ./@@@@@@@]
,]/@@@@/` \@@@@@\]] ,@@@/,@@^ \@@@\]
,@@@@@@@@/[* ,/@@/* /@@^ [@@@@@@@\*
,@@^
"""
# 文案页-增加
def copywriting_add():
data_len = len(copywriting_config_var)
tmp_config = {
"file_path": f"data/copywriting{int(data_len / 5) + 1}/",
"audio_path": f"out/copywriting{int(data_len / 5) + 1}/",
"continuous_play_num": 2,
"max_play_time": 10.0,
"play_list": []
}
with copywriting_config_card.style(card_css):
with ui.row():
copywriting_config_var[str(data_len)] = ui.input(label=f"文案存储路径#{int(data_len / 5) + 1}", value=tmp_config["file_path"], placeholder='文案文件存储路径。不建议更改。').style("width:200px;")
copywriting_config_var[str(data_len + 1)] = ui.input(label=f"音频存储路径#{int(data_len / 5) + 1}", value=tmp_config["audio_path"], placeholder='文案音频文件存储路径。不建议更改。').style("width:200px;")
copywriting_config_var[str(data_len + 2)] = ui.input(label=f"连续播放数#{int(data_len / 5) + 1}", value=tmp_config["continuous_play_num"], placeholder='文案播放列表中连续播放的音频文件个数,如果超过了这个个数就会切换下一个文案列表').style("width:200px;")
copywriting_config_var[str(data_len + 3)] = ui.input(label=f"连续播放时间#{int(data_len / 5) + 1}", value=tmp_config["max_play_time"], placeholder='文案播放列表中连续播放音频的时长,如果超过了这个时长就会切换下一个文案列表').style("width:200px;")
copywriting_config_var[str(data_len + 4)] = ui.textarea(label=f"播放列表#{int(data_len / 5) + 1}", value=textarea_data_change(tmp_config["play_list"]), placeholder='此处填写需要播放的音频文件全名,填写完毕后点击 保存配置。文件全名从音频列表中复制,换行分隔,请勿随意填写').style("width:500px;")
# 文案页-删除
def copywriting_del(index):
try:
copywriting_config_card.remove(int(index) - 1)
# 删除操作
keys_to_delete = [str(5 * (int(index) - 1) + i) for i in range(5)]
for key in keys_to_delete:
if key in copywriting_config_var:
del copywriting_config_var[key]