X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/c824b14c0f6fb372ca4e72fe244b3aade6c29541..f316947b98249a964b814d65377efda2405e2de1:/issue/index.php diff --git a/issue/index.php b/issue/index.php index 2c50624..4f0f57f 100644 --- a/issue/index.php +++ b/issue/index.php @@ -1,56 +1,148 @@ path, '/')); -if ($id) { - $Article->title = "Issue #$id"; - - $row = $Db->query( - 'SELECT * FROM issues WHERE id = ?', [$id] +if ($id and ctype_digit($id)) { + $Page->title = "Issue #$id"; + $Page->link = $Page->handler . ($Page->path = "/$id"); # minimal reference + $Issue = $Db->query( + 'SELECT * FROM issues WHERE page = ? AND id = ?', [$Page->handler, $id] )->fetch(); - if (!$row) throw new Exception('Issuenummer niet gevonden'); - - $Article->title .= ': '.htmlspecialchars($row->subject); - print "

{$Article->title}

\n"; - print $row->body; - if ($row->closed) { - printf('

%s %s

'."\n", - 'Opgelost', showdate(preg_split('/\D/', $row->closed)) + if (!$Issue) throw new Exception('Issuenummer niet gevonden'); + $Page->title .= ': '.htmlspecialchars($Issue->subject); + + if ($title and ctype_digit($title)) { + $Page->title = "Antwoord op {$Page->title}"; + $Page->handler = $Page->link; + $Page->link .= "/$title"; + $row = $Db->query( + 'SELECT * FROM comments WHERE id = ?', [$title] + )->fetch(); + if (!$row) throw new Exception('Antwoordnummer niet gevonden'); + + print "

{$Page->title}

\n"; + printf('
', + $Page->handler ); + printf(''."\n", 'id', $row->id); + printf(''."\n", + 'reply', + htmlspecialchars($row->raw) + ); + print ''."\n"; + print "
\n"; + return; + } + + $replies = $Page->widget('reply'); # handle updates + $Page->body = $replies; # find image + if ($Page->api) return; + + print "

{$Page->title}

\n"; + print '\n\n"; + + print '
'; + print $replies; + print "
\n"; return; } -if ($_POST) { - $html = nl2br(htmlspecialchars($_POST['body'])); - $html = empty($html) ? NULL : "

$html

"; - $query = $Db->insert('issues', [ - 'page' => $Page, +if ($Page->api) return; +if ($_POST and isset($_POST['subject'])) { + require_once 'upload.inc.php'; + if (strlen($_POST['subject']) < 2) { + throw new Exception('Vul een onderwerp in om de issue te kunnen benoemen.'); + } + if (!preg_match('/\S/', $_POST['reply'])) { + throw new Exception('Een korte beschrijving is verplicht om een issue aan te maken.'); + } + $query = $Db->set('issues', [ + 'page' => $Page->handler, 'subject' => $_POST['subject'], - 'body' => $html, + 'link' => preg_replace('/\b(?:de|het|een)\s+|\W+/', '-', strtolower($_POST['subject'])), 'author' => $User->login, ]); if (!$query->rowCount()) { throw new Exception('Issue niet opgeslagen.'); } + $row = $query->fetch(); + if (!$row->id) { + throw new Exception('Issue niet goed opgeslagen.'); + } + try { + createcomment($_POST, $row); + } + catch (Exception $e) { + throw new Exception("Issueinhoud niet opgeslagen: {$e->getMessage()}."); + } $_POST = []; } -$query = $Db->query('SELECT * FROM issues ORDER BY updated DESC'); +$subsql = "SELECT count(*) FROM comments WHERE page=i.page||'/'||i.id"; +$cols = "*, ($subsql AND message IS NOT NULL) - 1 AS replycount"; +$cols .= ", ($subsql AND message ~ 'query($sql, [$Page->handler]); + +if ($id == 'feed') { + require 'issue/feed.inc.php'; +} ob_start(); +$stats = $Db->query( + "SELECT count(*) AS total, count(closed) AS closed FROM issues" +)->fetch(); +printf("

%s, %s opgelost

\n", + showlink( + sprintf('%d lopende zaken', $stats->total - $stats->closed), + isset($_GET['open']) ? FALSE : '?open' + ), + $stats->closed +); print '\n"; -$Place['issuelist'] = ob_get_clean(); +$Page->place['issuelist'] = ob_get_clean();