-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.php
executable file
·411 lines (333 loc) · 11.8 KB
/
welcome.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
<?php
// Initialize the session
session_start();
// Check if the user is logged in, if not then redirect him to login page
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
header("location: login.php");
exit;
}
$username = $_SESSION["username"];
require_once "config.php";
$root = "";
$perm = 0;
function mysqli_result($res, $row, $field=0) {
$res->data_seek($row);
$datarow = $res->fetch_array();
return $datarow[$field];
}
function checkPerm() {
global $username;
global $link;
global $perm;
global $root;
$sql = "SELECT perm FROM users WHERE username='$username'";
$result = $link->query($sql);
$perm = mysqli_result($result, 0);
if ($perm == 1) $root = "/d/arfCloudStorage/" . $username;
if ($perm == 2) $root = "/d/arfCloudStorage/" . $username;
if ($perm == 15) $root = "/d/arfCloudStorage/";
}
function printPerm() {
global $perm;
if ($perm == 0) echo "Account not validated, ask arf20 to validate your account.";
else if ($perm == 1) echo "Read-only user.";
else if ($perm == 2) echo "Standard user.";
else if ($perm == 15) echo "Admin";
}
checkPerm();
function check($str) {
if (strpos($str, "..") || strpbrk($str, "\"\'<>\\")) {
die("No .. or special charecters allowed, fuck you.");
}
}
if (!isset($_GET["path"]))
$navdir = "/";
else
$navdir = $_GET["path"];
// Forms
$width = 400;
function printForms() {
global $perm;
global $navdir;
/*echo "<div class=\"form\"><form action=\"";
echo htmlspecialchars($_SERVER["PHP_SELF"]);
echo "?path=$navdir\" method=\"post\" enctype=\"multipart/form-data\">\n";*/
if ($perm > 1) {
echo "<div class=\"form\"><form onsubmit=\"return onUpload()\" enctype=\"multipart/form-data\">\n";
echo " <label>Upload file</label><br>\n";
echo " <input type=\"file\" name=\"fileToUpload\" id=\"fileToUpload\"><br>";
echo " <input type=\"submit\" value=\"Upload\" name=\"upload\" onclick=\"onUpload()\">";
echo " <span id=\"progress\"></span><span id=\"speed\"></span>";
echo "</form></div>";
echo "<div class=\"form\"><form action=\"";
echo htmlspecialchars($_SERVER["PHP_SELF"]);
echo "?mkdir=$navdir\" method=\"post\">\n";
echo " <label>Create directory</label><br>\n";
echo " <input type=\"text\" name=\"dirname\" id=\"fileToUpload\"><br>";
echo " <input type=\"submit\" value=\"Create\" name=\"mkdir\">";
echo "</form></div>";
}
}
// Upload file
if (isset($_POST["upload"])) {
global $perm;
$target_dir = "";
if ($perm == 2) $target_dir = $root . "/" . $_GET["path"];
if ($perm == 15) $target_dir = $root . $_GET["path"];
$target_file = $target_dir . "/" . basename($_FILES["fileToUpload"]["name"]);
check($target_file);
move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file);
echo "$perm Uploading to " . $target_file;
//die('<meta http-equiv="refresh" content="0; URL=../main">');
}
// Make dir
if (isset($_POST["mkdir"])) {
global $perm;
$target_dir = "";
if ($_GET["mkdir"] == "" || $_GET["mkdir"] == "/" || $_GET["mkdir"] == ".") die("xd");
if ($perm == 2) $target_dir = $root . $_GET["mkdir"] . "/" . $_POST["dirname"];
if ($perm == 15) $target_dir = $root . $_GET["mkdir"] . "/" . $_POST["dirname"];
check($target_dir);
//echo "Creating dir " . $target_dir;
mkdir($target_dir);
if ($perm == 2) $navdir = $_GET["mkdir"];
if ($perm == 15) $navdir = $_GET["mkdir"];
die('<meta http-equiv="refresh" content="0; URL=?path=' . $navdir . '">');
}
// ==========================
// Download
if (isset($_GET["downld"])) {
$file = $root.$_GET["downld"];
check($file);
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename($_GET["downld"]).'"');
header('Content-Length: ' . filesize($file));
header('Pragma: public');
flush();
readfile($file, true);
echo "Downloading " . $_GET["downld"];
die();
} else echo "Error: file doesn't exists";
//die("<meta http-equiv=\"refresh\" content=\"0; URL=?path=$path\">");
}
// Delete button
function rrmdir($dir) {
if (is_dir($dir)) {
$objects = scandir($dir);
foreach ($objects as $object) {
if ($object != "." && $object != "..") {
if (is_dir($dir. DIRECTORY_SEPARATOR .$object) && !is_link($dir."/".$object))
rrmdir($dir. DIRECTORY_SEPARATOR .$object);
else
unlink($dir. DIRECTORY_SEPARATOR .$object);
}
}
rmdir($dir);
}
}
if (isset($_GET["del"])) {
//echo $_GET["del"] . "<br>";
if ($_GET["del"] == "" || $_GET["mkdir"] == "/" || $_GET["mkdir"] == ".") die("xd");
if ($perm == 2) $navdir = "/" . substr($_GET["del"], 0, strrpos($_GET["del"], "/", -2));
if ($perm == 15) $navdir = substr($_GET["del"], 0, strrpos($_GET["del"], "/", -2));
if ($perm == 2) $target = $root . $_GET["del"];
if ($perm == 15) $target = $root . $_GET["del"];
//echo "path: " . substr($_GET["del"], 0, strrpos($_GET["del"], "/", -1)) . "<br>";
//echo "path: $navdir";
//echo "del: " . $target;
if (is_dir($target))
rrmdir($target);
else
unlink($target);
die("<meta http-equiv=\"refresh\" content=\"0; URL=?path=$navdir\">");
}
// ===================== LISTING =====================
function formatBytes($size, $precision = 2){
if ($size == 0) return "0";
$base = log($size, 1024);
$suffixes = array('', 'K', 'M', 'G', 'T');
return round(pow(1024, $base - floor($base)), $precision) .' '. $suffixes[floor($base)];
}
function getDirList($dir) {
global $root;
$dir = $root . $dir;
check($dir);
//echo $root;
// array to hold return value
$retval = [];
// add trailing slash if missing
if(substr($dir, -1) != "/") {
$dir .= "/";
}
// open pointer to directory and read list of files
$d = @dir($dir) or die("getFileList: Failed opening directory {$dir} for reading");
while(FALSE !== ($entry = $d->read())) {
// skip hidden files
if($entry[0] == ".") continue;
if(is_dir("{$dir}{$entry}")) {
$retval[] = [
'name' => "{$dir}{$entry}/",
'type' => filetype("{$dir}{$entry}"),
'size' => 0,
'lastmod' => filemtime("{$dir}{$entry}")
];
} elseif(is_readable("{$dir}{$entry}")) {
$retval[] = [
'name' => "{$dir}{$entry}",
'type' => mime_content_type("{$dir}{$entry}"),
'size' => filesize("{$dir}{$entry}"),
'lastmod' => filemtime("{$dir}{$entry}")
];
}
}
$d->close();
return $retval;
}
function printDirList($dirlist) {
global $navdir;
global $width;
global $perm;
global $username;
echo "<h3>Index of $navdir</h3>";
echo "<table border=\"1\">\n";
echo "<thead>\n";
echo "<tr><th style=\"width: {$width}px;\">Name</th><th>Type</th><th>Size</th><th>Last Modified</th><th>Actions</th></tr>\n";
echo "</thead>\n";
echo "<tbody>\n";
echo "<tr>\n";
echo "<td style=\"width: {$width}px;\"><a href=\"?path=/";
if (strlen($navdir) >= 2)
echo substr($navdir, 1, strrpos($navdir, "/", -2));
echo "\">";
echo "..";
echo "</a></td>\n";
echo "<td>dir</td>\n";
echo "<td></td>\n";
echo "<td></td>\n";
echo "<td></td>\n";
echo "</tr>\n";
foreach($dirlist as $file) {
if ($file['type'] == "dir") {
echo "<tr>\n";
echo "<td style=\"width: {$width}px;\"><a href=\"?path=/";
if ($perm == 1 || $perm == 2) echo substr($file['name'], 1 + strpos($file['name'], $username) + strlen($username)) . "\">";
if ($perm == 15) echo substr($file['name'], 20) . "\">";
echo substr($file['name'], 1 + strrpos($file['name'], "/", -2)) . "</a></td>\n";
echo "<td>{$file['type']}</td>\n";
echo "<td></td>\n";
echo "<td>",date('r', $file['lastmod']),"</td>\n";
if ($perm == 1) echo "<td>";
if ($perm == 2) echo "<td><a href=\"?del=/" . substr($file['name'], 1 + strpos($file['name'], $username) + strlen($username), -1) . "\">Delete</a>";
if ($perm == 15) echo "<td><a href=\"?del=/" . substr($file['name'], 20, -1) . "\">Delete</a>";
echo "</td></tr>\n";
} else {
echo "<tr>\n";
echo "<td style=\"width: {$width}px;\"><a href=\"?downld=/";
if ($perm == 1 || $perm == 2) echo substr($file['name'], 1 + strpos($file['name'], $username) + strlen($username)) . "\">";
if ($perm == 15) echo substr($file['name'], 20) . "\">";
echo substr($file['name'], 1 + strrpos($file['name'], "/", -1)) . "</a></td>\n";
echo "<td>{$file['type']}</td>\n";
echo "<td>" . formatBytes($file['size']) . "</td>\n";
echo "<td>",date('r', $file['lastmod']),"</td>\n";
if ($perm == 1) echo "<td>";
if ($perm == 2) echo "<td><a href=\"?del=/" . substr($file['name'], 1 + strpos($file['name'], $username) + strlen($username)) . "\">Delete</a>";
if ($perm == 15) echo "<td><a href=\"?del=/" . substr($file['name'], 20) . "\">Delete</a>";
echo "</td></tr>\n";
}
}
echo "</tbody>\n";
echo "</table>\n\n";
}
//echo $perm;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>arfCloud</title>
<style type="text/css">
table {
table-layout: fixed;
}
.form {
border-style: double;
padding: 10px;
margin-top: 10px;
<?php echo "width: ".(string)($width - 20)."px"; ?>
}
</style>
<link rel="stylesheet" type="text/css" href="/style.css">
<script>
function formatBytes(size, precision){
if (size == 0) return "0";
var base = Math.log(size) / Math.log(1024);
var suffixes = ['', 'K', 'M', 'G', 'T'];
return (Math.round(Math.pow(1024, base - Math.floor(base)), precision)).toString() + " " + suffixes[Math.floor(base)].toString();
}
function onUpload() {
// (A) FILE UPLOAD
var data = new FormData(),
upfile = document.getElementById("fileToUpload").files;
data.append("fileToUpload", upfile[0]);
data.append("upload", "xd");
// data.append("KEY", "VALUE");
// (B) AJAX
var xhr = new XMLHttpRequest();
xhr.open("POST", <?php echo "\"" . htmlspecialchars($_SERVER["PHP_SELF"]) . "?path=$navdir\""; ?>);
// (C) UPLOAD PROGRESS
var percent = 0;
var uploaded = 0;
var newuploaded = 0;
progress = document.getElementById("progress");
speed = document.getElementById("speed");
xhr.upload.onloadstart = function(evt){
progress.innerHTML = "Starting";
};
function updateSpeed() {
var diffuploaded = newuploaded - uploaded;
uploaded = newuploaded;
speed.innerHTML = formatBytes(diffuploaded, 3) + "B/s";
console.log(formatBytes(diffuploaded) + "B/s");
setTimeout(updateSpeed, 1000);
}
xhr.upload.onprogress = function(evt){
var newpercent = Math.ceil((evt.loaded / evt.total) * 100);
newuploaded = evt.loaded;
if (newpercent > percent) {
//console.log(String(percent) + " " + String(newpercent));
percent = newpercent;
progress.innerHTML = percent + "% ";
}
};
xhr.upload.onloadend = function(evt){
progress.innerHTML = "Done";
};
// (D) ON UPLOAD COMPLETE
xhr.onload = function(){
console.log(this);
console.log(this.response);
console.log(this.status);
location.reload();
};
// (E) GO!
xhr.send(data);
updateSpeed();
return false;
}
</script>
</head>
<body>
<div>
<h1>arfCloud</h1>
<a href="/arfCloud/disclaimer.txt">Disclaimer</a>
</div>
<p><a href="logout.php">Log Out</a></p>
<P><?php printPerm(); ?></p>
<?php printForms(); ?>
<?php
if ($perm > 0) printDirList(getDirList($navdir));
?>
</body>
</html>