bbn/common.php

87 lines
2.1 KiB
PHP
Raw Normal View History

2024-10-07 16:06:35 +02:00
<?php
error_reporting(E_ALL);
2024-10-10 10:22:32 +02:00
date_default_timezone_set('Europe/Paris');
2024-10-07 16:06:35 +02:00
require 'settings.php';
function removefromindex($title)
{
global $dir;
$key = array_search($dir . '/' . $title, $_SESSION['index']);
if ($key !== FALSE)
{
array_splice($_SESSION['index'], $key, 1);
}
}
function downloadnote($path)
{
header('Content-disposition: attachment; filename=' . basename($path));
header('Content-type: text/markdown');
readfile($path);
}
function linksdiv($content)
{
$divcontent = '<div class="grey">';
$links = array();
if (preg_match_all('/\[\[(.*)\]\]/', $content, $links, PREG_SET_ORDER))
{
foreach($links as $link)
{
$divcontent .= '<div>
<a href="index.php?open=true&param=' . urlencode($link[1]) . '">' . $link[1] . '</a>
</div>';
}
}
$links = array();
if (preg_match_all('/(https?:.*)\b/', $content, $links, PREG_SET_ORDER))
{
foreach($links as $link)
{
$url = $link[1];
$title = webpagetitle($url);
2024-10-07 16:06:35 +02:00
$divcontent .= '<div>
<a target="_blank" href="' . $url . '">' . $title . '</a>
2024-10-07 16:06:35 +02:00
</div>';
}
}
$divcontent .= '</div>';
return $divcontent;
}
function computepreview($title, $content)
{
require 'libs/Parsedown.php';
$pos = 0;
if (str_starts_with($content, '---'))
{
$pos = strpos($content, '---', 3) + 3;
}
$Parsedown = new Parsedown();
$Parsedown->setBreaksEnabled(true);
$preview = $Parsedown->text('# ' . $title . "\r\n" . substr($content, $pos));
return $preview;
}
2024-10-07 16:26:16 +02:00
// authent
if ($password && (!isset($_SERVER['PHP_AUTH_PW']) || $_SERVER['PHP_AUTH_PW'] != $password))
{
2024-10-07 16:06:35 +02:00
header('WWW-Authenticate: Basic realm="bbn"');
header('HTTP/1.0 401 Unauthorized');
echo '<p>Access denied.</p></body></html>';
exit;
}
// reindex if needed
session_start();
if (!isset($_SESSION['index']) || isset($_GET['reindex']) || empty($_SESSION['index']))
{
2024-10-08 17:52:30 +02:00
$files = glob($dir . '/*.md');
2024-10-07 16:06:35 +02:00
usort($files, function($a, $b)
{
return filemtime($b) - filemtime($a);
});
$_SESSION['index'] = array_map(fn($value): string => str_replace('.md', '', $value), $files);
}
2024-10-08 17:52:30 +02:00
?>