-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.php
74 lines (63 loc) · 3.44 KB
/
create.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
<?php define('ACCESS', true);
include_once 'function.php';
if (IS_LOGIN) {
$title = 'Tạo mới';
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'])) {
echo '<div class="notice_failure">';
if (empty($_POST['name'])) {
echo 'Chưa nhập đầy đủ thông tin';
} else if (intval($_POST['type']) === 0 && file_exists($dir . '/' . $_POST['name'])) {
echo 'Tên đã tồn tại dạng thư mục hoặc tập tin';
} else if (intval($_POST['type']) === 1 && file_exists($dir . '/' . $_POST['name'])) {
echo 'Tên đã tồn tại dạng thư mục hoặc tập tin';
} else if (isNameError($_POST['name'])) {
echo 'Tên không hợp lệ';
} else {
if (intval($_POST['type']) === 0) {
if (!@mkdir($dir . '/' . $_POST['name']))
echo 'Tạo thư mục thất bại';
else
goURL('index.php?dir=' . $dirEncode . $pages['paramater_1']);
} else if (intval($_POST['type']) === 1) {
if (!@file_put_contents($dir . '/' . $_POST['name'], '...'))
echo 'Tạo tập tin thất bại';
else
goURL('index.php?dir=' . $dirEncode . $pages['paramater_1']);
} else {
echo 'Lựa chọn không hợp lệ';
}
}
echo '</div>';
}
echo '<div class="list">
<span>' . printPath($dir, true) . '</span><hr/>
<form action="create.php?dir=' . $dirEncode . $pages['paramater_1'] . '" method="post">
<span class="bull">•</span>Tên thư mục hoặc tập tin:<br/>
<input type="text" name="name" value="' . (isset($_POST['name']) ? $_POST['name'] : null) . '" size="18"/><br/>
<input type="radio" name="type" value="0" checked="checked"/>Thư mục<br/>
<input type="radio" name="type" value="1"/>Tập tin<br/>
<input type="submit" name="submit" value="Tạo"/>
</form>
</div>
<div class="title">Chức năng</div>
<ul class="list">
<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/import.png"/> <a href="import.php?dir=' . $dirEncode . $pages['paramater_1'] . '">Nhập khẩu 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');
}
?>