X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/7f191935501429b51d0b220ba32eda8b3a747655..159ee0f3d812c9681a00c37f6a2bcaf8a1de83bc:/widget/reply.php diff --git a/widget/reply.php b/widget/reply.php index 2bc9014..94018c4 100644 --- a/widget/reply.php +++ b/widget/reply.php @@ -1,21 +1,53 @@ Reacties'."\n"; +$journalcol = [ + 'assign' => 'Toegewezen aan', +]; if ($_POST) { + require_once 'upload.inc.php'; try { - $html = nl2br(htmlspecialchars($_POST['reply'])); - $html = "

$html

"; - $query = $Db->insert('comments', [ + $query = $Db->set('comments', [ 'page' => $Page, - 'message' => $html, + 'message' => messagehtml($_POST['reply']), 'author' => $User->login, ]); if (!$query->rowCount()) { throw new Exception('Fout bij opslaan'); } + $newcomment = $Db->dbh->lastInsertId('comments_id_seq'); + + if (isset($Issue)) { + $row = []; + foreach (array_keys($journalcol) as $col) { + if (!isset($_POST[$col])) continue; + $row[$col] = $_POST[$col] ?: NULL; + } + if (isset($_POST['status'])) { + $reset = !empty($_POST['status']); + if (isset($Issue->closed) !== $reset) { + $row['closed'] = $reset ? ['now()'] : NULL; + } + } + $derived = ['updated' => ['now()']]; + $filter = ['id = ? RETURNING *', $Issue->id]; + $subquery = $Db->set('issues', $row + $derived, $filter); + + if ($updated = $subquery->fetch()) { + foreach (array_keys($row) as $col) { + if ($updated->$col === $Issue->$col) continue; # unaltered + $Db->set('journal', [ + 'comment_id' => $newcomment, + 'property' => 'attr', + 'col' => $col, + 'old_value' => $Issue->$col, + 'value' => $updated->$col, + ]); + } + } + } $_POST['reply'] = NULL; } catch (Exception $e) { @@ -23,7 +55,8 @@ if ($_POST) { } } -$query = $Db->query('SELECT * FROM comments WHERE page = ? ORDER BY created', [$Page]); +$cols = '*, (SELECT json_agg(journal.*) FROM journal WHERE comment_id = comments.id) AS journal'; +$query = $Db->query("SELECT $cols FROM comments WHERE page = ? ORDER BY created", [$Page]); print '