r818: Implementing new logging
[bugdar.git] / editcomment.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 $fetchtemplates = array(
23 'editcomment'
24 );
25
26 define('SVN', '$Id$');
27
28 $focus['showreport'] = 'focus';
29
30 require_once('./global.php');
31 require_once('./includes/api_comment.php');
32
33 $commentapi = new CommentAPI($bugsys);
34 $commentapi->set('commentid', $bugsys->in['commentid']);
35 $commentapi->set_condition();
36 $commentapi->fetch();
37
38 $comment =& $commentapi->objdata;
39
40 $bug = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = $comment[bugid]");
41
42 if (!((can_perform('caneditownreply', $bug['productid']) AND $bugsys->userinfo['userid'] == $comment['userid']) OR (can_perform('caneditotherreply', $bug['productid']) AND $bugsys->userinfo['userid'] != $comment['userid'])))
43 {
44 $message->error_permission();
45 }
46
47 if ($bug['hidden'] AND !can_perform('canviewhidden', $bug['productid']))
48 {
49 $message->error_permissison();
50 }
51
52 // ###################################################################
53
54 if (empty($_REQUEST['do']))
55 {
56 $_REQUEST['do'] = 'edit';
57 }
58
59 // ###################################################################
60
61 if ($_POST['do'] == 'update')
62 {
63 $commentapi->set('comment', $bugsys->in['comment']);
64 $commentapi->set('hidden', $bugsys->in['hidden']);
65
66 if ($bugsys->in['commentid'] == $bug['initialreport'] AND $bugsys->in['hidden'])
67 {
68 $message->items[] = $lang->string('You cannot hide the first comment/initial report of a bug. Instead, hide the entire bug.');
69 }
70
71 if (!$message->items)
72 {
73 $commentapi->update();
74
75 // setup logging
76 require_once('./includes/class_logging.php');
77 $log = new Logging;
78 $log->set_bugid($bug['bugid']);
79 $log->set_commentid($comment['commentid']);
80
81 $log->add_data(true, $commentapi->objdata, array('comment', 'hidden'), false, 'comment');
82 $log->add_data(false, $commentapi->values, array('comment', 'hidden'), false, 'comment');
83
84 $lastgood = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "comment WHERE bugid = $bug[bugid] AND !hidden ORDER BY dateline DESC");
85 $db->query("
86 UPDATE " . TABLE_PREFIX . "bug
87 SET hiddenlastposttime = $lastgood[dateline],
88 hiddenlastpostby = $lastgood[userid]
89 WHERE bugid = $bug[bugid]"
90 );
91
92 $log->update_history();
93
94 $message->redirect($lang->string('The comment was modified successfully.'), "showreport.php?bugid=$bug[bugid]");
95 }
96 else
97 {
98 $show['errors'] = true;
99 $_REQUEST['do'] = 'edit';
100 $message->error_list_process();
101 $comment['comment'] = $bugsys->in['comment'];
102 $comment['hidden'] = $bugsys->in['hidden'];
103 }
104 }
105
106 // ###################################################################
107
108 if ($_REQUEST['do'] == 'edit')
109 {
110 $comment['posttime'] = $datef->format($bugsys->options['dateformat'], $comment['dateline']);
111 $comment['postby'] = construct_user_display($commentapi->relations['userid']->objdata);
112 $comment['comment'] = $bugsys->sanitize($comment['comment']);
113 $show['hide'] = ($bug['initialreport'] != $comment['commentid'] ? true : false);
114 eval('$template->flush("' . $template->fetch('editcomment') . '");');
115 }
116
117 /*=====================================================================*\
118 || ###################################################################
119 || # $HeadURL$
120 || # $Id$
121 || ###################################################################
122 \*=====================================================================*/
123 ?>