-
Notifications
You must be signed in to change notification settings - Fork 0
/
import.php
81 lines (67 loc) · 3.88 KB
/
import.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
<?php define('ACCESS', true);
include_once 'function.php';
if (IS_LOGIN) {
$title = 'Tải lên tập tin';
include_once 'header.php';
echo '<div class="title">' . $title . '</div>';
if ($dir == null || !is_dir(processDirectory($dir))) {
echo '<div class="list"><span>Đường dẫn không tồn tại</span></div>
<div class="title">Chức năng</div>
<ul class="list">
<li><img src="icon/list.png"/> <a href="index.php' . $pages['paramater_0'] . '">Danh sách</a></li>
</ul>';
} else {
$dir = processDirectory($dir);
if (isset($_POST['submit'])) {
$isEmpty = true;
foreach ($_POST['url'] AS $entry) {
if (!empty($entry)) {
$isEmpty = false;
break;
}
}
if ($isEmpty) {
echo '<div class="notice_failure">Chưa nhập url nào cả</div>';
} else {
for ($i = 0; $i < count($_POST['url']); ++$i) {
if (!empty($_POST['url'][$i])) {
$_POST['url'][$i] = processImport($_POST['url'][$i]);
if (!isURL($_POST['url'][$i]))
echo '<div class="notice_failure">URL <strong class="url_import">' . $_POST['url'][$i] . '</strong> không hợp lệ</div>';
else if (import($_POST['url'][$i], $dir . '/' . basename($_POST['url'][$i])))
echo '<div class="notice_succeed">Nhập khẩu tập tin <strong class="file_name_import">' . basename($_POST['url'][$i]) . '</strong>, <span class="file_size_import">' . size(filesize($dir . '/' . basename($_POST['url'][$i]))) . '</span> thành công</div>';
else
echo '<div class="notice_failure">Nhập khẩu tập tin <strong class="file_name_import">' . basename($_POST['url'][$i]) . '</strong> thất bại</div>';
}
}
}
}
echo '<div class="list">
<span>' . printPath($dir, true) . '</span><hr/>
<form action="import.php?dir=' . $dirEncode . $pages['paramater_1'] . '" method="post">
<span class="bull">•</span>URL 1:<br/>
<input type="text" name="url[]" size="18"/><br/>
<span class="bull">•</span>URL:<br/>
<input type="text" name="url[]" size="18"/><br/>
<span class="bull">•</span>URL 3:<br/>
<input type="text" name="url[]" size="18"/><br/>
<span class="bull">•</span>URL 4:<br/>
<input type="text" name="url[]" size="18"/><br/>
<span class="bull">•</span>URL 5:<br/>
<input type="text" name="url[]" size="18"/><br/>
<input type="submit" name="submit" value="Nhập khẩu"/>
</form>
</div>
<div class="tips"><img src="icon/tips.png"/> Không có http:// đứng trước cũng được, nếu có https:// phải nhập vào</div>
<div class="title">Chức năng</div>
<ul class="list">
<li><img src="icon/create.png"/> <a href="create.php?dir=' . $dirEncode . $pages['paramater_1'] . '">Tạo mới</a></li>
<li><img src="icon/upload.png"/> <a href="upload.php?dir=' . $dirEncode . $pages['paramater_1'] . '">Tải lên tập tin</a></li>
<li><img src="icon/list.png"/> <a href="index.php?dir=' . $dirEncode . $pages['paramater_1'] . '">Danh sách</a></li>
</ul>';
}
include_once 'footer.php';
} else {
goURL('login.php');
}
?>