X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/5adffaba1226d6a75a1937e1ef836f34c991f7fd..2ffefa0117565475a16a12fef01c8b6fb83824bd:/widget/reply.php diff --git a/widget/reply.php b/widget/reply.php index 4c7a304..53fe34f 100644 --- a/widget/reply.php +++ b/widget/reply.php @@ -2,7 +2,9 @@ global $User, $Db, $Issue; require_once 'database.inc.php'; -print '

Reacties

'."\n"; +$journalcol = [ + 'assign' => 'Toegewezen aan', +]; if ($_POST) { try { @@ -16,10 +18,36 @@ if ($_POST) { if (!$query->rowCount()) { throw new Exception('Fout bij opslaan'); } + $newcomment = $Db->dbh->lastInsertId('comments_id_seq'); if (isset($Issue)) { - $row = ['updated' => ['now()']]; - $Db->set('issues', $row, ['id = ?', $Issue->id]); + $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; } @@ -28,7 +56,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 '