2024-02-13 22:57:28 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2024-02-13 23:43:20 +01:00
|
|
|
<title>
|
|
|
|
<?php
|
|
|
|
echo 'bbn';
|
|
|
|
if (isset($_GET['open']))
|
|
|
|
{
|
|
|
|
echo ' | ' . $_GET['open'];
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</title>
|
2024-02-13 22:57:28 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
2024-02-13 23:38:09 +01:00
|
|
|
<meta charset="UTF-8">
|
2024-02-13 22:57:28 +01:00
|
|
|
<style type="text/css">
|
2024-02-14 08:54:24 +01:00
|
|
|
body {
|
|
|
|
font-family: helvetica;
|
|
|
|
}
|
2024-02-13 22:57:28 +01:00
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
2024-02-14 08:43:46 +01:00
|
|
|
outline: none;
|
2024-02-14 08:54:24 +01:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
2024-02-14 09:43:22 +01:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
2024-02-14 08:54:24 +01:00
|
|
|
font-weight: bold;
|
2024-02-13 22:57:28 +01:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<?php
|
2024-02-14 08:33:10 +01:00
|
|
|
require 'settings.php';
|
2024-02-13 23:38:09 +01:00
|
|
|
|
2024-02-14 08:41:48 +01:00
|
|
|
if ($password && (!isset($_SERVER['PHP_AUTH_PW']) || $_SERVER['PHP_AUTH_PW'] != $password)) {
|
2024-02-13 23:38:09 +01:00
|
|
|
header('WWW-Authenticate: Basic realm="bbn"');
|
|
|
|
header('HTTP/1.0 401 Unauthorized');
|
|
|
|
echo '<p>Access denied.</p>';
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2024-02-13 22:57:28 +01:00
|
|
|
if (isset($_POST['savebutton']))
|
|
|
|
{
|
|
|
|
$title = $_POST['title'];
|
|
|
|
$content = $_POST['content'];
|
|
|
|
file_put_contents($dir . '/' . $title, $content);
|
|
|
|
$_GET['open'] = $title;
|
|
|
|
}
|
|
|
|
else if (isset($_POST['deletebutton']))
|
|
|
|
{
|
|
|
|
$title = $_POST['title'];
|
2024-02-13 23:17:10 +01:00
|
|
|
rename($dir . '/' . $title, $dir . '/' . $title . '.del');
|
2024-02-13 22:57:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_GET['open']))
|
|
|
|
{
|
|
|
|
$title = $_GET['open'];
|
2024-02-14 08:41:48 +01:00
|
|
|
|
|
|
|
$content = '';
|
|
|
|
if (!file_exists($dir . '/' . $title))
|
|
|
|
{
|
|
|
|
file_put_contents($dir . '/' . $title, $content);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$content = file_get_contents($dir . '/' . $title);
|
|
|
|
}
|
2024-02-13 22:57:28 +01:00
|
|
|
|
2024-02-14 14:23:00 +01:00
|
|
|
$nblines = max(20, substr_count($content, "\r\n") + 1);
|
2024-02-14 08:54:24 +01:00
|
|
|
|
2024-02-14 08:33:42 +01:00
|
|
|
echo '<form action="index.php" method="POST">
|
2024-02-14 14:23:00 +01:00
|
|
|
<div>
|
|
|
|
<input accesskey="h" type="submit" name="homebutton" value="home">
|
|
|
|
<input type="submit" name="savebutton" value="save" accesskey="s">
|
|
|
|
<input accesskey="d" type="submit" name="deletebutton" value="delete">
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div><input class="title" name="title" value="' . $title . '"></div><br>
|
2024-02-13 22:57:28 +01:00
|
|
|
<div>
|
2024-02-14 08:54:24 +01:00
|
|
|
<textarea rows="' . $nblines. '" autofocus name="content" spellcheck="false">' . $content . '</textarea>
|
2024-02-13 22:57:28 +01:00
|
|
|
</div>
|
|
|
|
</form>';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-02-14 14:23:00 +01:00
|
|
|
echo '<form action="index.php" method="GET">
|
|
|
|
<input accesskey="n" type="submit" value="create new">
|
|
|
|
<input name="open" value="' . time() . '">
|
|
|
|
</form>';
|
|
|
|
echo '<br>';
|
|
|
|
|
|
|
|
if ($dh = opendir($dir))
|
|
|
|
{
|
|
|
|
while (($file = readdir($dh)) !== false)
|
|
|
|
{
|
|
|
|
if (!str_ends_with($file, '.del') && $file != '.' && $file != '..')
|
2024-02-13 22:57:28 +01:00
|
|
|
{
|
2024-02-13 23:38:09 +01:00
|
|
|
$mod = date("F d Y H:i:s", filemtime($dir . '/' . $file));
|
|
|
|
echo '<div>' . $mod . ' <a href=index.php?open=' . urlencode($file) . '>' . $file .'</a></div>';
|
2024-02-13 22:57:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir($dh);
|
|
|
|
}
|
2024-02-14 14:23:00 +01:00
|
|
|
echo '<br>';
|
2024-02-13 22:57:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
</body>
|
|
|
|
</html>
|