forked from actrace/ffs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglob.php
executable file
·1340 lines (1308 loc) · 42.2 KB
/
glob.php
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
<?php
header("content-Type: text/html; charset=utf-8");
/*载入配置*/
include 'config.php';
/*——————————定义常量——————————————
ROT:系统目录……URL:站点地址……SYS:安全目录……RUN:安全常量
*/
$www_dir = pathinfo($_SERVER['SCRIPT_NAME']);
$www_url = str_replace("\\", '', $_SERVER['HTTP_HOST'] . $www_dir['dirname']);
define('ROT', str_replace('\\', '/', dirname(__file__)) . '/');
define('URL', 'http://' . str_replace('//', '/', $www_url . '/'));
define('SYS', ROT . SAVE_DIR . '/');
define('RUN', true);
define('VER1', 'C-120226');
define('VER2', 'M-120226');
/*————————————DEBUG——————————————*/
if (DEBUG)error_reporting(0);
/*task.php*/
include_once 'task.php';
/*建立全局变量*/
$FFS = array();
/*
————————————文件操作函数定义————————————
FILE_UPLOAD :上传处理,固定模式的上传处理函数,自动处理文件,返回执行结果。
FILE_MKPATH :生成路径,有两种模式,区别在于是否在获取不到路径的时候自动生成。
FILE_IDPATH :解析路径,传入分享码,头部路径,返回一个由分享码解析的路径,其值不受安全设置的影响。
FILE_DELETE :删除文件,将会把文件记录和文件数据同时删除,返回布尔值。
FILE_MKINFO :生成记录,传入一个带有ID的数组,生成记录文件。
FILE_REINFO :访问记录,传入ID作为索引,查找目标记录,并返回解压的数组。
FILE_OUTPUT :输出内容,传入文件数组,和速度限制值,输出该文件的内容。自动记录下载次数,最后下载的时间。
FILE_MAKEDB :创建虚拟数据库,创建一个虚拟数据库,用于大规模数据信息查询。
FILE_READDB :读取虚拟数据库,把虚拟数据库的内容输出,可以指定记录起始位置和结束位置,定向读取。
FILE_SEARCH :搜索虚拟数据库,传入一个要搜索的字段,以及关键词,然后返回结果,没有结果返回false。
FILE_CLEAR :传入清理规则,列出可以清理的文件。
FILE_REPORT :传入文件提取码和理由,返回是否已经受过举报。
FILE_REPORT_LIST_UPDATE :更新举报列表。
FILE_REPORT_LIST :生成举报列表
FILE_REPORT_DELETE :删除举报
FILE_CREATE_IMG :创建文件信息图片
FILE_SITEMAP :创建网站地图
FILE_ROBOTS :创建robots.txt文件
FILE_FORSEARCH :创建用于搜索引擎的信息
FILE_QUICK_LINK :根据文件类型和已安装扩展输出快捷链接
FILE_SYNC :传入一个字符串,分割成目录形式的配置文件
FILE_SYNC_TRY :传入一个字符串,生成配置文件并测试。
————————————字串操作函数定义————————————
STR_BCPOW :传入两个数值,返回x的y次方
STR_IDENCODE :生成ID,需要传入一个UNIX时间戳,然后返回7位编码。
STR_IDDECODE :解压ID,传入编码,返回一个UNIX时间戳。
STR_FILENAME :传入带有后缀的文件名,除掉后缀后返回。
STR_FILETYPE :传入带有后缀的文件名,只将后缀返回。
STR_FILEMIME :传入带有后缀的文件名,根据后缀返回文件的MIME类型。
STR_FILESIZE :传入文件字节数,返回格式化的文件大小。
STR_EDITNOTICE :传入字符串,后台编辑成功显示结果。
CUT_STR :字符串截取,传入字符串和所要截取的长度。
STR_ENCRYPT :加密字符串
STR_ARRSORT :传入需要排序的数组,指定字段,进行排序,返回结果数组。
STR_TIME :按时间倒序排列
STR_DOWN :按文件下载次数倒序排列
STR_REQUEST_URI :获取当前URL
STR_CUT_KEY :根据当前URL获取KEY
STR_SITEBAN :域名黑白名单
————————————页面引擎函数定义————————————
HTML_LOAD :载入模板
HTML_CONTENT :输入标签数组
HTML_PUT :输出页面内容
————————————系统控制函数定义————————————
ERROR :传入两个参数,一个是标题,一个是详细信息。
VERSION :传入对比类型,需求版本号,返回结果。
SITE_CLOSE :站点关闭
————————————邮件函数定义————————————
MAIL_TEST :作为测试当前邮件配置用
MAIL_SEND :发送邮件
MAIL_SEND_VIP :发送会员邮件
*/
/*————————————文件操作函数开始————————————*/
function FILE_UPLOAD()
{
/*检测屏蔽关键词*/
$shieldword = explode(',', SHIELDWORD);
foreach ($shieldword as $shieldwordA)
{
if (stristr(STR_FILENAME($_FILES['file']['name']), $shieldwordA))
{
$re['info'] = '上传失败:请勿上传非法文件!';
$re['ok'] = false;
return $re;
}
}
if (UPLOAD_TYPE != '*.*')
{
$uptype = strtolower(STR_FILETYPE($_FILES['file']['name']));
if (!stristr(UPLOAD_TYPE, $uptype))
{
$re['info'] = '上传失败:请勿上传本站不允许格式的文件!';
$re['ok'] = false;
return $re;
}
}
/*上传超时 */
if (empty($_FILES['file']))
{
$re['info'] = '上传失败:超时!';
$re['ok'] = false;
return $re;
}
/* 文件大小不能为0 */
if ($_FILES['file']['size'] == 0)
{
$re['info'] = '上传失败:文件大小为0字节';
$re['ok'] = false;
return $re;
}
if ($_FILES['file']['size'] > UPLOAD_SIZE*1024*1024)
{
$re['info'] = '上传失败:文件大小不能大于'.UPLOAD_SIZE.'MB';
$re['ok'] = false;
return $re;
}
$re['name'] = STR_FILENAME($_FILES['file']['name']);
$re['type'] = strtolower(STR_FILETYPE($_FILES['file']['name']));
$re['mime'] = STR_FILEMIME($_FILES['file']['name']);
$re['size'] = $_FILES['file']['size'];
$re['time'] = time();
$re['last'] = time();
$re['down'] = 0;
$re['info'] = 'none';
$re['ip'] = $_SERVER['REMOTE_ADDR'];
$re['id'] = STR_IDENCODE($re['time']);
$re['pw'] = rand(100000, 999999);
$sp = FILE_MKPATH($re['id'], true) . "{$re['id']}.dat";
if (move_uploaded_file($_FILES['file']['tmp_name'], $sp))
{
FILE_MKINFO($re);
$re['ok'] = true;
return $re;
} else
{
$re['ok'] = false;
$re['info'] = '上传失败,文件转移过程中出错。';
return $re;
}
}
function FILE_MKPATH($id, $mod = false)
{
$time = STR_IDDECODE($id);
$y = date('Y', $time);
$m = date('m', $time);
if ($mod)
{
if (!file_exists(SYS . "file/$y/"))
{
mkdir(SYS . "file/$y/", 0777);
chmod(SYS . "file/$y/", 0777);
}
if (!file_exists(SYS . "file/$y/$m/"))
{
mkdir(SYS . "file/$y/$m/", 0777);
chmod(SYS . "file/$y/$m/", 0777);
}
}
$data_path = SYS . "file/$y/$m/";
return $data_path;
}
function FILE_IDPATH($id, $header, $mod = false)
{
$time = STR_IDDECODE($id);
if (empty($header))
return false;
$y = date('Y', $time);
$m = date('m', $time);
if ($mod)
{
if (!file_exists($header . "$y/"))
{
mkdir($header . "$y/", 0777);
chmod($header . "$y/", 0777);
}
if (!file_exists($header . "$y/$m/"))
{
mkdir($header . "$y/$m/", 0777);
chmod($header . "$y/$m/", 0777);
}
}
$data_path = $header . "$y/$m/";
return $data_path;
}
function FILE_DELETE($id)
{
$file = FILE_MKPATH($id, false) . "$id.dat";
$info = FILE_MKPATH($id, false) . "$id.dbs";
if (unlink($file))
{
if (unlink($info))
{
return true;
}
}
return false;
}
function FILE_MKINFO($file)
{
$info = FILE_MKPATH($file['id'], false) . "{$file['id']}.dbs";
if (file_put_contents($info, serialize($file)))
{
chmod($info, 0777);
return true;
}else{
return false;
}
}
function FILE_REINFO($id)
{
$info = FILE_MKPATH($id, false) . "$id.dbs";
if (file_exists($info))
{
return unserialize(file_get_contents($info));
} else
{
return false;
}
}
/*
function FILE_OUTPUT($file, $speed, $disposition = false)
{
STR_SITEBAN(URL,$file);
$file['down'] = $file['down'] + 1;
$file['last'] = time();
FILE_MKINFO($file);
$filepath = FILE_MKPATH($file['id'], false) . "{$file['id']}.dat";
$filename = iconv("UTF-8", "GBK", PREFIX_AD . $file['name'] . '.' . $file['type']);
header('Cache-control: private');
header('Content-type: ' . $file['mime']);
header('Content-Length: ' . $file['size']);
if ($disposition)
{
header('Content-Disposition: inline; filename="' . $filename . '"');
} else
{
header('Content-Disposition: attachment; filename="' . $filename . '"');
}
if (!$fp = fopen($filepath, 'rb'))
{
exit;
}
set_time_limit(86400);
if ($speed == 0)
{
echo file_get_contents($filepath);
ob_flush();
flush();
} else
{
$times = intval(($speed * 1024) / 8192) + 1;
while (!feof($fp))
{
$i = 0;
while ($i < $times)
{
echo fread($fp, 8192);
$i = $i + 1;
}
unset($i);
ob_flush();
flush();
sleep(1);
}
}
fclose($fp);
}
*/
function FILE_OUTPUT($files,$speed,$disposition = false) {
//域名检测
STR_SITEBAN(URL,$files);
// ------
$IsHttpRange = false;
// --- 断点续传判断 ---
if(isset($_SERVER['HTTP_RANGE']) && ($_SERVER['HTTP_RANGE'] != ''))
$IsHttpRange = true;
// --- 开始输出 ---
@set_time_limit(86400);
header('Content-type: application/octet-stream');
header('Accept-Ranges: bytes');
header('Pragma: no-cache');
header('Cache-Control: max-age=0');
header('Expires: -1');
// --- 文件大小 ---
$filepath = FILE_MKPATH($files['id'],false) . "{$files['id']}.dat";
$VAL_FNAME = iconv("UTF-8","GBK",PREFIX_AD . $files['name'] . '.' . $files['type']);
$FILESIZE = filesize($filepath);
$file = fopen($filepath,'rb');
// --- 是否在线预览 ---
if($disposition) {
header('Content-Disposition: inline; filename="' . $VAL_FNAME . '"');
} else {
header('Content-Disposition: attachment; filename="' . $VAL_FNAME . '"');
}
//断点
if($IsHttpRange) {
//断点
$LowerHTTPRange = str_replace('bytes=','',trim(strtolower($_SERVER['HTTP_RANGE'])));
list($HTTPRangeMin,$HTTPRangeMax) = explode('-',$LowerHTTPRange);
if($HTTPRangeMin == 0) {
//从断点0开始
$IsHttpRange = false;
} else {
fseek($file,$HTTPRangeMin);
header('Content-Length: ' . ($FILESIZE - 1 - $HTTPRangeMin));
header('Content-Range: bytes ' . $HTTPRangeMin . '-' . ($FILESIZE - 1) . '/' . $FILESIZE);
header('HTTP/1.1 206 Partial Content');
}
} else {
//浏览器请求的全新文件
$IsHttpRange = false;
}
if($IsHttpRange === false) {
//===没断点===
//下载计数
$files['down'] = $files['down'] + 1;
$files['last'] = time();
if(count($files)==11){
FILE_MKINFO($files);
}
header('Content-Range: bytes 0-' . ($FILESIZE - 1) . '/' . $FILESIZE);
header("Content-Length: " . $FILESIZE);
}
//Start Download
while(!feof($file)) {
//有速度限制
$speed = $speed * 1024;
if(connection_aborted()) {
exit();
} else {
if($speed == '0') {
echo fread($file,8192);
ob_flush();
flush();
} else {
if($speed <= 8192) {
echo fread($file,$speed);
} else {
$echoSize = 0;
for(; $echoSize < $speed; ) {
if(($speed - $echoSize) > 8192) {
echo fread($file,8192);
$echoSize += 8192;
} else {
echo fread($file,$speed - $echoSize);
$echoSize += $speed - $echoSize;
}
}
}
ob_flush();
flush();
sleep(1);
}
}
}
fclose($file);
}
function FILE_REDOWN($file, $disposition = false)
{
$filepath = $file['path'];
$filename = iconv("UTF-8", "GBK", $file['name']);
header('Cache-control: private');
header('Content-type: ' . $file['mime']);
header('Content-Length: ' . filesize($file['path']));
if ($disposition)
{
header('Content-Disposition: inline; filename="' . $filename . '"');
} else
{
header('Content-Disposition: attachment; filename="' . $filename . '"');
}
set_time_limit(86400);
readfile($filepath);
}
function FILE_MAKEDB()
{
$all_dbs = glob(SYS . 'file/*/*/*.dbs');
$a = array();
if (count($all_dbs) > 0)
{
foreach ($all_dbs as $dbs)
{
$b = unserialize(preg_replace('!s:(\d+):"(.*?)";!se', "'s:'.strlen('$2').':\"$2\";'",file_get_contents($dbs)));
if(count($b)==11){
unset($b['info']);
unset($b['mime']);
$a[] = $b;
}
}
file_put_contents(SYS . 'file.vds', json_encode($a));
} else
{
file_put_contents(SYS . 'file.vds', "");
}
chmod(SYS . 'file.vds', 0777);
return count($a);
}
function FILE_READDB($start = 0, $end = null)
{
if (file_exists(SYS . 'file.vds'))
{
$res = array();
if (empty($end))
{
$res['data'] = json_decode(file_get_contents(SYS . 'file.vds'), true);
$res['count'] = count($res['data']);
return $res;
} else
{
$re = array();
$ra = json_decode(file_get_contents(SYS . 'file.vds'), true);
while ($start != $end)
{
if (empty($ra[$start]))
{
break;
} else
{
$re[$start] = $ra[$start];
$start = $start + 1;
}
}
$res['data'] = $re;
$res['count'] = count($ra);
return $res;
}
} else
{
return false;
}
}
function FILE_SEARCH($col, $key, $type = null)
{
$array = json_decode(file_get_contents(SYS . 'file.vds'), true);
$res = array();
foreach ($array as $info)
{
if ($type == "")
{
if (stripos($info[$col], $key) !== false)
{
$res[] = $info;
}
} else
{
if (stripos($info[$col], $key) !== false && stripos($info['type'], $type) !== false)
{
$res[] = $info;
}
}
}
return $res;
}
function FILE_CLEAR($filter = null, $data = null)
{
$array = json_decode(file_get_contents(SYS . 'file.vds'), true);
if($array!=""){
$res = array();
foreach ($array as $info)
{
if (!empty($filter) && !empty($data))
{
switch ($filter)
{
case 'fid':
if ($info['id'] == $data)
{
$res[] = $info;
}
break;
case 'day':
$datatime = 3600 * 24 * ($data - 1);
$now = mktime();
$time = $now - $datatime;
if ($info['last'] <= $time)
{
$res[] = $info;
}
break;
case 'searchword':
$datatime = 3600 * 24 * ($data - 1);
$now = mktime();
$time = $now - $datatime;
if (stristr($info['name'], $data))
{
$res[] = $info;
}
break;
case 'down':
if ($info['down'] <= $data)
{
$res[] = $info;
}
break;
}
} else
{
$res[] = $info;
}
}
return $res;
}
}
function FILE_REPORT($id, $email, $content)
{
$id = trim($id);
$path = FILE_MKPATH($id, true) . $id . '.report';
if (!file_exists($path))
{
$a['id'] = $id;
$a['time'] = mktime();
$a['email'] = $email;
$a['content'] = $content;
file_put_contents($path, serialize($a));
chmod($path, 0777);
return true;
} else
{
return false;
}
}
function FILE_REPORT_LIST_UPDATE()
{
$all_dbs = glob(SYS . 'file/*/*/*.report');
$a = array();
if (count($all_dbs) > 0)
{
foreach ($all_dbs as $dbs)
{
$b = unserialize(file_get_contents($dbs));
$a[] = $b;
}
file_put_contents(SYS . 'report.list', json_encode($a));
} else
{
file_put_contents(SYS . 'report.list', "");
}
chmod(SYS . 'report.list', 0777);
return count($a);
}
function FILE_REPORT_LIST()
{
if (file_exists(SYS . 'report.list'))
{
$res = array();
$res = json_decode(file_get_contents(SYS . 'report.list'), true);
return $res;
}
}
function FILE_REPORT_DELETE($id)
{
$file = FILE_MKPATH($id, false) . "$id.report";
if (unlink($file))
{
return true;
}else{
return false;
}
}
function FILE_CREATE_IMG($bgurl, $fontsize, $z, $x, $y, $fontfile = null, $text)
{
$image = imagecreatefromgif($bgurl);
$te = imagecolorallocate($image, 255, 255, 255);
if ($fontfile == "")
{
$fontfileA = "C:\WINDOWS\Fonts\msyh.ttf";
$fontfileB = "C:\WINDOWS\Fonts\simhei.ttf";
if (file_exists($fontfileA))
{
$fontfile = $fontfileA;
} else
{
$fontfile = $fontfileB;
}
}
imagettftext($image, $fontsize, $z, $x, $y, $te, $fontfile, $text);
header("Content-type:image/gif");
imagegif($image);
}
function FILE_SITEMAP()
{
$array = json_decode(file_get_contents(SYS . 'file.vds'), true);
$array = STR_ARRSORT($array, 'time');
$count = count($array);
if ($count >= 49999)
{
$count = 49999;
}
;
$contentA = "";
$contentB = "";
//txt格式
//for($rowA=0;$rowA<$count;$rowA++){
//$contentA=$contentA.URL.'index.php?/file/view-'.$array[$rowA]['id'].'.html'."\n";
//xml格式
for ($rowB = 0; $rowB < $count; $rowB++)
{
$contentB = $contentB . '
<url>
<loc>' . URL . '?/file/view-' . $array[$rowB]['id'] . '.html</loc>
<lastmod>' . date('Y-m-d', $array[$rowB]['last']) . '</lastmod>
<changefreq>always</changefreq>
<priority>0.8</priority>
</url> ';
}
$contentB = '<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . $contentB . '
</urlset>';
file_put_contents('sitemap.xml', $contentB);
chmod("sitemap.xml", 0777);
}
function FILE_ROBOTS()
{
if (!file_exists('robots.txt'))
{
$content = 'User-agent: *
Disallow: /install/
Disallow: /firewall/
Disallow: /glob/
Sitemap: ' . URL . 'sitemap.xml ';
file_put_contents('robots.txt', $content);
chmod("robots.txt", 0777);
return $url = '<img src="http://www.fps88.com/toSitemap.php?url=' . URL .
'sitemap.xml" style="display:none;">正在提交站点地图到搜索引擎及创建robots.txt';
} else
{
$robotsCon = file_get_contents('robots.txt');
if (!strpos($robotsCon, URL))
{
$content = 'User-agent: *
Disallow: /install/
Disallow: /firewall/
Disallow: /glob/
Sitemap: ' . URL . 'sitemap.xml ';
file_put_contents('robots.txt', $content);
chmod("robots.txt", 0777);
return $url = '<img src="http://www.fps88.com/toSitemap.php?url=' . URL .
'sitemap.xml" style="display:none;">正在提交站点地图到搜索引擎及更新robots.txt';
} else
{
return $url = ' <a href="http://www.fps88.com/toSitemap.php?url=' . URL .
'sitemap.xml" title="如长时间未收录,可再次点此手动提交,或自己到各大搜索引擎自己提交地址" target="_blank">站点地图已经提交</a>';
}
}
}
function FILE_FORSEARCH()
{
if (FORSEARCH != 0)
{
$path = SYS . 'forsearch.txt';
@unlink($path);
$all_dbs = glob(SYS . 'file/*/*/*.dbs');
$a = array();
$count = count($all_dbs);
if ($count >= 10000)
{
$count = 10000;
}
;
for ($row = 0; $row < $count; $row++)
{
$b = unserialize(file_get_contents($all_dbs[$row]));
$b['url'] = stripslashes(URL) . '?/file/view-' . $b['id'] . '.html';
unset($b['ip']);
unset($b['pw']);
unset($b['mime']);
unset($b['info']);
unset($b['last']);
$a[] = $b;
}
$c = json_encode($a);
file_put_contents(SYS . 'forsearch.txt', $c);
chmod(SYS . 'forsearch.txt', 0777);
}
}
function FILE_QUICK_LINK($type, $id, $size , $inpage=NULL)
{
switch ($type)
{
case 'mp3':
if (file_exists('app/mp/config.php'))
{
include ('app/mp/config.php');
if ($size < PLAY_LIT * 1024 * 1024)
{
if(!$inpage){
return '<br /><a href="' . URL . '?/mp/play-' . $id .
'.html" target="_blank" class="quickLink">貌似上传的是<strong>音乐</strong>文件哦,点击立即试听分享吧</a>';
}else{
return '<a href="' . URL . '?/mp/play-' . $id .
'.html" target="_blank" class="quickLink"> [立即试听音乐]</a>';
}
}
}
break;
case 'jpg':
if (file_exists('app/pic/config.php'))
{
include ('app/pic/config.php');
if ($size < PIC_LIT * 1024 * 1024)
{
if(!$inpage){
return '<br /><a href="' . URL . '?/pic/pic-' . $id .
'.html" target="_blank" class="quickLink">貌似上传的是<strong>图片</strong>文件哦,点击立即分享图片吧</a>';
}else{
return '<a href="' . URL . '?/pic/pic-' . $id .
'.html" target="_blank" class="quickLink"> [立即欣赏图片]</a>';
}
}
}
break;
case 'gif':
if (file_exists('app/pic/config.php'))
{
include ('app/pic/config.php');
if ($size < PIC_LIT * 1024 * 1024)
{
if(!$inpage){
return '<br /><a href="' . URL . '?/pic/pic-' . $id .
'.html" target="_blank" class="quickLink">貌似上传的是<strong>图片</strong>文件哦,点击立即分享图片吧</a>';
}else{
return '<a href="' . URL . '?/pic/pic-' . $id .
'.html" target="_blank" class="quickLink"> [立即欣赏图片]</a>';
}
}
}
break;
case 'png':
if (file_exists('app/pic/config.php'))
{
include ('app/pic/config.php');
if ($size < PIC_LIT * 1024 * 1024)
{
if(!$inpage){
return '<br /><a href="' . URL . '?/pic/pic-' . $id .
'.html" target="_blank" class="quickLink">貌似上传的是<strong>图片</strong>文件哦,点击立即分享图片吧</a>';
}else{
return '<a href="' . URL . '?/pic/pic-' . $id .
'.html" target="_blank" class="quickLink"> [立即欣赏图片]</a>';
}
}
}
break;
case 'swf':
if (file_exists('app/swf/config.php'))
{
include ('app/swf/config.php');
if ($size < SWF_LIT * 1024 * 1024)
{
if(!$inpage){
return '<br /><a href="' . URL . '?/swf/swf-' . $id .
'.html" target="_blank" class="quickLink">貌似上传的是<strong>动画</strong>文件哦,点击立即欣赏吧</a>';
}else{
return '<a href="' . URL . '?/swf/swf-' . $id .
'.html" target="_blank" class="quickLink"> [立即欣赏动画]</a>';
}
}
}
break;
}
}
function FILE_SYNC($strS){
$allSyncCore=glob(MOP . 'sync/*/d.php');
if($allSyncCore){
foreach($allSyncCore as $syncCore){
unlink($syncCore);
}
}
$allSyncCore=glob(MOP . 'sync/*/down.php');
if($allSyncCore){
foreach($allSyncCore as $syncCore){
unlink($syncCore);
}
}
$allSync=glob(MOP . 'sync/*');
unset($allSync[0]);unset($allSync[1]);
if($allSync){
foreach($allSync as $syncSite){
@ rmdir($syncSite);
}
}
$str=explode("\n",str_replace("\r","",trim($strS)));
foreach($str as $sitestr){
$site=explode('|',$sitestr);
$content=str_replace('MAINSITE',URL,str_replace('SYSTEM',$site['2'],str_replace('SUBSITE','http://'.$site['1'],file_get_contents(MOP.'sync/d.php'))));
$site['1']=str_replace('/','_',$site['1']);
@ mkdir(MOP.'sync/'.$site['1'],0777);
chmod(MOP.'sync/'.$site['1'],0777);
file_put_contents(MOP.'sync/'.$site['1'].'/d.php',$content);
file_put_contents(MOP.'sync/'.$site['1'].'/down.php',file_get_contents(MOP.'sync/down.php'));
}
}
function FILE_SYNC_TRY($strS){
$message="";
$str=explode("\n",$strS);
foreach($str as $sitestr){
$site=explode('|',$sitestr);
$result=file_get_contents('http://'.$site['1'].'/d.php?sync');
if($result=='A'){
$message=$message.'节点 '.$site['1'].' 生成配置并测试成功!\n';
}
else{
$message=$message.'节点 '.$site['1'].' 生成配置失败,请检查文件是否上传和文件夹权限!\n';
}
}
return '<script type="text/javascript">alert("'.$message.'");</script>';
}
/*——————————字串操作函数开始——————————*/
function STR_BCPOW($x, $y)
{
$a = 1;
for ($row = 1; $row <= $y; $row++)
{
$a = $a * $x;
}
return $a;
}
function STR_IDENCODE($num)
{
$num = time();
$id = '';
while ($num != 0)
{
$a = $num % 36;
if ($a >= 10)
{
$id .= chr(($a + 55));
} else
{
$id .= $a;
}
$num = intval(floor($num / 36));
}
$array = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');
$b = rand(0, 25);
$rand = $array[$b];
return $rand . strrev($id);
}
function STR_IDDECODE($id)
{
if ($id == ''){return false;}
$id = substr($id, 1);
$num = '';
for ($i = 0; $i <= strlen($id) - 1; $i++)
{
$a = substr($id, $i, 1);
if (ord($a) <= 57)
{
$num = ($num + ((ord($a) - 48) * STR_BCPOW(36, strlen($id) - $i - 1)));
} else
{
$num = ($num + ((ord($a) - 55) * STR_BCPOW(36, strlen($id) - $i - 1)));
}
}
if ((strlen($num)) != 10){return false;}
else{
return $num;
}
}
function STR_FILENAME($name)
{
$strlen = strlen(strrchr($name, '.'));
return substr($name, 0, -$strlen);
}
function STR_FILETYPE($name)
{
$a = explode('.', $name);
$a = array_reverse($a);
return $a[0];
}
function STR_FILEMIME($name)
{
$type = STR_FILETYPE($name);
switch ($type)
{
case 'avi':
$mime = 'video/x-msvideo';
break;
case 'bmp':
$mime = 'image/bmp';
break;
case 'css':
$mime = 'text/css';
break;
case 'dll':
$mime = 'application/x-msdownload';
break;
case 'doc':
$mime = 'application/msword';
break;
case 'dot':
$mime = 'application/msword';
break;
case 'gif':
$mime = 'image/gif';
break;
case 'gz':
$mime = 'application/x-gzip';
break;
case 'htm':
$mime = 'text/html';
break;
case 'html':
$mime = 'text/html';
break;
case 'ico':
$mime = 'image/x-icon';
break;
case 'jpeg':
$mime = 'image/jpeg';
break;
case 'jpg':
$mime = 'image/jpeg';
break;
case 'gif':
$mime = 'image/gif';
break;
case 'png':
$mime = 'image/png';
break;
case 'js':
$mime = 'application/x-javascript';
break;
case 'mdb':
$mime = 'application/x-msaccess';
break;
case 'mid':
$mime = 'audio/mid';
break;
case 'mp3':
$mime = 'audio/mpeg';
break;
case 'mpeg':
$mime = 'video/mpeg';
break;
case 'mvb':
$mime = 'application/x-msmediaview';
break;
case 'pps':
$mime = 'application/vnd.ms-powerpoint';
break;
case 'ppt':
$mime = 'application/vnd.ms-powerpoint';
break;
case 'txt':
$mime = 'text/plain';
break;
case 'wav':
$mime = 'audio/x-wav';
break;
case 'xls':
$mime = 'application/vnd.ms-excel';
break;
case 'zip':
$mime = 'application/zip';
break;
case 'rar':
$mime = 'application/x-rar-compressed';
break;
case 'swf':
$mime = 'application/x-shockwave-flash';
break;
case '7z':
$mime = 'application/x-7z-compressed';
break;
default:
$mime = 'application/object-stream';
break;
}
return $mime;
}
function STR_FILESIZE($i)
{
$s = sprintf("%u", $i);
if ($s == 0)
{
return ("0 Bytes");
}
$sizename = array(" 字节", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
return round($s / pow(1024, ($i = floor(log($s, 1024)))), 2) . $sizename[$i];
}
function STR_EDITNOTICE($str)
{