-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathtools.py
More file actions
1683 lines (1504 loc) · 65 KB
/
tools.py
File metadata and controls
1683 lines (1504 loc) · 65 KB
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
# coding: utf-8
# +-------------------------------------------------------------------
# | 宝塔Linux面板
# +-------------------------------------------------------------------
# | Copyright (c) 2015-2099 宝塔软件(http://bt.cn) All rights reserved.
# +-------------------------------------------------------------------
# | Author: hwliang <hwl@bt.cn>
# +-------------------------------------------------------------------
# ------------------------------
# 工具箱
# ------------------------------
import sys
import os
import re
import json
panelPath = '/www/server/panel/'
os.chdir(panelPath)
sys.path.insert(0, panelPath + "class/")
import public, time, json
if sys.version_info[0] == 3: raw_input = input
def check_db(): # 检查数据库
pass
# data_func = {
# "users": check_users_tb,
# "config": check_config_tb,
# }
# for tb_name, check_func in data_func.items():
# sqlite_obj = public.M(tb_name)
# check_func(sqlite_obj)
# 用户表检查
def check_users_tb(sqlite_obj):
pass
# user = sqlite_obj.where("id=?", (1,)).find()
# if not isinstance(user, (dict, list)):
# print("users err:{}".format(user))
# return
# username = public.GetRandomString(8).lower()
# password = public.GetRandomString(8).lower()
# if not user: # 表数据为空
# sqlite_obj.add("id,username,password", (1, username, password))
# print("检测到默认用户丢失,正在修复...")
# print("|-新用户名(username): {}".format(username))
# print("|-新密码(password): {}".format(password))
# return
# # 表数据库缺失
# if not user.get("username"):
# print("检测到[用户名]为空,正在修复...")
# sqlite_obj.where("id=?", (1,)).setField("username", username)
# print("|-新用户名(username): {}".format(username))
# if not user.get("password"):
# print("检测到[用户密码]为空,正在修复...")
# sqlite_obj.where("id=?", (1,)).setField('password', public.password_salt(public.md5(password), uid=1))
# print("|-新密码(password): {}".format(password))
# 配置表检查
def check_config_tb(sqlite_obj):
config = sqlite_obj.where("id=?", (1,)).find()
if not isinstance(config, (dict, list)):
print("config err:{}".format(config))
return
webserver = "nginx"
backup_path = "/www/backup"
sites_path = "/www/wwwroot"
status = 1
mysql_root = public.GetRandomString(8).lower()
if not config: # 表数据为空
sqlite_obj.add("id,webserver,backup_path,sites_path,status,mysql_root", (1, webserver, backup_path, sites_path, status, mysql_root))
print("检测到面板默认配置丢失,正在修复...")
print("|-默认运行服务: {}".format(webserver))
print("|-默认备份路径: {}".format(backup_path))
print("|-默认网站路径: {}".format(sites_path))
print("|-默认Mysql密码: {}".format(mysql_root))
return
# 表数据库缺失
if not config.get("webserver"):
print("检测到[默认运行服务]为空,正在修复...")
sqlite_obj.where("id=?", (1,)).setField("webserver", webserver)
print("|-默认运行服务: {}".format(webserver))
if not config.get("backup_path"):
print("检测到[默认备份路径]为空,正在修复...")
sqlite_obj.where("id=?", (1,)).setField("backup_path", backup_path)
print("|-默认备份路径: {}".format(backup_path))
if not config.get("sites_path"):
print("检测到[默认网站路径]为空,正在修复...")
sqlite_obj.where("id=?", (1,)).setField("sites_path", sites_path)
print("|-默认网站路径: {}".format(sites_path))
if not config.get("mysql_root"):
print("检测到[默认Mysql密码]为空,正在修复...")
set_mysql_root(mysql_root)
# sqlite_obj.where("id=?", (1,)).setField("mysql_root", mysql_root)
# print("|-默认Mysql密码: {}".format(len(mysql_root) * "*"))
# 设置MySQL密码
def set_mysql_root(password):
import db, os
sql = db.Sql()
root_mysql = '''#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
pwd=$1
/etc/init.d/mysqld stop
mysqld_safe --skip-grant-tables&
echo '正在修改密码...';
echo 'The set password...';
sleep 6
m_version=$(cat /www/server/mysql/version.pl)
if echo "$m_version" | grep -E "(5\.1\.|5\.5\.|5\.6\.|10\.0\.|10\.1\.)" >/dev/null; then
mysql -uroot -e "UPDATE mysql.user SET password=PASSWORD('${pwd}') WHERE user='root';"
elif echo "$m_version" | grep -E "(10\.4\.|10\.5\.|10\.6\.|10\.7\.|10\.11\.|11\.3\.|11\.4\.|11\.8\.)" >/dev/null; then
mysql -uroot -e "
FLUSH PRIVILEGES;
ALTER USER 'root'@'localhost' IDENTIFIED BY '${pwd}';
ALTER USER 'root'@'127.0.0.1' IDENTIFIED BY '${pwd}';
FLUSH PRIVILEGES;
"
elif echo "$m_version" | grep -E "(5\.7\.|8\.[0-9]+\..*|9\.[0-9]+\..*)" >/dev/null; then
mysql -uroot -e "
FLUSH PRIVILEGES;
update mysql.user set authentication_string='' where user='root' and (host='127.0.0.1' or host='localhost');
ALTER USER 'root'@'localhost' IDENTIFIED BY '${pwd}';
ALTER USER 'root'@'127.0.0.1' IDENTIFIED BY '${pwd}';
FLUSH PRIVILEGES;
"
else
mysql -uroot -e "UPDATE mysql.user SET authentication_string=PASSWORD('${pwd}') WHERE user='root';"
fi
mysql -uroot -e "FLUSH PRIVILEGES";
pkill -9 mysqld_safe
pkill -9 mysqld
sleep 2
/etc/init.d/mysqld start
echo '==========================================='
echo "root密码成功修改为: ${pwd}"
echo "The root password set ${pwd} successuful"'''
public.writeFile('mysql_root.sh', root_mysql)
os.system("/bin/bash mysql_root.sh " + password)
os.system("rm -f mysql_root.sh")
result = public.M('config').where('id=?', (1,)).setField('mysql_root', password)
print(result)
# 设置面板密码
def set_panel_pwd(password, ncli=False):
password = password.strip()
if not len(password) > 5:
print("|-错误,密码长度必须大于5位")
return
import db
sql = db.Sql()
result = public.M('users').where('id=?', (1,)).setField('password', public.password_salt(public.md5(password), uid=1))
username = public.M('users').where('id=?', (1,)).getField('username')
if ncli:
print("|-用户名: " + username)
print("|-新密码: " + password)
else:
print(username)
# 设置数据库目录
def set_mysql_dir(path):
mysql_dir = '''#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
oldDir=`cat /etc/my.cnf |grep 'datadir'|awk '{print $3}'`
newDir=$1
mkdir $newDir
if [ ! -d "${newDir}" ];then
echo 'The specified storage path does not exist!'
exit
fi
echo "Stopping MySQL service..."
/etc/init.d/mysqld stop
echo "Copying files, please wait..."
\cp -r -a $oldDir/* $newDir
chown -R mysql.mysql $newDir
sed -i "s#$oldDir#$newDir#" /etc/my.cnf
echo "Starting MySQL service..."
/etc/init.d/mysqld start
echo ''
echo 'Successful'
echo '---------------------------------------------------------------------'
echo "Has changed the MySQL storage directory to: $newDir"
echo '---------------------------------------------------------------------'
'''
public.writeFile('mysql_dir.sh', mysql_dir)
os.system("/bin/bash mysql_dir.sh " + path)
os.system("rm -f mysql_dir.sh")
# 封装
def PackagePanel():
print('========================================================')
print('|-正在清理日志信息...'),
public.M('logs').where('id!=?', (0,)).delete()
print('\t\t\033[1;32m[done]\033[0m')
print('|-正在清理任务历史...'),
public.M('tasks').where('id!=?', (0,)).delete()
print('\t\t\033[1;32m[done]\033[0m')
print('|-正在清理网络监控记录...'),
public.M('network').dbfile('system').where('id!=?', (0,)).delete()
print('\t\033[1;32m[done]\033[0m')
print('|-正在清理CPU监控记录...'),
public.M('cpuio').dbfile('system').where('id!=?', (0,)).delete()
print('\t\033[1;32m[done]\033[0m')
print('|-正在清理磁盘监控记录...'),
public.M('diskio').dbfile('system').where('id!=?', (0,)).delete()
print('\t\033[1;32m[done]\033[0m')
print('|-正在清理IP信息...'),
os.system('rm -f /www/server/panel/data/iplist.txt')
os.system('rm -f /www/server/panel/data/address.pl')
os.system('rm -f /www/server/panel/data/*.login')
os.system('rm -f /www/server/panel/data/domain.conf')
os.system('rm -f /www/server/panel/data/user*')
os.system('rm -f /www/server/panel/data/admin_path.pl')
os.system('rm -rf /www/backup/panel/*')
os.system('rm -f /root/.ssh/*')
print('\t\033[1;32m[done]\033[0m')
print('|-正在清理系统使用痕迹...'),
command = '''cat /dev/null > /var/log/boot.log
cat /dev/null > /var/log/btmp
cat /dev/null > /var/log/cron
cat /dev/null > /var/log/dmesg
cat /dev/null > /var/log/firewalld
cat /dev/null > /var/log/grubby
cat /dev/null > /var/log/lastlog
cat /dev/null > /var/log/mail.info
cat /dev/null > /var/log/maillog
cat /dev/null > /var/log/messages
cat /dev/null > /var/log/secure
cat /dev/null > /var/log/spooler
cat /dev/null > /var/log/syslog
cat /dev/null > /var/log/tallylog
cat /dev/null > /var/log/wpa_supplicant.log
cat /dev/null > /var/log/wtmp
cat /dev/null > /var/log/yum.log
history -c
'''
os.system(command)
print('\t\033[1;32m[done]\033[0m')
if sys.version_info[0] == 3:
a_input = input('|-是否在首次开机自动按机器配置优化PHP/MySQL配置?(y/n default: y): ')
else:
a_input = raw_input('|-是否在首次开机自动按机器配置优化PHP/MySQL配置?(y/n default: y): ')
if not a_input: a_input = 'y'
print(a_input)
if not a_input in ['Y', 'y', 'yes', 'YES']:
public.ExecShell("rm -f /www/server/panel/php_mysql_auto.pl")
else:
public.writeFile('/www/server/panel/php_mysql_auto.pl', "True")
print("|-请选择idc品牌信息展示设置:")
print("=" * 50)
print(" (1) 显示默认宝塔Linux面板信息")
print(" (2) 显示IDC定制版面板信息")
print("=" * 50)
i_input = input("请选择显示的面板信息(default: 1): ")
if i_input in [2, '2']:
print("2 显示IDC定制版面板信息")
print("=" * 50)
else:
print("1 显示默认宝塔Linux面板信息")
print("=" * 50)
panelPath = '/www/server/panel'
pFile = panelPath + '/config/config.json'
pInfo = json.loads(public.readFile(pFile))
pInfo['title'] = u'宝塔Linux面板'
pInfo['brand'] = u'宝塔'
pInfo['product'] = u'Linux面板'
public.writeFile(pFile, json.dumps(pInfo))
tFile = panelPath + '/data/title.pl'
if os.path.exists(tFile):
os.remove(tFile)
print("|-请选择用户初始化方式:")
print("=" * 50)
print(" (1) 访问面板页面时显示初始化页面")
print(" (2) 首次启动时自动随机生成新帐号密码")
print(" (3) 首次启动时自动随机生成新帐号密码和安全路径")
print("=" * 50)
p_input = input("请选择初始化方式(default: 1): ")
print(p_input)
if p_input in [2, '2']:
public.writeFile('/www/server/panel/aliyun.pl', "True")
s_file = '/www/server/panel/install.pl'
if os.path.exists(s_file): os.remove(s_file)
public.M('config').where("id=?", ('1',)).setField('status', 1)
elif p_input in [3, '3']:
public.writeFile('/www/server/panel/aliyun.pl', "True")
public.writeFile('/www/server/panel/random_path.pl', "True")
s_file = '/www/server/panel/install.pl'
if os.path.exists(s_file): os.remove(s_file)
public.M('config').where("id=?", ('1',)).setField('status', 1)
else:
public.writeFile('/www/server/panel/install.pl', "True")
public.M('config').where("id=?", ('1',)).setField('status', 0)
port = public.readFile('data/port.pl').strip()
print('========================================================')
print('\033[1;32m|-面板封装成功,请不要再登陆面板做任何其它操作!\033[0m')
if p_input not in [2, '2', 3, '3']:
print('\033[1;41m|-面板初始化地址: http://{SERVERIP}:' + port + '/install\033[0m')
else:
print('\033[1;41m|-获取初始帐号密码命令:bt default \033[0m')
print('\033[1;41m|-注意:仅在首次登录面板前能正确获取初始帐号密码 \033[0m')
# 清空正在执行的任务
def CloseTask():
ncount = public.M('tasks').where('status!=?', (1,)).delete()
os.system("kill `ps -ef |grep 'python panelSafe.pyc'|grep -v grep|grep -v panelExec|awk '{print $2}'`")
os.system("kill `ps -ef |grep 'install_soft.sh'|grep -v grep|grep -v panelExec|awk '{print $2}'`")
os.system('/etc/init.d/bt restart')
print("成功清理 " + int(ncount) + " 个任务!")
def get_ipaddress():
'''
@name 获取本机IP地址
@author hwliang<2020-11-24>
@return list
'''
ipa_tmp = public.ExecShell("ip a |grep inet|grep -v inet6|grep -v 127.0.0.1|awk '{print $2}'|sed 's#/[0-9]*##g'")[
0].strip()
iplist = ipa_tmp.split('\n')
return iplist
def get_host_all():
local_ip = ['127.0.0.1', '::1', 'localhost']
ip_list = []
bind_ip = get_ipaddress()
for ip in bind_ip:
ip = ip.strip()
if ip in local_ip: continue
if ip in ip_list: continue
ip_list.append(ip)
net_ip = public.httpGet("https://api.bt.cn/api/getipaddress")
if net_ip:
net_ip = net_ip.strip()
if not net_ip in ip_list:
ip_list.append(net_ip)
if len(ip_list) > 1:
ip_list = [ip_list[-1], ip_list[0]]
print(ip_list)
return ip_list
# 自签证书
def CreateSSL():
import base64
userInfo = public.get_user_info()
if not userInfo:
userInfo['uid'] = 0
userInfo['access_key'] = 'B' * 32
domains = get_host_all()
pdata = {
"action": "get_domain_cert",
"company": "宝塔面板",
"domain": ','.join(domains),
"uid": userInfo['uid'],
"access_key": userInfo['access_key'],
"panel": 1
}
cert_api = 'https://api.bt.cn/bt_cert'
res = public.httpPost(cert_api, {'data': json.dumps(pdata)})
try:
result = json.loads(res)
if 'status' in result:
if result['status']:
public.writeFile('ssl/certificate.pem', result['cert'])
public.writeFile('ssl/privateKey.pem', result['key'])
public.writeFile('ssl/baota_root.pfx', base64.b64decode(result['pfx']), 'wb+')
public.writeFile('ssl/root_password.pl', result['password'])
public.writeFile('data/ssl.pl', 'True')
public.ExecShell("/etc/init.d/bt reload")
print('1')
return True
except:
print('error:{}'.format(res))
print('0')
return False
# 创建文件
def CreateFiles(path, num):
if not os.path.exists(path): os.system('mkdir -p ' + path)
import time;
for i in range(num):
filename = path + '/' + str(time.time()) + '__' + str(i)
open(path, 'w+').close()
# 计算文件数量
def GetFilesCount(path):
i = 0
for name in os.listdir(path): i += 1
return i
# 清理系统垃圾
def ClearSystem():
count = total = 0
tmp_total, tmp_count = ClearMail()
count += tmp_count
total += tmp_total
print('=======================================================================')
tmp_total, tmp_count = ClearSession()
count += tmp_count
total += tmp_total
print('=======================================================================')
tmp_total, tmp_count = ClearOther()
count += tmp_count
total += tmp_total
print('=======================================================================')
print('\033[1;32m|-系统垃圾清理完成,共删除[' + str(count) + ']个文件,释放磁盘空间[' + ToSize(total) + ']\033[0m')
# 清理邮件日志
def ClearMail():
rpath = '/var/spool'
total = count = 0
import shutil
con = ['cron', 'anacron', 'mail']
for d in os.listdir(rpath):
if d in con: continue
dpath = rpath + '/' + d
print('|-正在清理' + dpath + ' ...')
time.sleep(0.2)
num = size = 0
for n in os.listdir(dpath):
filename = dpath + '/' + n
fsize = os.path.getsize(filename)
print('|---[' + ToSize(fsize) + '] del ' + filename),
size += fsize
if os.path.isdir(filename):
shutil.rmtree(filename)
else:
os.remove(filename)
print('\t\033[1;32m[OK]\033[0m')
num += 1
print('|-已清理[' + dpath + '],删除[' + str(num) + ']个文件,共释放磁盘空间[' + ToSize(size) + ']')
total += size
count += num
print('=======================================================================')
print('|-已完成spool的清理,删除[' + str(count) + ']个文件,共释放磁盘空间[' + ToSize(total) + ']')
return total, count
# 清理php_session文件
def ClearSession():
spath = '/tmp'
total = count = 0
import shutil
print('|-正在清理PHP_SESSION ...')
for d in os.listdir(spath):
if d.find('sess_') == -1: continue
filename = spath + '/' + d
fsize = os.path.getsize(filename)
print('|---[' + ToSize(fsize) + '] del ' + filename),
total += fsize
if os.path.isdir(filename):
shutil.rmtree(filename)
else:
os.remove(filename)
print('\t\033[1;32m[OK]\033[0m')
count += 1
print('|-已完成php_session的清理,删除[' + str(count) + ']个文件,共释放磁盘空间[' + ToSize(total) + ']')
return total, count
# 清空回收站
def ClearRecycle_Bin():
import files
f = files.files()
f.Close_Recycle_bin(None)
# 清理其它
def ClearOther():
clearPath = [
{'path': '/www/server/panel', 'find': 'testDisk_'},
{'path': '/www/wwwlogs', 'find': 'log'},
{'path': '/tmp', 'find': 'panelBoot.pl'},
{'path': '/www/server/panel/install', 'find': '.rpm'},
{'path': '/www/server/panel/install', 'find': '.zip'},
{'path': '/www/server/panel/install', 'find': '.gz'}
]
total = count = 0
print('|-正在清理临时文件及网站日志 ...')
for c in clearPath:
for d in os.listdir(c['path']):
if d.find(c['find']) == -1: continue
filename = c['path'] + '/' + d
if os.path.isdir(filename): continue
fsize = os.path.getsize(filename)
print('|---[' + ToSize(fsize) + '] del ' + filename),
total += fsize
os.remove(filename)
print('\t\033[1;32m[OK]\033[0m')
count += 1
public.serviceReload()
os.system('sleep 1 && /etc/init.d/bt reload > /dev/null &')
print('|-已完成临时文件及网站日志的清理,删除[' + str(count) + ']个文件,共释放磁盘空间[' + ToSize(total) + ']')
return total, count
# 关闭普通日志
def CloseLogs():
try:
paths = ['/usr/lib/python2.7/site-packages/web/httpserver.py',
'/usr/lib/python2.6/site-packages/web/httpserver.py']
for path in paths:
if not os.path.exists(path): continue
hsc = public.readFile(path)
if hsc.find('500 Internal Server Error') != -1: continue
rstr = '''def log(self, status, environ):
if status != '500 Internal Server Error': return;'''
hsc = hsc.replace("def log(self, status, environ):", rstr)
if hsc.find('500 Internal Server Error') == -1: return False
public.writeFile(path, hsc)
except:
pass
# 字节单位转换
def ToSize(size):
ds = ['b', 'KB', 'MB', 'GB', 'TB']
for d in ds:
if size < 1024: return str(size) + d
size = size / 1024
return '0b'
# 随机面板用户名
def set_panel_username(username=None):
import db
sql = db.Sql()
if username:
print("|-正在设置面板用户名...")
re_list = re.findall(r"[^\w,.]+", username)
if re_list:
print("|-错误,密码不能包含中文和特殊字符: {}".format(" ".join(re_list)))
return
if username in ['admin', 'root']:
print("|-错误,不能使用过于简单的用户名")
return
public.M('users').where('id=?', (1,)).setField('username', username)
print("|-新用户名: %s" % username)
return
username = public.M('users').where('id=?', (1,)).getField('username')
if username == 'admin':
username = public.GetRandomString(8).lower()
public.M('users').where('id=?', (1,)).setField('username', username)
print('username: ' + username)
# 设定idc
def setup_idc():
try:
panelPath = '/www/server/panel'
filename = panelPath + '/data/o.pl'
if not os.path.exists(filename): return False
o = public.readFile(filename).strip()
c_url = 'http://www.bt.cn/api/idc/get_idc_info_bycode?o=%s' % o
idcInfo = json.loads(public.httpGet(c_url))
if not idcInfo['status']: return False
pFile = panelPath + '/config/config.json'
pInfo = json.loads(public.readFile(pFile))
pInfo['brand'] = idcInfo['msg']['name']
pInfo['product'] = u'与宝塔联合定制版'
public.writeFile(pFile, json.dumps(pInfo))
tFile = panelPath + '/data/title.pl'
titleNew = pInfo['brand'] + u'面板'
if os.path.exists(tFile):
title = public.GetConfigValue('title')
if title == '' or title == '宝塔Linux面板':
public.writeFile(tFile, titleNew)
public.SetConfigValue('title', titleNew)
else:
public.writeFile(tFile, titleNew)
public.SetConfigValue('title', titleNew)
return True
except:
pass
def set_panel_port(panelport):
input_port=int(panelport)
if not input_port:
print("|-错误,未输入任何有效端口")
return
if input_port in [80, 443, 21, 20, 22]:
print("|-错误,请不要使用常用端口作为面板端口")
return
try:
port_str = public.readFile('data/port.pl')
if port_str:
old_port = int(port_str)
else:
old_port = 0
except:
old_port = 0
if old_port == input_port:
print("|-错误,与面板当前端口一致,无需修改")
return
if input_port > 65535 or input_port < 1:
print("|-错误,可用端口范围在1-65535之间")
return
print("|-开始设置面板端口")
is_exists = public.ExecShell("lsof -i:%s|grep LISTEN|grep -v grep" % input_port)
if len(is_exists[0]) > 5:
print("|-错误,指定端口已被其它应用占用")
return
public.writeFile('data/port.pl', str(input_port))
if os.path.exists("/usr/bin/firewall-cmd"):
os.system("firewall-cmd --permanent --zone=public --add-port=%s/tcp" % input_port)
os.system("firewall-cmd --reload")
elif os.path.exists("/etc/sysconfig/iptables"):
os.system("iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport %s -j ACCEPT" % input_port)
os.system("service iptables save")
else:
os.system("ufw allow %s" % input_port)
os.system("ufw reload")
os.system("/etc/init.d/bt reload")
print("|-已将面板端口修改为:%s" % input_port)
print(
"|-若您的服务器提供商是[阿里云][腾讯云][华为云]或其它开启了[安全组]的服务器,请在安全组放行[%s]端口才能访问面板" % input_port)
panelPath = '/www/server/panel/data/o.pl'
if not os.path.exists(panelPath): return False
o = public.readFile(panelPath).strip()
if 'tencent' == o:
print("|-若使用腾讯轻量云-Linux专享版面板,则不需要添加至安全组")
def set_panel_path(adminpath):
admin_path = adminpath
msg = ''
from BTPanel import admin_path_checks
if len(admin_path) < 6: msg = '安全入口地址长度不能小于6位!'
if admin_path in admin_path_checks: msg = '该入口已被面板占用,请使用其它入口!'
if not public.path_safe_check(admin_path) or admin_path[-1] == '.': msg = '入口地址格式不正确,示例: /my_panel'
if admin_path[0] != '/':
admin_path = "/" + admin_path
if admin_path.find("//") != -1:
msg = '入口地址格式不正确,示例: /my_panel'
valid_path_pattern = re.compile(r'^(/?([a-zA-Z0-9\-._~:/@]|%[0-9A-Fa-f]{2})*)$')
if not valid_path_pattern.match(admin_path):
msg ='入口地址格式不正确,示例: /my_panel'
admin_path_file = 'data/admin_path.pl'
if msg != '':
print('设置出错:{}'.format(msg))
return
public.writeFile(admin_path_file, admin_path)
public.restart_panel()
print('安全入口设置成功:{}'.format(admin_path))
def set_panel_ssl(status):
status=status
if status == "enable":
CreateSSL()
if status == "disable":
os.system('btpython /www/server/panel/class/config.py SetPanelSSL')
os.system("/etc/init.d/bt reload")
def get_panel_version():
exit(public.version())
def sync_tencent_ssl(tencent_ssl_path="/root/tencent_ssl"):
"""同步腾讯云证书
遍历目录下的nginx证书压缩包,解压并同步到面板ssl目录
"""
import os
import shutil
import panelSSL
from sslModel import certModel
ss = panelSSL.panelSSL()
cert_main = certModel.main()
panel_ssl_path = "/www/server/panel/vhost/ssl"
try:
# 确保源目录存在
if not os.path.exists(tencent_ssl_path):
print(f"目录不存在: {tencent_ssl_path}")
return False
# 获取所有网站和对应的域名
all_sites = public.M('sites').field('name,id').select()
if not all_sites:
print("没有找到任何网站信息")
return False
for site in all_sites:
domians = public.M('domain').where("pid=?", (site["id"],)).field('name').select()
if not domians:
site["domains"] = []
site["domains"] = [domain["name"] for domain in domians]
BatchInfo = []
# 遍历目录下的所有文件
for filename in os.listdir(tencent_ssl_path):
if not filename.endswith('_nginx.zip'):
continue
# 获取域名(去除_nginx.zip后缀)
domain = filename.replace('_nginx.zip', '')
zip_path = os.path.join(tencent_ssl_path, filename)
extract_path = os.path.join(tencent_ssl_path, domain + '_nginx')
ssl_domain_path = os.path.join(panel_ssl_path, domain)
try:
# 解压文件
public.ExecShell("cd {} && unzip {}".format(tencent_ssl_path, zip_path))
# 创建目标ssl目录
os.makedirs(ssl_domain_path, exist_ok=True)
# 复制证书文件
bundle_src = os.path.join(extract_path, f"{domain}_bundle.pem")
key_src = os.path.join(extract_path, f"{domain}.key")
get = public.to_dict_obj({})
get.key = public.readFile(key_src)
get.csr = public.readFile(bundle_src)
res=cert_main.save_cert(get)
if res.get("status") == True:
print(f"成功同步证书: {domain}")
else:
print(f"同步证书失败: {domain}")
continue
# 获取证书信息
get.ssl_hash = res["ssl_hash"]
cert_detail = public.M('ssl_info').field(
'dns'
).where("hash=?",(res["ssl_hash"])).select()
if not cert_detail:
print(f"未找到证书信息: {domain}")
continue
try:
cert_detail = json.loads(cert_detail[0]["dns"])
except Exception as e:
print(f"解析证书信息失败: {domain}, 错误: {str(e)}")
for site in all_sites:
if site["domains"] and all_domains_covered(site["domains"], cert_detail):
BatchInfo.append(
{"ssl_hash":res["ssl_hash"],"siteName": site["name"]}
)
except Exception as e:
print(f"处理证书时出错 {domain}: {str(e)}")
finally:
if os.path.exists(extract_path):
shutil.rmtree(extract_path)
if BatchInfo:
get = public.to_dict_obj({})
get.BatchInfo = json.dumps(BatchInfo)
res = ss.SetBatchCertToSite(get)
print(res)
else:
print("没有需要部署的证书信息")
return True
except Exception as e:
print(f"同步证书时出错: {str(e)}")
return False
def all_domains_covered(domain_list, cert_domains):
def matches(domain, pattern):
if pattern.startswith('*.'):
base = pattern[2:]
base_dots = base.count('.')
domain_dots = domain.count('.')
# domain必须以.base结尾,且domain的点数比base多1(表示一级子域)
if domain.endswith('.' + base) and domain_dots == base_dots + 1:
return True
else:
if domain == pattern:
return True
return False
return all(any(matches(domain, pattern) for pattern in cert_domains) for domain in domain_list)
def get_temp_login():
s_time = int(time.time())
expire_time=int(int(time.time()) + 3600 * 3)
public.M('temp_login').where('state=? and expire>?', (0, s_time)).delete()
token = public.GetRandomString(48)
salt = public.GetRandomString(12)
pdata = {
'token': public.md5(token + salt),
'salt': salt,
'state': 0,
'login_time': 0,
'login_addr': '',
'expire': expire_time,
}
if not public.M('temp_login').count():
pdata['id'] = 101
if public.M('temp_login').insert(pdata):
if os.path.exists('/www/server/panel/data/ssl.pl'):
HTTP_C="https://"
else:
HTTP_C="http://"
IP_ADDRES=public.ExecShell("curl -sS --connect-timeout 10 -m 20 {}".format(public.get_home_node("https://www.bt.cn/Api/getIpAddress")))[0]
PANEL_PORT=public.readFile("/www/server/panel/data/port.pl")
PANEL_ADDRESS=HTTP_C+IP_ADDRES+":"+PANEL_PORT+"/login?tmp_token="+token
print(PANEL_ADDRESS)
def get_temp_login_ipv4():
s_time = int(time.time())
expire_time=int(int(time.time()) + 3600 * 3)
public.M('temp_login').where('state=? and expire>?', (0, s_time)).delete()
token = public.GetRandomString(48)
salt = public.GetRandomString(12)
pdata = {
'token': public.md5(token + salt),
'salt': salt,
'state': 0,
'login_time': 0,
'login_addr': '',
'expire': expire_time,
}
if not public.M('temp_login').count():
pdata['id'] = 101
if public.M('temp_login').insert(pdata):
if os.path.exists('/www/server/panel/data/ssl.pl'):
HTTP_C="https://"
else:
HTTP_C="http://"
IP_ADDRES=public.ExecShell("curl -4 -sS --connect-timeout 10 -m 20 {}".format(public.get_home_node("https://www.bt.cn/Api/getIpAddress")))[0]
PANEL_PORT=public.readFile("/www/server/panel/data/port.pl")
PANEL_ADDRESS=HTTP_C+IP_ADDRES+":"+PANEL_PORT+"/login?tmp_token="+token
print(PANEL_ADDRESS)
# 将插件升级到6.0
def update_to6():
print("====================================================")
print("正在升级插件...")
print("====================================================")
download_address = public.get_url()
exlodes = ['gitlab', 'pm2', 'mongodb', 'deployment_jd', 'logs', 'docker', 'beta', 'btyw']
for pname in os.listdir('plugin/'):
if not os.path.isdir('plugin/' + pname): continue
if pname in exlodes: continue
print("|-正在升级【%s】..." % pname),
download_url = download_address + '/install/plugin/' + pname + '/install.sh'
to_file = '/tmp/%s.sh' % pname
public.downloadFile(download_url, to_file)
os.system('/bin/bash ' + to_file + ' install &> /tmp/plugin_update.log 2>&1')
print(" \033[32m[成功]\033[0m")
print("====================================================")
print("\033[32m所有插件已成功升级到最新!\033[0m")
print("====================================================")
# 2024/5/29 下午5:58 调用面板反向代理的模块创建
def create_reverse_proxy(get):
'''
@param get:
@name 调用面板反向代理的模块创建
@author wzz <2024/5/29 下午6:00>
@param "data":{"参数名":""} <数据类型> 参数描述
@return dict{"status":True/False,"msg":"提示信息"}
'''
from mod.project.proxy.comMod import main as proxyMod
pMod = proxyMod()
panel_port = public.readFile('data/port.pl')
try:
close_reverse_proxy()
__http = 'https' if os.path.exists("/www/server/panel/data/ssl.pl") else 'http'
if __http != "https":
CreateSSL()
__http = "https"
args = public.to_dict_obj({
"proxy_pass": "{}://127.0.0.1:{}".format(__http, panel_port),
"proxy_type": "http",
"domains": get.siteName,
"proxy_host": "$http_host",
"remark": "宝塔面板的反代[请误操作,修改可能会导致面板无法访问]"
})
create_result = pMod.create(args)
if not create_result['status']:
return public.returnResult(False, create_result['msg'])
# args.site_name = get.siteName
# args.auth_path = "/"
# args.username = public.GetRandomString(8).lower()
# args.password = public.GetRandomString(8).lower()
# if os.path.exists("data/http_auth.pwd"):
# public.ExecShell("rm -rf /www/server/panel/data/http_auth.pwd")
#
# public.writeFile("data/http_auth.pwd", args.password)
# args.name = public.GetRandomString(5)
#
# auth_result = pMod.add_dir_auth(args)
# if not create_result['status']:
# return public.returnResult(False, auth_result['msg'])
return_data = {
# "username": args.username,
# "password": args.password,
"siteName": get.siteName,
"http": __http
}
return public.returnResult(True, '添加成功', data=return_data)
except Exception as e:
result = public.M('sites').where("name=?", (get.siteName,)).find()
if not isinstance(result, dict):
return public.returnResult(False, '添加失败,可能是Nginx配置文件错误,请先检查后再设置!错误详情:{}!'.format(str(e)))
args = public.to_dict_obj({
"id": result['id'],
"siteName": get.siteName,
"remove_path": 1,
})
pMod.delete(args)
return public.returnResult(False, '添加失败,可能是Nginx配置文件错误,请先检查后再设置!错误详情:{}!'.format(str(e)))
# 2024/5/30 上午10:38 设置指定代理的SSL
def set_reverse_proxy_ssl(get):
'''
@name 设置指定代理的SSL
@author wzz <2024/5/30 上午10:38>
@param "data":{"参数名":""} <数据类型> 参数描述
@return dict{"status":True/False,"msg":"提示信息"}
'''
from mod.project.proxy.comMod import main as proxyMod
pMod = proxyMod()
try:
key = public.readFile("ssl/privateKey.pem")
csr = public.readFile("ssl/certificate.pem")
get.key = key
get.csr = csr
result = pMod.set_ssl(get)
if not result['status']:
return public.returnResult(False, result['msg'])
return public.returnResult(True, '设置成功')
except Exception as e:
return public.returnMsg(False, '设置失败,错误{}!'.format(str(e)))
# 2024/5/29 下午6:21 关闭面板反向代理
def close_reverse_proxy():
'''
@name 关闭面板反向代理
@author wzz <2024/5/29 下午6:21>
@param "data":{"参数名":""} <数据类型> 参数描述
@return dict{"status":True/False,"msg":"提示信息"}
'''
from mod.project.proxy.comMod import main as proxyMod