X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/20554c40a0151bb22476a04e225c0167f22f436a..af5d5f4037aabc493afa60a5394ab3f8f6134917:/issue/index.php diff --git a/issue/index.php b/issue/index.php index e7c69bb..8b42d11 100644 --- a/issue/index.php +++ b/issue/index.php @@ -1,48 +1,53 @@ title = "Issue #$id"; +@list ($id, $title) = explode('/', ltrim($Page->path, '/')); +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, $id] + 'SELECT * FROM issues WHERE page = ? AND id = ?', [$Page->handler, $id] )->fetch(); if (!$Issue) throw new Exception('Issuenummer niet gevonden'); - $Article->title .= ': '.htmlspecialchars($Issue->subject); - print "

{$Article->title}

\n"; - $author = $Issue->author ? new User('profile/'.$Issue->author, FALSE) : NULL; - printf('

%s%s %s

'."\n", - 'Geplaatst', - $author ? " door {$author->name}" : '', - showdate(preg_split('/\D/', $Issue->created)) - ); + $replies = $Page->widget('reply'); # handle updates + + $Page->title .= ': '.htmlspecialchars($Issue->subject); + $Page->teaser = $Issue->body; + if ($Page->api) return; + $Page->body = $replies; # find image + + print "

{$Page->title}

\n"; + print '\n\n"; + + print '
'; print $Issue->body; - $Args = "/$id"; # minimal reference - print placeholder_include('reply'); + print $replies; + print "
\n"; return; } if ($_POST) { - $html = nl2br(htmlspecialchars($_POST['body'])); - $html = empty($html) ? NULL : "

$html

"; + require_once 'upload.inc.php'; $query = $Db->set('issues', [ - 'page' => $Page, + 'page' => $Page->handler, 'subject' => $_POST['subject'], - 'body' => $html, + 'body' => messagehtml($_POST['body']), 'author' => $User->login, ]); if (!$query->rowCount()) { @@ -50,25 +55,48 @@ if ($_POST) { } $_POST = []; } +if ($Page->api) return; -$sql = 'SELECT * FROM issues WHERE page = ?'; +$subsql = "SELECT count(*) FROM comments WHERE page=i.page||'/'||i.id"; +$cols = "*, ($subsql AND message IS NOT NULL) AS replycount"; +$cols .= ", ($subsql AND message ~ 'query($sql, [$Page]); +$query = $Db->query($sql, [$Page->handler]); + +if ($id == 'feed') { + require 'issue/feed.inc.php'; +} ob_start(); print '\n"; -$Place['issuelist'] = ob_get_clean(); +$Page->place['issuelist'] = ob_get_clean();