forked from aaPanel/BaoTa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
files.py
1014 lines (900 loc) · 40.3 KB
/
files.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
#!/usr/bin/env python
#coding:utf-8
# +-------------------------------------------------------------------
# | 宝塔Linux面板
# +-------------------------------------------------------------------
# | Copyright (c) 2015-2016 宝塔软件(http://bt.cn) All rights reserved.
# +-------------------------------------------------------------------
# | Author: 黄文良 <[email protected]>
# +-------------------------------------------------------------------
import sys,os,public,time,json
from BTPanel import session
class files:
#检查敏感目录
def CheckDir(self,path):
path = path.replace('//','/');
if path[-1:] == '/':
path = path[:-1]
nDirs = ('',
'/',
'/*',
'/www',
'/root',
'/boot',
'/bin',
'/etc',
'/home',
'/dev',
'/sbin',
'/var',
'/usr',
'/tmp',
'/sys',
'/proc',
'/media',
'/mnt',
'/opt',
'/lib',
'/srv',
'/selinux',
'/www/server',
'/www/server/data',
'/www/wwwroot',
public.GetConfigValue('root_path'),
public.GetConfigValue('logs_path'),
public.GetConfigValue('setup_path'))
return not path in nDirs
#检测文件名
def CheckFileName(self,filename):
nots = ['\\','&','*','#','@','|']
if filename.find('/') != -1: filename = filename.split('/')[-1]
for n in nots:
if n in filename: return False
return True
#上传文件
def UploadFile(self,get):
from werkzeug.utils import secure_filename
from flask import request
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
if not os.path.exists(get.path): os.makedirs(get.path)
f = request.files['zunfile']
filename = os.path.join(get.path, f.filename)
if sys.version_info[0] == 2: filename = filename.encode('utf-8');
s_path = get.path
if os.path.exists(filename):s_path = filename
p_stat = os.stat(s_path)
f.save(filename)
os.chown(filename,p_stat.st_uid,p_stat.st_gid)
os.chmod(filename,p_stat.st_mode)
public.WriteLog('TYPE_FILE','FILE_UPLOAD_SUCCESS',(filename,get['path']));
return public.returnMsg(True,'FILE_UPLOAD_SUCCESS');
#取文件/目录列表
def GetDir(self,get):
if not hasattr(get,'path'): get.path = '/www/wwwroot'
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
if not os.path.exists(get.path): get.path = '/www';
import pwd
dirnames = []
filenames = []
search = None
if hasattr(get,'search'): search = get.search.strip().lower();
#包含分页类
import page
#实例化分页类
page = page.Page();
info = {}
info['count'] = self.GetFilesCount(get.path,search);
info['row'] = 100
info['p'] = 1
if hasattr(get,'p'):
try:
info['p'] = int(get['p'])
except:
info['p'] = 1
info['uri'] = {}
info['return_js'] = ''
if hasattr(get,'tojs'):
info['return_js'] = get.tojs
if hasattr(get,'showRow'):
info['row'] = int(get.showRow);
#获取分页数据
data = {}
data['PAGE'] = page.GetPage(info,'1,2,3,4,5,6,7,8')
i = 0;
n = 0;
for filename in os.listdir(get.path):
if search:
if filename.lower().find(search) == -1: continue;
i += 1;
if n >= page.ROW: break;
if i < page.SHIFT: continue;
try:
filePath = get.path+'/'+filename
link = '';
if os.path.islink(filePath):
filePath = os.readlink(filePath);
link = ' -> ' + filePath;
if not os.path.exists(filePath): filePath = get.path + '/' + filePath;
if not os.path.exists(filePath): continue;
stat = os.stat(filePath)
accept = str(oct(stat.st_mode)[-3:]);
mtime = str(int(stat.st_mtime))
user = ''
try:
user = pwd.getpwuid(stat.st_uid).pw_name
except:
user = str(stat.st_uid)
size = str(stat.st_size)
if os.path.isdir(filePath):
dirnames.append(filename+';'+size+';'+mtime+';'+accept+';'+user+';'+link);
else:
filenames.append(filename+';'+size+';'+mtime+';'+accept+';'+user+';'+link);
n += 1;
except:
continue;
data['DIR'] = sorted(dirnames);
data['FILES'] = sorted(filenames);
data['PATH'] = str(get.path)
if hasattr(get,'disk'):
import system
data['DISK'] = system.system().GetDiskInfo();
return data
#计算文件数量
def GetFilesCount(self,path,search):
i=0;
for name in os.listdir(path):
if search:
if name.lower().find(search) == -1: continue;
i += 1;
return i;
#创建文件
def CreateFile(self,get):
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8').strip();
try:
if not self.CheckFileName(get.path): return public.returnMsg(False,'文件名中不能包含特殊字符!');
if os.path.exists(get.path):
return public.returnMsg(False,'FILE_EXISTS')
path = os.path.dirname(get.path)
if not os.path.exists(path):
os.makedirs(path)
open(get.path,'w+').close()
self.SetFileAccept(get.path);
public.WriteLog('TYPE_FILE','FILE_CREATE_SUCCESS',(get.path,))
return public.returnMsg(True,'FILE_CREATE_SUCCESS')
except:
return public.returnMsg(False,'FILE_CREATE_ERR')
#创建目录
def CreateDir(self,get):
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8').strip();
try:
if not self.CheckFileName(get.path): return public.returnMsg(False,'目录名中不能包含特殊字符!');
if os.path.exists(get.path):
return public.returnMsg(False,'DIR_EXISTS')
os.makedirs(get.path)
self.SetFileAccept(get.path);
public.WriteLog('TYPE_FILE','DIR_CREATE_SUCCESS',(get.path,))
return public.returnMsg(True,'DIR_CREATE_SUCCESS')
except:
return public.returnMsg(False,'DIR_CREATE_ERR')
#删除目录
def DeleteDir(self,get) :
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
#if get.path.find('/www/wwwroot') == -1: return public.returnMsg(False,'此为演示服务器,禁止删除此目录!');
if not os.path.exists(get.path):
return public.returnMsg(False,'DIR_NOT_EXISTS')
#检查是否敏感目录
if not self.CheckDir(get.path):
return public.returnMsg(False,'FILE_DANGER');
try:
#检查是否存在.user.ini
if os.path.exists(get.path+'/.user.ini'):
os.system("chattr -i '"+get.path+"/.user.ini'")
if hasattr(get,'empty'):
if not self.delete_empty(get.path): return public.returnMsg(False,'DIR_ERR_NOT_EMPTY');
if os.path.exists('data/recycle_bin.pl'):
if self.Mv_Recycle_bin(get): return public.returnMsg(True,'DIR_MOVE_RECYCLE_BIN');
import shutil
shutil.rmtree(get.path)
public.WriteLog('TYPE_FILE','DIR_DEL_SUCCESS',(get.path,))
return public.returnMsg(True,'DIR_DEL_SUCCESS')
except:
return public.returnMsg(False,'DIR_DEL_ERR')
#删除 空目录
def delete_empty(self,path):
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
for files in os.listdir(path):
return False
return True
#删除文件
def DeleteFile(self,get):
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
if not os.path.exists(get.path):
return public.returnMsg(False,'FILE_NOT_EXISTS')
#检查是否为.user.ini
if get.path.find('.user.ini'):
os.system("chattr -i '"+get.path+"'")
try:
if os.path.exists('data/recycle_bin.pl'):
if self.Mv_Recycle_bin(get): return public.returnMsg(True,'FILE_MOVE_RECYCLE_BIN');
os.remove(get.path)
public.WriteLog('TYPE_FILE','FILE_DEL_SUCCESS',(get.path,))
return public.returnMsg(True,'FILE_DEL_SUCCESS')
except:
return public.returnMsg(False,'FILE_DEL_ERR')
#移动到回收站
def Mv_Recycle_bin(self,get):
rPath = '/www/Recycle_bin/'
if not os.path.exists(rPath): os.system('mkdir -p ' + rPath);
rFile = rPath + get.path.replace('/','_bt_') + '_t_' + str(time.time());
try:
import shutil
shutil.move(get.path, rFile)
public.WriteLog('TYPE_FILE','FILE_MOVE_RECYCLE_BIN',(get.path,))
return True;
except:
public.WriteLog('TYPE_FILE','FILE_MOVE_RECYCLE_BIN_ERR',(get.path,))
return False;
#从回收站恢复
def Re_Recycle_bin(self,get):
rPath = '/www/Recycle_bin/'
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
dFile = get.path.replace('_bt_','/').split('_t_')[0];
get.path = rPath + get.path
if dFile.find('BTDB_') != -1:
import database;
return database.database().RecycleDB(get.path);
try:
import shutil
shutil.move(get.path, dFile)
public.WriteLog('TYPE_FILE','FILE_RE_RECYCLE_BIN',(dFile,))
return public.returnMsg(True,'FILE_RE_RECYCLE_BIN');
except:
public.WriteLog('TYPE_FILE','FILE_RE_RECYCLE_BIN_ERR',(dFile,))
return public.returnMsg(False,'FILE_RE_RECYCLE_BIN_ERR');
#获取回收站信息
def Get_Recycle_bin(self,get):
rPath = '/www/Recycle_bin/'
if not os.path.exists(rPath): os.system('mkdir -p ' + rPath);
data = {};
data['dirs'] = [];
data['files'] = [];
data['status'] = os.path.exists('data/recycle_bin.pl');
data['status_db'] = os.path.exists('data/recycle_bin_db.pl');
for file in os.listdir(rPath):
try:
tmp = {};
fname = rPath + file;
tmp1 = file.split('_bt_');
tmp2 = tmp1[len(tmp1)-1].split('_t_');
tmp['rname'] = file;
tmp['dname'] = file.replace('_bt_','/').split('_t_')[0];
tmp['name'] = tmp2[0];
tmp['time'] = int(float(tmp2[1]));
if os.path.islink(fname):
filePath = os.readlink(fname);
link = ' -> ' + filePath;
if os.path.exists(filePath):
tmp['size'] = os.path.getsize(filePath);
else:
tmp['size'] = 0;
else:
tmp['size'] = os.path.getsize(fname);
if os.path.isdir(fname):
data['dirs'].append(tmp);
else:
data['files'].append(tmp);
except:
continue;
return data;
#彻底删除
def Del_Recycle_bin(self,get):
rPath = '/www/Recycle_bin/'
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
dFile = get.path.split('_t_')[0];
if dFile.find('BTDB_') != -1:
import database;
return database.database().DeleteTo(rPath+get.path);
if not self.CheckDir(rPath + get.path):
return public.returnMsg(False,'FILE_DANGER');
os.system('chattr -R -i ' + rPath + get.path)
if os.path.isdir(rPath + get.path):
import shutil
shutil.rmtree(rPath + get.path);
else:
os.remove(rPath + get.path);
tfile = get.path.replace('_bt_','/').split('_t_')[0];
public.WriteLog('TYPE_FILE','FILE_DEL_RECYCLE_BIN',(tfile,));
return public.returnMsg(True,'FILE_DEL_RECYCLE_BIN',(tfile,));
#清空回收站
def Close_Recycle_bin(self,get):
rPath = '/www/Recycle_bin/'
os.system('chattr -R -i ' + rPath)
import database,shutil;
rlist = os.listdir(rPath)
i = 0;
l = len(rlist);
for name in rlist:
i += 1;
path = rPath + name;
public.writeSpeed(name,i,l);
if name.find('BTDB_') != -1:
database.database().DeleteTo(path);
continue;
if os.path.isdir(path):
#os.system('rm -rf ' + path);
shutil.rmtree(path);
else:
#os.system('rm -f ' + path);
os.remove(path);
public.writeSpeed(None,0,0);
public.WriteLog('TYPE_FILE','FILE_CLOSE_RECYCLE_BIN');
return public.returnMsg(True,'FILE_CLOSE_RECYCLE_BIN');
#回收站开关
def Recycle_bin(self,get):
c = 'data/recycle_bin.pl';
if hasattr(get,'db'): c = 'data/recycle_bin_db.pl';
if os.path.exists(c):
os.remove(c)
public.WriteLog('TYPE_FILE','FILE_OFF_RECYCLE_BIN');
return public.returnMsg(True,'FILE_OFF_RECYCLE_BIN');
else:
public.writeFile(c,'True');
public.WriteLog('TYPE_FILE','FILE_ON_RECYCLE_BIN');
return public.returnMsg(True,'FILE_ON_RECYCLE_BIN');
#复制文件
def CopyFile(self,get) :
if sys.version_info[0] == 2:
get.sfile = get.sfile.encode('utf-8');
get.dfile = get.dfile.encode('utf-8');
if not os.path.exists(get.sfile):
return public.returnMsg(False,'FILE_NOT_EXISTS')
#if os.path.exists(get.dfile):
# return public.returnMsg(False,'FILE_EXISTS')
if os.path.isdir(get.sfile):
return self.CopyDir(get)
import shutil
try:
shutil.copyfile(get.sfile, get.dfile)
public.WriteLog('TYPE_FILE','FILE_COPY_SUCCESS',(get.sfile,get.dfile))
stat = os.stat(get.sfile)
os.chown(get.dfile,stat.st_uid,stat.st_gid)
return public.returnMsg(True,'FILE_COPY_SUCCESS')
except:
return public.returnMsg(False,'FILE_COPY_ERR')
#复制文件夹
def CopyDir(self,get):
if sys.version_info[0] == 2:
get.sfile = get.sfile.encode('utf-8');
get.dfile = get.dfile.encode('utf-8');
if not os.path.exists(get.sfile):
return public.returnMsg(False,'DIR_NOT_EXISTS');
if os.path.exists(get.dfile):
return public.returnMsg(False,'DIR_EXISTS');
#if not self.CheckDir(get.dfile):
# return public.returnMsg(False,'FILE_DANGER');
import shutil
try:
shutil.copytree(get.sfile, get.dfile)
stat = os.stat(get.sfile)
os.chown(get.dfile,stat.st_uid,stat.st_gid)
public.WriteLog('TYPE_FILE','DIR_COPY_SUCCESS',(get.sfile,get.dfile))
return public.returnMsg(True,'DIR_COPY_SUCCESS')
except:
return public.returnMsg(False,'DIR_COPY_ERR')
#移动文件或目录
def MvFile(self,get):
if sys.version_info[0] == 2:
get.sfile = get.sfile.encode('utf-8');
get.dfile = get.dfile.encode('utf-8');
if not self.CheckFileName(get.dfile): return public.returnMsg(False,'文件名中不能包含特殊字符!');
if not os.path.exists(get.sfile):
return public.returnMsg(False,'FILE_NOT_EXISTS')
#if os.path.exists(get.dfile):
# return public.returnMsg(False,'FILE_EXISTS')
if not self.CheckDir(get.sfile):
return public.returnMsg(False,'FILE_DANGER');
import shutil
try:
shutil.move(get.sfile, get.dfile)
public.WriteLog('TYPE_FILE','MOVE_SUCCESS',(get.sfile,get.dfile))
return public.returnMsg(True,'MOVE_SUCCESS')
except:
return public.returnMsg(False,'MOVE_ERR')
#检查文件是否存在
def CheckExistsFiles(self,get):
if sys.version_info[0] == 2: get.dfile = get.dfile.encode('utf-8');
data = [];
filesx = [];
if not hasattr(get,'filename'):
filesx = json.loads(session['selected']['data']);
else:
filesx.append(get.filename);
for fn in filesx:
if fn == '.': continue
filename = get.dfile + '/' + fn;
if os.path.exists(filename):
tmp = {}
stat = os.stat(filename)
tmp['filename'] = fn;
tmp['size'] = os.path.getsize(filename);
tmp['mtime'] = str(int(stat.st_mtime));
data.append(tmp);
return data;
#获取文件内容
def GetFileBody(self,get) :
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
if not os.path.exists(get.path):
if get.path.find('rewrite') == -1:
return public.returnMsg(False,'FILE_NOT_EXISTS',(get.path,))
public.writeFile(get.path,'');
if os.path.getsize(get.path) > 2097152: return public.returnMsg(False,u'不能在线编辑大于2MB的文件!');
fp = open(get.path,'rb')
data = {}
data['status'] = True
try:
if fp:
from chardet.universaldetector import UniversalDetector
detector = UniversalDetector()
srcBody = b""
for line in fp.readlines():
detector.feed(line)
srcBody += line
detector.close()
char = detector.result
data['encoding'] = char['encoding']
if char['encoding'] == 'GB2312' or not char['encoding'] or char['encoding'] == 'TIS-620' or char['encoding'] == 'ISO-8859-9': data['encoding'] = 'GBK';
if char['encoding'] == 'ascii' or char['encoding'] == 'ISO-8859-1': data['encoding'] = 'utf-8';
if char['encoding'] == 'Big5': data['encoding'] = 'BIG5';
if not char['encoding'] in ['GBK','utf-8','BIG5']: data['encoding'] = 'utf-8';
try:
if sys.version_info[0] == 2:
data['data'] = srcBody.decode(data['encoding']).encode('utf-8',errors='ignore');
else:
data['data'] = srcBody.decode(data['encoding'])
except:
data['encoding'] = char['encoding'];
if sys.version_info[0] == 2:
data['data'] = srcBody.decode(data['encoding']).encode('utf-8',errors='ignore');
else:
data['data'] = srcBody.decode(data['encoding'])
else:
if sys.version_info[0] == 2:
data['data'] = srcBody.decode('utf-8').encode('utf-8');
else:
data['data'] = srcBody.decode('utf-8')
data['encoding'] = u'utf-8';
return data;
except Exception as ex:
return public.returnMsg(False,u'文件编码不被兼容,无法正确读取文件!' + str(ex));
#保存文件
def SaveFileBody(self,get):
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
if not os.path.exists(get.path):
if get.path.find('.htaccess') == -1:
return public.returnMsg(False,'FILE_NOT_EXISTS')
try:
isConf = -1
if os.path.exists('/etc/init.d/nginx') or os.path.exists('/etc/init.d/httpd'):
isConf = get.path.find('nginx');
if isConf == -1: isConf = get.path.find('apache');
if isConf == -1: isConf = get.path.find('rewrite');
if isConf != -1:
os.system('\\cp -a '+get.path+' /tmp/backup.conf');
data = get.data;
userini = False;
if get.path.find('.user.ini') != -1:
userini = True;
public.ExecShell('chattr -i ' + get.path);
if get.path.find('/www/server/cron') != -1:
try:
import crontab
data = crontab.crontab().CheckScript(data);
except:
pass
if get.encoding == 'ascii':get.encoding = 'utf-8';
if sys.version_info[0] == 2:
data = data.encode(get.encoding,errors='ignore');
fp = open(get.path,'w+')
else:
data = data.encode(get.encoding,errors='ignore').decode(get.encoding);
fp = open(get.path,'w+',encoding=get.encoding)
fp.write(data)
fp.close()
if isConf != -1:
isError = public.checkWebConfig();
if isError != True:
os.system('\\cp -a /tmp/backup.conf '+get.path);
return public.returnMsg(False,'ERROR:<br><font style="color:red;">'+isError.replace("\n",'<br>')+'</font>');
public.serviceReload();
if userini: public.ExecShell('chattr +i ' + get.path);
public.WriteLog('TYPE_FILE','FILE_SAVE_SUCCESS',(get.path,));
return public.returnMsg(True,'FILE_SAVE_SUCCESS');
except Exception as ex:
return public.returnMsg(False,'FILE_SAVE_ERR' + str(ex));
#文件压缩
def Zip(self,get) :
if sys.version_info[0] == 2:
get.sfile = get.sfile.encode('utf-8');
get.dfile = get.dfile.encode('utf-8');
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
if get.sfile.find(',') == -1:
if not os.path.exists(get.path+'/'+get.sfile): return public.returnMsg(False,'FILE_NOT_EXISTS');
try:
tmps = '/tmp/panelExec.log'
if get.type == 'zip':
os.system("cd '"+get.path+"' && zip '"+get.dfile+"' -r '"+get.sfile+"' > "+tmps+" 2>&1")
else:
sfiles = ''
for sfile in get.sfile.split(','):
if not sfile: continue;
sfiles += " '" + sfile + "'";
os.system("cd '" + get.path + "' && tar -zcvf '" + get.dfile + "' " + sfiles + " > " + tmps + " 2>&1");
self.SetFileAccept(get.dfile);
public.WriteLog("TYPE_FILE", 'ZIP_SUCCESS',(get.sfile,get.dfile));
return public.returnMsg(True,'ZIP_SUCCESS')
except:
return public.returnMsg(False,'ZIP_ERR')
#文件解压
def UnZip(self,get):
if sys.version_info[0] == 2:
get.sfile = get.sfile.encode('utf-8');
get.dfile = get.dfile.encode('utf-8');
if not os.path.exists(get.sfile):
return public.returnMsg(False,'FILE_NOT_EXISTS');
if not hasattr(get,'password'): get.password = '';
try:
if not hasattr(get,'coding'): get.coding = 'UTF-8';
tmps = '/tmp/panelExec.log'
if get.sfile[-4:] == '.zip':
os.system("export LANG=\"zh_CN." + get.coding + "\" && unzip -P '"+get.password+"' -o '" + get.sfile + "' -d '" + get.dfile + "' > " + tmps + " 2>&1")
elif get.sfile[-7:] == '.tar.gz' or get.sfile[-4:] == '.tgz':
os.system("tar zxf '" + get.sfile + "' -C '" + get.dfile + "' > " + tmps + " 2>&1");
else:
os.system("gunzip -c " + get.sfile + " > " + get.sfile[:-3])
if self.CheckDir(get.dfile):
sites_path = public.M('config').where('id=?',(1,)).getField('sites_path');
if get.dfile.find('/www/wwwroot') != -1 or get.dfile.find(sites_path) != -1:
self.SetFileAccept(get.dfile);
else:
import pwd
user = pwd.getpwuid(os.stat(get.dfile).st_uid).pw_name
os.system("chown -R %s:%s %s" % (user,user,get.dfile))
public.WriteLog("TYPE_FILE", 'UNZIP_SUCCESS',(get.sfile,get.dfile));
return public.returnMsg(True,'UNZIP_SUCCESS');
except:
return public.returnMsg(False,'文件解压失败!')
#获取文件/目录 权限信息
def GetFileAccess(self,get):
if sys.version_info[0] == 2: get.filename = get.filename.encode('utf-8');
data = {}
try:
import pwd
stat = os.stat(get.filename)
data['chmod'] = str(oct(stat.st_mode)[-3:])
data['chown'] = pwd.getpwuid(stat.st_uid).pw_name
except:
data['chmod'] = 755
data['chown'] = 'www'
return data
#设置文件权限和所有者
def SetFileAccess(self,get,all = '-R'):
if sys.version_info[0] == 2: get.filename = get.filename.encode('utf-8');
try:
if not self.CheckDir(get.filename): return public.returnMsg(False,'FILE_DANGER');
if not os.path.exists(get.filename):
return public.returnMsg(False,'FILE_NOT_EXISTS')
os.system('chmod '+all+' '+get.access+" '"+get.filename+"'")
os.system('chown '+all+' '+get.user+':'+get.user+" '"+get.filename+"'")
public.WriteLog('TYPE_FILE','FILE_ACCESS_SUCCESS',(get.filename,get.access,get.user))
return public.returnMsg(True,'SET_SUCCESS')
except:
return public.returnMsg(False,'SET_ERROR')
def SetFileAccept(self,filename):
os.system('chown -R www:www ' + filename)
os.system('chmod -R 755 ' + filename)
#取目录大小
def GetDirSize(self,get):
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
tmp = public.ExecShell('du -sbh '+ get.path)
return tmp[0].split()[0]
def CloseLogs(self,get):
get.path = public.GetConfigValue('root_path')
os.system('rm -f '+public.GetConfigValue('logs_path')+'/*')
if public.get_webserver() == 'nginx':
os.system('kill -USR1 `cat '+public.GetConfigValue('setup_path')+'/nginx/logs/nginx.pid`');
else:
os.system('/etc/init.d/httpd reload');
public.WriteLog('TYPE_FILE','SITE_LOG_CLOSE')
get.path = public.GetConfigValue('logs_path')
return self.GetDirSize(get)
#批量操作
def SetBatchData(self,get):
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
if get.type == '1' or get.type == '2':
session['selected'] = get
return public.returnMsg(True,'FILE_ALL_TIPS')
elif get.type == '3':
for key in json.loads(get.data):
try:
if sys.version_info[0] == 2: key = key.encode('utf-8')
filename = get.path+'/'+key
if not self.CheckDir(filename): return public.returnMsg(False,'FILE_DANGER');
os.system('chmod -R '+get.access+" '"+filename+"'")
os.system('chown -R '+get.user+':'+get.user+" '"+filename+"'")
except:
continue;
public.WriteLog('TYPE_FILE','FILE_ALL_ACCESS')
return public.returnMsg(True,'FILE_ALL_ACCESS')
else:
import shutil
isRecyle = os.path.exists('data/recycle_bin.pl')
path = get.path
get.data = json.loads(get.data)
l = len(get.data);
i = 0;
for key in get.data:
try:
if sys.version_info[0] == 2: key = key.encode('utf-8')
filename = path + '/'+key
get.path = filename;
if not os.path.exists(filename): continue
i += 1;
public.writeSpeed(key,i,l);
if os.path.isdir(filename):
if not self.CheckDir(filename): return public.returnMsg(False,'FILE_DANGER');
if isRecyle:
self.Mv_Recycle_bin(get)
else:
shutil.rmtree(filename)
else:
if key == '.user.ini': os.system('chattr -i ' + filename);
if isRecyle:
self.Mv_Recycle_bin(get)
else:
os.remove(filename)
except:
continue;
public.writeSpeed(None,0,0);
public.WriteLog('TYPE_FILE','FILE_ALL_DEL')
return public.returnMsg(True,'FILE_ALL_DEL')
#批量粘贴
def BatchPaste(self,get):
import shutil
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
if not self.CheckDir(get.path): return public.returnMsg(False,'FILE_DANGER');
i = 0;
myfiles = json.loads(session['selected']['data'])
l = len(myfiles);
if get.type == '1':
for key in myfiles:
i += 1
public.writeSpeed(key,i,l);
try:
if sys.version_info[0] == 2:
sfile = session['selected']['path'] + '/' + key.encode('utf-8')
dfile = get.path + '/' + key.encode('utf-8')
else:
sfile = session['selected']['path'] + '/' + key
dfile = get.path + '/' + key
if os.path.isdir(sfile):
shutil.copytree(sfile,dfile)
else:
shutil.copyfile(sfile,dfile)
stat = os.stat(sfile)
os.chown(dfile,stat.st_uid,stat.st_gid)
except:
continue;
public.WriteLog('TYPE_FILE','FILE_ALL_COPY',(session['selected']['path'],get.path))
else:
for key in myfiles:
try:
i += 1
public.writeSpeed(key,i,l);
if sys.version_info[0] == 2:
sfile = session['selected']['path'] + '/' + key.encode('utf-8')
dfile = get.path + '/' + key.encode('utf-8')
else:
sfile = session['selected']['path'] + '/' + key
dfile = get.path + '/' + key
shutil.move(sfile,dfile)
except:
continue;
public.WriteLog('TYPE_FILE','FILE_ALL_MOTE',(session['selected']['path'],get.path))
public.writeSpeed(None,0,0);
errorCount = len(myfiles) - i
del(session['selected'])
return public.returnMsg(True,'FILE_ALL',(str(i),str(errorCount)));
#下载文件
def DownloadFile(self,get):
if sys.version_info[0] == 2: get.path = get.path.encode('utf-8');
import db,time
isTask = '/tmp/panelTask.pl'
execstr = get.url +'|bt|'+get.path+'/'+get.filename
sql = db.Sql()
sql.table('tasks').add('name,type,status,addtime,execstr',('下载文件['+get.filename+']','download','0',time.strftime('%Y-%m-%d %H:%M:%S'),execstr))
public.writeFile(isTask,'True')
self.SetFileAccept(get.path+'/'+get.filename);
public.WriteLog('TYPE_FILE','FILE_DOWNLOAD',(get.url , get.path));
return public.returnMsg(True,'FILE_DOANLOAD')
#添加安装任务
def InstallSoft(self,get):
import db,time
path = public.GetConfigValue('setup_path') + '/php'
if not os.path.exists(path): os.system("mkdir -p " + path);
if session['server_os']['x'] != 'RHEL': get.type = '3'
apacheVersion='false';
if public.get_webserver() == 'apache':
apacheVersion = public.readFile(public.GetConfigValue('setup_path')+'/apache/version.pl');
public.writeFile('/var/bt_apacheVersion.pl',apacheVersion)
public.writeFile('/var/bt_setupPath.conf',public.GetConfigValue('root_path'))
isTask = '/tmp/panelTask.pl'
execstr = "cd " + public.GetConfigValue('setup_path') + "/panel/install && /bin/bash install_soft.sh " + get.type + " install " + get.name + " "+ get.version;
sql = db.Sql()
if hasattr(get,'id'):
id = get.id;
else:
id = None;
sql.table('tasks').add('id,name,type,status,addtime,execstr',(None,'安装['+get.name+'-'+get.version+']','execshell','0',time.strftime('%Y-%m-%d %H:%M:%S'),execstr))
public.writeFile(isTask,'True')
public.WriteLog('TYPE_SETUP','PLUGIN_ADD',(get.name,get.version));
time.sleep(0.1);
return public.returnMsg(True,'PLUGIN_ADD');
#删除任务队列
def RemoveTask(self,get):
try:
name = public.M('tasks').where('id=?',(get.id,)).getField('name');
status = public.M('tasks').where('id=?',(get.id,)).getField('status');
public.M('tasks').delete(get.id);
if status == '-1':
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("kill `ps aux | grep 'python task.pyc$'|awk '{print $2}'`");
os.system('''
pids=`ps aux | grep 'sh'|grep -v grep|grep install|awk '{print $2}'`
arr=($pids)
for p in ${arr[@]}
do
kill -9 $p
done
''');
os.system('rm -f ' + name.replace('扫描目录[','').replace(']','') + '/scan.pl');
isTask = '/tmp/panelTask.pl';
public.writeFile(isTask,'True');
os.system('/etc/init.d/bt start');
except:
os.system('/etc/init.d/bt start');
return public.returnMsg(True,'PLUGIN_DEL');
#重新激活任务
def ActionTask(self,get):
isTask = '/tmp/panelTask.pl'
public.writeFile(isTask,'True');
return public.returnMsg(True,'PLUGIN_ACTION');
#卸载软件
def UninstallSoft(self,get):
public.writeFile('/var/bt_setupPath.conf',public.GetConfigValue('root_path'))
get.type = '0'
if session['server_os']['x'] != 'RHEL': get.type = '3'
execstr = "cd " + public.GetConfigValue('setup_path') + "/panel/install && /bin/bash install_soft.sh "+get.type+" uninstall " + get.name.lower() + " "+ get.version.replace('.','');
os.system(execstr);
public.WriteLog('TYPE_SETUP','PLUGIN_UNINSTALL',(get.name,get.version));
return public.returnMsg(True,"PLUGIN_UNINSTALL");
#取任务队列进度
def GetTaskSpeed(self,get):
tempFile = '/tmp/panelExec.log'
freshFile = '/tmp/panelFresh'
import db
find = db.Sql().table('tasks').where('status=? OR status=?',('-1','0')).field('id,type,name,execstr').find()
if not len(find): return public.returnMsg(False,'当前没有任务队列在执行-2!')
isTask = '/tmp/panelTask.pl'
public.writeFile(isTask,'True');
echoMsg = {}
echoMsg['name'] = find['name']
echoMsg['execstr'] = find['execstr']
if find['type'] == 'download':
try:
tmp = public.readFile(tempFile)
if len(tmp) < 10:
return public.returnMsg(False,'当前没有任务队列在执行-3!')
echoMsg['msg'] = json.loads(tmp)
echoMsg['isDownload'] = True
except:
db.Sql().table('tasks').where("id=?",(find['id'],)).save('status',('0',))
return public.returnMsg(False,'当前没有任务队列在执行-4!')
else:
echoMsg['msg'] = self.GetLastLine(tempFile,20)
echoMsg['isDownload'] = False
echoMsg['task'] = public.M('tasks').where("status!=?",('1',)).field('id,status,name,type').order("id asc").select()
return echoMsg
#取执行日志
def GetExecLog(self,get):
return self.GetLastLine('/tmp/panelExec.log',100);
#读文件指定倒数行数
def GetLastLine(self,inputfile,lineNum):
try:
fp = open(inputfile, 'r')
lastLine = ""
lines = fp.readlines()
count = len(lines)
if count>lineNum:
num=lineNum
else:
num=count
i=1;
lastre = []
for i in range(1,(num+1)):
if lines :
n = -i
lastLine = lines[n].strip()
fp.close()
lastre.append(lastLine)
result = ''
lineNum -= 1
while lineNum > 0:
result += lastre[lineNum]+"\n"
lineNum -= 1
return result
except:
return public.getMsg('TASK_SLEEP');
#执行SHELL命令
def ExecShell(self,get):
disabled = ['vi','vim','top','passwd','su']
get.shell = get.shell.strip()
tmp = get.shell.split(' ');
if tmp[0] in disabled: return public.returnMsg(False,'FILE_SHELL_ERR',(tmp[0],));
shellStr = '''#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
cd %s
%s
''' % (get.path,get.shell)
public.writeFile('/tmp/panelShell.sh',shellStr);
os.system('nohup bash /tmp/panelShell.sh > /tmp/panelShell.pl 2>&1 &');
return public.returnMsg(True,'FILE_SHELL_EXEC');
#取SHELL执行结果
def GetExecShellMsg(self,get):
fileName = '/tmp/panelShell.pl';
if not os.path.exists(fileName): return 'FILE_SHELL_EMPTY';
return public.readFile('/tmp/panelShell.pl');
#文件搜索
def GetSearch(self,get):
if not os.path.exists(get.path): return public.returnMsg(False,'DIR_NOT_EXISTS');
return public.ExecShell("find "+get.path+" -name '*"+get.search+"*'");
#保存草稿
def SaveTmpFile(self,get):
save_path = '/www/server/panel/temp'
if not os.path.exists(save_path): os.makedirs(save_path)
get.path = os.path.join(save_path,public.Md5(get.path) + '.tmp')
public.writeFile(get.path,get.body)
return public.returnMsg(True,'已保存')
#获取草稿
def GetTmpFile(self,get):
self.CleanOldTmpFile()
save_path = '/www/server/panel/temp'
if not os.path.exists(save_path): os.makedirs(save_path)
src_path = get.path
get.path = os.path.join(save_path,public.Md5(get.path) + '.tmp')
if not os.path.exists(get.path): return public.returnMsg(False,'没有可用的草稿!')
data = self.GetFileInfo(get.path)
data['file'] = src_path
if 'rebody' in get: data['body'] = public.readFile(get.path)
return data
#清除过期草稿
def CleanOldTmpFile(self):
if 'clean_tmp_file' in session: return True
save_path = '/www/server/panel/temp'
max_time = 86400 * 30
now_time = time.time()
for tmpFile in os.listdir(save_path):
filename = os.path.join(save_path,tmpFile)
fileInfo = self.GetFileInfo(filename)