-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathtools_en.py
More file actions
1683 lines (1504 loc) · 65.8 KB
/
tools_en.py
File metadata and controls
1683 lines (1504 loc) · 65.8 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
# +-------------------------------------------------------------------
# | BT-Panel Linux Panel
# +-------------------------------------------------------------------
# | Copyright (c) 2015-2099 BT-Panel(http://bt.cn) All rights reserved.
# +-------------------------------------------------------------------
# | Author: hwliang <hwl@bt.cn>
# +-------------------------------------------------------------------
# ------------------------------
# Toolbox
# ------------------------------
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(): # Check database
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)
# User table check
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: # Table data is empty
# sqlite_obj.add("id,username,password", (1, username, password))
# print("Default user lost detected, repairing...")
# print("|-New username: {}".format(username))
# print("|-New password: {}".format(password))
# return
# # Table database missing
# if not user.get("username"):
# print("Username is empty detected, repairing...")
# sqlite_obj.where("id=?", (1,)).setField("username", username)
# print("|-New username: {}".format(username))
# if not user.get("password"):
# print("Password is empty detected, repairing...")
# sqlite_obj.where("id=?", (1,)).setField('password', public.password_salt(public.md5(password), uid=1))
# print("|-New password: {}".format(password))
# Config table check
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: # Table data is empty
sqlite_obj.add("id,webserver,backup_path,sites_path,status,mysql_root", (1, webserver, backup_path, sites_path, status, mysql_root))
print("Default panel configuration lost detected, repairing...")
print("|-Default web server: {}".format(webserver))
print("|-Default backup path: {}".format(backup_path))
print("|-Default sites path: {}".format(sites_path))
print("|-Default MySQL password: {}".format(mysql_root))
return
# Table database missing
if not config.get("webserver"):
print("Default web server is empty detected, repairing...")
sqlite_obj.where("id=?", (1,)).setField("webserver", webserver)
print("|-Default web server: {}".format(webserver))
if not config.get("backup_path"):
print("Default backup path is empty detected, repairing...")
sqlite_obj.where("id=?", (1,)).setField("backup_path", backup_path)
print("|-Default backup path: {}".format(backup_path))
if not config.get("sites_path"):
print("Default sites path is empty detected, repairing...")
sqlite_obj.where("id=?", (1,)).setField("sites_path", sites_path)
print("|-Default sites path: {}".format(sites_path))
if not config.get("mysql_root"):
print("Default MySQL password is empty detected, repairing...")
set_mysql_root(mysql_root)
# sqlite_obj.where("id=?", (1,)).setField("mysql_root", mysql_root)
# print("|-Default MySQL password: {}".format(len(mysql_root) * "*"))
# Set MySQL password
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 'Setting password...';
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\.)" >/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 password successfully changed to: ${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)
# Set panel password
def set_panel_pwd(password, ncli=False):
password = password.strip()
if not len(password) > 5:
print("|-Error: Password length must be greater than 5 characters")
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: " + username)
print("|-New password: " + password)
else:
print(username)
# Set MySQL directory
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")
# Package panel
def PackagePanel():
print('========================================================')
print('|-Cleaning log information...'),
public.M('logs').where('id!=?', (0,)).delete()
print('\t\t\033[1;32m[done]\033[0m')
print('|-Cleaning task history...'),
public.M('tasks').where('id!=?', (0,)).delete()
print('\t\t\033[1;32m[done]\033[0m')
print('|-Cleaning network monitoring records...'),
public.M('network').dbfile('system').where('id!=?', (0,)).delete()
print('\t\033[1;32m[done]\033[0m')
print('|-Cleaning CPU monitoring records...'),
public.M('cpuio').dbfile('system').where('id!=?', (0,)).delete()
print('\t\033[1;32m[done]\033[0m')
print('|-Cleaning disk monitoring records...'),
public.M('diskio').dbfile('system').where('id!=?', (0,)).delete()
print('\t\033[1;32m[done]\033[0m')
print('|-Cleaning IP information...'),
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('|-Cleaning system usage traces...'),
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('|-Automatically optimize PHP/MySQL configuration on first boot?(y/n default: y): ')
else:
a_input = raw_input('|-Automatically optimize PHP/MySQL configuration on first boot?(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("|-Please select IDC brand information display settings:")
print("=" * 50)
print(" (1) Display default BT-Panel Linux information")
print(" (2) Display IDC customized panel information")
print("=" * 50)
i_input = input("Please select panel information to display(default: 1): ")
if i_input in [2, '2']:
print("2 Display IDC customized panel information")
print("=" * 50)
else:
print("1 Display default BT-Panel Linux information")
print("=" * 50)
panelPath = '/www/server/panel'
pFile = panelPath + '/config/config.json'
pInfo = json.loads(public.readFile(pFile))
pInfo['title'] = u'BT-Panel Linux Panel'
pInfo['brand'] = u'BT-Panel'
pInfo['product'] = u'Linux Panel'
public.writeFile(pFile, json.dumps(pInfo))
tFile = panelPath + '/data/title.pl'
if os.path.exists(tFile):
os.remove(tFile)
print("|-Please select user initialization method:")
print("=" * 50)
print(" (1) Display initialization page when accessing panel")
print(" (2) Automatically generate new account and password on first startup")
print(" (3) Automatically generate new account, password and security path on first startup")
print("=" * 50)
p_input = input("Please select initialization method(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|-Panel packaged successfully, please do not login to the panel for any other operations!\033[0m')
if p_input not in [2, '2', 3, '3']:
print('\033[1;41m|-Panel initialization URL: http://{SERVERIP}:' + port + '/install\033[0m')
else:
print('\033[1;41m|-Command to get initial account and password: bt default \033[0m')
print('\033[1;41m|-Note: Initial account and password can only be obtained correctly before first login \033[0m')
# Clear running tasks
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("Successfully cleaned " + int(ncount) + " tasks!")
def get_ipaddress():
'''
@name Get local IP address
@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
# Self-signed certificate
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": "BT-Panel",
"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
# Create files
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()
# Count files
def GetFilesCount(path):
i = 0
for name in os.listdir(path): i += 1
return i
# Clean system garbage
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|-System garbage cleaning completed, deleted [' + str(count) + '] files, freed disk space [' + ToSize(total) + ']\033[0m')
# Clean mail logs
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('|-Cleaning ' + 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('|-Cleaned [' + dpath + '], deleted [' + str(num) + '] files, freed disk space [' + ToSize(size) + ']')
total += size
count += num
print('=======================================================================')
print('|-Spool cleaning completed, deleted [' + str(count) + '] files, freed disk space [' + ToSize(total) + ']')
return total, count
# Clean PHP session files
def ClearSession():
spath = '/tmp'
total = count = 0
import shutil
print('|-Cleaning 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 cleaning completed, deleted [' + str(count) + '] files, freed disk space [' + ToSize(total) + ']')
return total, count
# Clear recycle bin
def ClearRecycle_Bin():
import files
f = files.files()
f.Close_Recycle_bin(None)
# Clean others
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('|-Cleaning temporary files and website logs ...')
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('|-Temporary files and website logs cleaning completed, deleted [' + str(count) + '] files, freed disk space [' + ToSize(total) + ']')
return total, count
# Close normal logs
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
# Byte unit conversion
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'
# Set panel username
def set_panel_username(username=None):
import db
sql = db.Sql()
if username:
print("|-Setting panel username...")
re_list = re.findall(r"[^\w,.]+", username)
if re_list:
print("|-Error: Password cannot contain Chinese characters and special symbols: {}".format(" ".join(re_list)))
return
if username in ['admin', 'root']:
print("|-Error: Cannot use too simple username")
return
public.M('users').where('id=?', (1,)).setField('username', username)
print("|-New username: %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)
# Setup 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'Co-customized with BT-Panel'
public.writeFile(pFile, json.dumps(pInfo))
tFile = panelPath + '/data/title.pl'
titleNew = pInfo['brand'] + u' Panel'
if os.path.exists(tFile):
title = public.GetConfigValue('title')
if title == '' or title == 'BT-Panel Linux Panel':
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("|-Error: No valid port entered")
return
if input_port in [80, 443, 21, 20, 22]:
print("|-Error: Please do not use common ports as panel port")
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("|-Error: Same as current panel port, no need to modify")
return
if input_port > 65535 or input_port < 1:
print("|-Error: Available port range is 1-65535")
return
print("|-Starting to set panel port")
is_exists = public.ExecShell("lsof -i:%s|grep LISTEN|grep -v grep" % input_port)
if len(is_exists[0]) > 5:
print("|-Error: Specified port is already occupied by other applications")
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("|-Panel port has been changed to: %s" % input_port)
print(
"|-If your server provider is [Alibaba Cloud][Tencent Cloud][Huawei Cloud] or other servers with [Security Group] enabled, please allow port [%s] in the security group to access the panel" % 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("|-If using Tencent Cloud Lighthouse Linux exclusive version panel, no need to add to security group")
def set_panel_path(adminpath):
admin_path = adminpath
msg = ''
from BTPanel import admin_path_checks
if len(admin_path) < 6: msg = 'Security entrance address length cannot be less than 6 characters!'
if admin_path in admin_path_checks: msg = 'This entrance has been occupied by the panel, please use another entrance!'
if not public.path_safe_check(admin_path) or admin_path[-1] == '.': msg = 'Entrance address format is incorrect, example: /my_panel'
if admin_path[0] != '/':
admin_path = "/" + admin_path
if admin_path.find("//") != -1:
msg = 'Entrance address format is incorrect, example: /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 ='Entrance address format is incorrect, example: /my_panel'
admin_path_file = 'data/admin_path.pl'
if msg != '':
print('Setup error:{}'.format(msg))
return
public.writeFile(admin_path_file, admin_path)
public.restart_panel()
print('Security entrance setup successfully: {}'.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"):
"""Sync Tencent Cloud SSL certificates
Traverse nginx certificate zip files in directory, extract and sync to panel ssl directory
"""
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:
# Ensure source directory exists
if not os.path.exists(tencent_ssl_path):
print(f"Directory does not exist: {tencent_ssl_path}")
return False
# Get all sites and corresponding domains
all_sites = public.M('sites').field('name,id').select()
if not all_sites:
print("No website information found")
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 = []
# Traverse all files in directory
for filename in os.listdir(tencent_ssl_path):
if not filename.endswith('_nginx.zip'):
continue
# Get domain name (remove _nginx.zip suffix)
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:
# Extract file
public.ExecShell("cd {} && unzip {}".format(tencent_ssl_path, zip_path))
# Create target ssl directory
os.makedirs(ssl_domain_path, exist_ok=True)
# Copy certificate files
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"Successfully synced certificate: {domain}")
else:
print(f"Failed to sync certificate: {domain}")
continue
# Get certificate information
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"Certificate information not found: {domain}")
continue
try:
cert_detail = json.loads(cert_detail[0]["dns"])
except Exception as e:
print(f"Failed to parse certificate information: {domain}, error: {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"Error processing certificate {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("No certificate information needs to be deployed")
return True
except Exception as e:
print(f"Error syncing certificate: {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 must end with .base and have 1 more dot than base (representing first-level subdomain)
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)
# Upgrade plugins to 6.0
def update_to6():
print("====================================================")
print("Upgrading plugins...")
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("|-Upgrading [%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[Success]\033[0m")
print("====================================================")
print("\033[32mAll plugins have been successfully upgraded to the latest version!\033[0m")
print("====================================================")
# 2024/5/29 5:58 PM Create panel reverse proxy module
def create_reverse_proxy(get):
'''
@param get:
@name Create panel reverse proxy module
@author wzz <2024/5/29 6:00 PM>
@param "data":{"param name":""} <data type> parameter description
@return dict{"status":True/False,"msg":"prompt message"}
'''
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": "BT-Panel reverse proxy [Please do not misoperate, modification may cause panel inaccessible]"
})
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, 'Added successfully', 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, 'Failed to add, possibly Nginx configuration file error, please check first before setting! Error details: {}!'.format(str(e)))
args = public.to_dict_obj({
"id": result['id'],
"siteName": get.siteName,
"remove_path": 1,
})
pMod.delete(args)
return public.returnResult(False, 'Failed to add, possibly Nginx configuration file error, please check first before setting! Error details: {}!'.format(str(e)))
# 2024/5/30 10:38 AM Set SSL for specified proxy
def set_reverse_proxy_ssl(get):
'''
@name Set SSL for specified proxy
@author wzz <2024/5/30 10:38 AM>
@param "data":{"param name":""} <data type> parameter description
@return dict{"status":True/False,"msg":"prompt message"}
'''
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, 'Setup successful')
except Exception as e:
return public.returnMsg(False, 'Setup failed, error {}!'.format(str(e)))
# 2024/5/29 6:21 PM Close panel reverse proxy
def close_reverse_proxy():
'''
@name Close panel reverse proxy
@author wzz <2024/5/29 6:21 PM>
@param "data":{"param name":""} <data type> parameter description
@return dict{"status":True/False,"msg":"prompt message"}
'''
from mod.project.proxy.comMod import main as proxyMod