issue: ordered overview including closed tickets
[minimedit.git] / issue / index.php
index fb6a84e8dfbe6aa04a1db12ca98e7115d3abd887..35a1116b153b72cd26de0973b8e64842ecc5dad3 100644 (file)
@@ -1,64 +1,82 @@
 <?php
-global $User, $Db;
+global $User, $Db, $Issue;
 require_once 'database.inc.php';
-@list ($id, $title) = explode('/', ltrim($Args, '/'));
+@list ($id, $title) = explode('/', ltrim($Page->path, '/'));
 
 if ($id and ctype_digit($id)) {
-       $Article->title = "Issue #$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 "<h2>{$Article->title}</h2>\n";
-       $author = $Issue->author ? new User('profile/'.$Issue->author, FALSE) : NULL;
-       printf('<p><em>%s</em>%s <small class=date>%s</small></p>'."\n",
-               'Geplaatst',
-               $author ? " door <strong>{$author->name}</strong>" : '',
-               showdate(preg_split('/\D/', $Issue->created))
-       );
+       $replies = $Page->widget('reply');  # handle updates
+
+       $Page->title .= ': '.htmlspecialchars($Issue->subject);
+       $Page->body = $replies;  # find image
+       if ($Page->api) return;
+
+       print "<h2>{$Page->title}</h2>\n";
+       print '<aside class="metadata"><dl>'."\n";
+       print '<dt>Geplaatst</dt>';
+       printf('<dd>%s</dd>'."\n", showdate(preg_split('/\D/', $Issue->created)));
+       if ($Issue->author and $author = new User('profile/'.$Issue->author, FALSE)) {
+               printf('<dd>%s</dd>'."\n", $author->html);
+       }
        if ($Issue->assign) {
-               printf('<p><em>%s</em> aan <strong>%s</strong></p>'."\n",
-                       'Toegewezen', htmlspecialchars($Issue->assign)
-               );
+               print '<dt>Toegewezen aan</dt>';
+               printf('<dd>%s</dd>'."\n", htmlspecialchars($Issue->assign));
        }
        if ($Issue->closed) {
-               printf('<p><em>%s</em>%s <small class=date>%s</small></p>'."\n",
-                       'Opgelost', '',
-                       showdate(preg_split('/\D/', $Issue->closed))
-               );
+               print '<dt>Opgelost</dt>';
+               printf('<dd>%s</dd>'."\n", showdate(preg_split('/\D/', $Issue->closed)));
        }
-       print $Issue->body;
-       $Args = "/$id";  # minimal reference
-       print placeholder_include('reply');
+       print "</dl></aside>\n\n";
+
+       print '<div>';
+       print $replies;
+       print "</div>\n";
        return;
 }
 
-if ($_POST) {
-               $html = nl2br(htmlspecialchars($_POST['body']));
-               $html = empty($html) ? NULL : "<p>$html</p>";
+if ($Page->api) return;
+if ($_POST and isset($_POST['subject'])) {
+               require_once 'upload.inc.php';
+               if (strlen($_POST['subject']) < 2) {
+                       throw new Exception('Een minimaal onderwerp is verplicht om een issue aan te maken.');
+               }
                $query = $Db->set('issues', [
-                       'page'    => $Page,
+                       '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 = [];
 }
 
-$cols = "*, (SELECT count(*) FROM comments WHERE"
-       . " page=i.page||'/'||i.id AND message IS NOT NULL) AS replycount";
+$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 ~ '<img') AS imagecount";
 $sql = "SELECT $cols FROM issues i WHERE page = ?";
 if (isset($_GET['open'])) {
        $sql .= ' AND closed IS NULL';
 }
-$sql .= ' ORDER BY closed IS NOT NULL, updated DESC';
-$query = $Db->query($sql, [$Page]);
+$sql .= ' ORDER BY updated DESC';
+$query = $Db->query($sql, [$Page->handler]);
 
 if ($id == 'feed') {
        require 'issue/feed.inc.php';
@@ -67,17 +85,29 @@ if ($id == 'feed') {
 ob_start();
 print '<ul>';
 while ($row = $query->fetch()) {
-       printf('<li><a href="%s">%s <small class="date">%s</small>%s</a>',
-               "/$Page/{$row->id}/{$row->link}",
-               sprintf($row->closed ? '<strike>%s</strike>' : '%s',
-                       htmlspecialchars($row->subject)),
-               showdate(array_slice(preg_split('/\D/', $row->updated), 0, 3)),
-               implode(' ', [
-                       $row->replycount ? sprintf('<span class=right>+%d</span>', $row->replycount) : '',
-                       isset($row->assign) ? ' <em class="right">'.$row->assign.'</em>' : '',
-               ])
+       printf('<li%s><div><a href="%s">',
+               $row->closed ? ' class="disabled"' : '',
+               "/{$Page->handler}/{$row->id}/{$row->link}"
        );
-       print "</li>\n";
+       printf($row->closed ? '<s>%s</s>' : '%s', htmlspecialchars($row->subject));
+       {
+               printf(' <small class="date">%s</small>',
+                       showdate(array_slice(preg_split('/\D/', $row->updated), 0, 3))
+               );
+       }
+       if ($row->replycount) {
+               printf(' <span class=right>%s %d</span>',
+                       '<span class="icon icon-comment" title="reacties">&#x1F5E8;</span>',
+                       $row->replycount
+               );
+       }
+       if ($row->imagecount) {
+               print ' <span class="right icon icon-camera" title="afbeeldingen">&#x1F4F7;</span>';
+       }
+       if (isset($row->assign)) {
+               print ' <em class="right">'.$row->assign.'</em>';
+       }
+       print "</a></div></li>\n";
 }
 print "</ul>\n";
-$Place['issuelist'] = ob_get_clean();
+$Page->place['issuelist'] = ob_get_clean();