-
Notifications
You must be signed in to change notification settings - Fork 1
/
notelist.php
112 lines (98 loc) · 3.33 KB
/
notelist.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
<?php
require_once 'modules/protect.php';
Protect\with('modules/protect_form.php', 'put your password here');
?>
<!DOCTYPE html>
<html>
<head>
<?php
// configuration settings, edit settings in config.php as appropriate
include('config.php');
// from https://stackoverflow.com/questions/16765158/date-it-is-not-safe-to-rely-on-the-systems-timezone-settings
if (! ini_get('date.timezone')) {
date_default_timezone_set('GMT');
}
// Directory to save user documents.
// $data_directory = '_notes'; defined in config.php
$serverTimezone = "";
if (ini_get('date.timezone')) {
$serverTimezone = ' TZ: ' . ini_get('date.timezone');
}
function ago($time)
{
//https://css-tricks.com/snippets/php/time-ago-function/
$periods = array("second", "minute", "hour", "day", "week", "month", "year", "decade");
$lengths = array("60","60","24","7","4.35","12","10");
$now = time();
$difference = $now - $time;
$tense = "ago";
for ($j = 0; $difference >= $lengths[$j] && $j < count($lengths)-1; $j++) {
$difference /= $lengths[$j];
}
$difference = round($difference);
if ($difference != 1) {
$periods[$j].= "s";
}
return "$difference $periods[$j] $tense ";
}
function human_filesize($bytes, $decimals = 2)
{
// from user contribs on php filesize page
$sz = 'bkMGTP';
$szWords = array('bytes','Kb','Mb','Gb','Tb','Pb');
$factor = floor((strlen($bytes) - 1) / 3);
if (@$sz[$factor] == 'b') {
$decimals = 0;
}
return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . ' ' .@$szWords[$factor];
}
?>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Note list</title>
<script src="js/notelist.min.js"></script>
<link rel="shortcut icon" href="favicon.ico" />
<style>
body {
margin-left:20px; margin-top:20px; font-family: sans-serif;}
th {
display: table-cell;
vertical-align: inherit;
font-weight: bold;
text-align: left;
}
th, td {
padding-right: 10px;
}
</style>
</head>
<body>
<a href="<?php print $base_url; ?>">New note</a><br><br>
<table id="filterTable">
<tr>
<th><input type="text" id="filterNotes" onkeyup="filterTable()" placeholder="Filter by note title.." style="background:transparent;border:none;"></th>
</tr>
</table>
<table id="notelistTable">
<th onclick="sortTable(0)">Name</th>
<th onclick="sortTable(1)"><small>Last Modified</small></th>
<th><small>File Size</small></th>
</tr>
<?php
$files = array_diff(scandir($data_directory), array('.', '..','.htaccess'));
$counter=0;
$counterMax=500; //max number of notes to show
foreach ($files as &$value) {
if ($counter > $counterMax) {
echo "<tr><td>Max number of notes to list reached (". $counterMax . ")</td><td></td>";
break; //have a max number of notes to show
}
echo "<tr><td style='padding-right: 20px;'><a href='".$value."' >".$value . "</a> </td>";
echo "<td><small>" . ago(filemtime($data_directory.'/'.$value)) . "</small></td>";
echo "<td><small>" . human_filesize(filesize($data_directory.'/'.$value)) . "</small>" . PHP_EOL;
$counter++;
}
?>
</table>
</body>
</html>