2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
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.
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
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 \*=====================================================================*/
22 $fetchtemplates = array(
27 define('SVN', '$Id$');
29 $focus['showreport
'] = 'focus
';
31 require_once('./global.php
');
32 require_once('./includes
/class_api_error
.php
');
33 require_once('./includes
/class_notification
.php
');
34 require_once('./includes
/api_attachment
.php
');
35 require_once('./includes
/api_comment
.php
');
37 APIError(array(new API_Error_Handler($message), 'user_cumulative
'));
39 if (isset($bugsys->in['attachmentid
']))
41 $attachment = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "attachment WHERE attachmentid = " . $bugsys->input_clean('attachmentid
', TYPE_UINT));
44 $message->error($lang->getlex('error_invalid_id
'));
48 $bug = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = " . (($attachment['attachmentid
']) ? $attachment['bugid
'] : $bugsys->input_clean('bugid
', TYPE_UINT)));
51 $message->error($lang->getlex('error_invalid_id
'));
54 require_once('./includes
/class_logging
.php
');
56 $notif = new NotificationCenter;
57 $notif->set_bug_data($bug);
59 // ###################################################################
61 if ($_POST['do'] == 'insert
')
63 $attachapi = new AttachmentAPI($bugsys);
64 $attachapi->set('bugid
', $bugsys->in['bugid
']);
66 if (!can_perform('canputattach
', $bug['productid
']))
68 $message->error_permission();
72 $var = $db->query_first("SHOW VARIABLES LIKE 'max_allowed_packet
'");
73 $bugsys->debug("max_allowed_packet = $var[Value]");
76 $FILE =& $_FILES['attachment
'];
79 switch ($FILE['error
'])
82 case 1: $message->add_error($lang->string('PHP said the file you uploaded was too big
.')); break;
83 case 2: $message->add_error($lang->string('The file exceeds the allowed upload size
.')); break;
84 case 3: $message->add_error($lang->string('The file was only partially uploaded
.')); break;
85 case 4: $message->add_error($lang->string('The file was not uploaded at all
.')); break;
86 case 6: $message->add_error($lang->string('PHP could not find the
/tmp directory
.')); break;
90 if (!is_uploaded_file($FILE['tmp_name
']))
92 $message->add_error($lang->string('The file you specified did not upload
.'));
95 // #*# put some MIME-type validation here
97 if (filesize($FILE['tmp_name
']) > $var['Value
'])
99 $message->add_error($lang->string('The file you specified exceeds MySQL\'s maximum allowed packet
.'));
102 $attachapi->set('attachment
', file_get_contents($FILE['tmp_name
']));
103 $attachapi->set('filename
', $FILE['name
']);
104 $attachapi->set('mimetype
', $FILE['type
']);
105 $attachapi->set('filesize
', $FILE['size
']);
106 $attachapi->set('description
', $bugsys->in['description
']);
107 $attachapi->set('userid
', $bugsys->userinfo['userid
']);
109 // insert an attachment
110 if (!$message->items)
112 $attachapi->insert();
114 $obsoletes = $bugsys->input_clean('obsoletes
', TYPE_UINT);
116 $notif->send_new_attachment_notice($attachapi->values, $obsoletes, $attachapi->insertid);
119 if (is_array($obsoletes) AND sizeof($obsoletes) > 0)
121 $db->query("UPDATE " . TABLE_PREFIX . "attachment SET obsolete = 1 WHERE attachmentid IN (" . implode(',', $obsoletes) . ") AND !obsolete AND bugid = $bug[bugid]");
123 foreach ($obsoletes AS $attachmentid)
126 $log->set_bugid($bug['bugid
']);
127 $log->set_attachmentid($attachmentid);
128 $log->add_data(true, array('obsolete
' => 0), array('obsolete
'), false, 'attachment
');
129 $log->add_data(false, array('obsolete
' => 1), array('obsolete
'), false, 'attachment
');
130 $log->update_history();
134 // handle comment stuff
135 if (can_perform('canpostcomments
', $bug['productid
']) AND trim($bugsys->in['comment
']))
137 $comment = new CommentAPI($bugsys);
138 $comment->set('bugid
', $bugsys->in['bugid
']);
139 $comment->set('userid
', $bugsys->userinfo['userid
']);
140 $comment->set('comment
', $bugsys->in['comment
']);
141 $comment->set('dateline
', $attachapi->values['dateline
']);
144 $notif->send_new_comment_notice($comment->values);
147 // update the last post data
148 $db->query("UPDATE " . TABLE_PREFIX . "bug SET lastposttime = " . $attachapi->values['dateline
'] . ", hiddenlastposttime = " . $attachapi->values['dateline
'] . ", lastpostby = " . $bugsys->userinfo['userid
'] . ", hiddenlastpostby = " . $bugsys->userinfo['userid
'] . " WHERE bugid = $bug[bugid]");
152 $message->redirect($lang->string('The attachment has been added to the bug
.'), "showreport.php?bugid=$bug[bugid]");
156 $show['errors
'] = true;
157 $_REQUEST['do'] = 'add
';
158 $message->error_list_process();
162 // ###################################################################
164 if ($_REQUEST['do'] == 'add
')
166 if (!can_perform('canputattach
', $bug['productid
']))
168 $message->error_permission();
171 $MAXFILESIZE = $funct->fetch_max_attachment_size();
173 $show['addcomment
'] = ((can_perform('canpostcomments
', $bug['productid
'])) ? true : false);
174 $show['obsoletes
'] = false;
176 $obsoletes_fetch = $db->query("SELECT * FROM " . TABLE_PREFIX . "attachment WHERE bugid = $bug[bugid] AND !obsolete");
178 while ($obsolete = $db->fetch_array($obsoletes_fetch))
180 $show['obsoletes
'] = true;
181 $obsoletes .= "<div><input name=\"obsoletes[]\" type=\"checkbox\" value=\"$obsolete[attachmentid]\"" . (in_array($obsolete['attachmentid
'], (array)$bugsys->in['obsoletes
']) ? ' checked
="checked"' : '') . " /> $obsolete[filename]" . ($obsolete['description
'] ? " [$obsolete[description]]" : '') . "</div>\n";
184 eval('$template->flush("' . $template->fetch('newattach') . '");');
187 // ###################################################################
189 if ($_POST['do'] == 'update
')
191 if (!(can_perform('caneditattach
', $bug['productid
']) OR ($attachment['userid
'] == $bugsys->userinfo['userid
'] AND can_perform('canputattach
', $bug['productid
']))))
193 $message->error_permission();
197 $log->set_bugid($bug['bugid
']);
198 $log->set_attachmentid($bugsys->in['attachmentid
']);
200 $attachapi = new AttachmentAPI($bugsys);
201 $attachapi->set('attachmentid
', $bugsys->in['attachmentid
']);
202 $attachapi->set_condition();
203 $attachapi->dorelations = array();
206 $log->add_data(true, $attachapi->objdata, array('attachment
'), true, 'attachment
');
208 $attachapi->set('description
', $bugsys->in['description
']);
209 $attachapi->set('obsolete
', $bugsys->in['obsolete
']);
210 $attachapi->update();
212 $log->add_data(false, $attachapi->values, array('attachment
'), true, 'attachment
');
214 $log->update_history();
216 $message->redirect($lang->string('The attachment was successfully modified
.'), "showreport.php?bugid=$bug[bugid]");
219 // ###################################################################
221 if ($_REQUEST['do'] == 'edit
')
223 if (!(can_perform('caneditattach
', $bug['productid
']) OR ($attachment['userid
'] == $bugsys->userinfo['userid
'] AND can_perform('canputattach
', $bug['productid
']))))
225 $message->error_permission();
228 $show['delete
'] = ((can_perform('caneditattach
', $bug['productid
'])) ? true : false);
230 eval('$template->flush("' . $template->fetch('editattach') . '");');
233 /*=====================================================================*\
234 || ###################################################################
237 || ###################################################################
238 \*=====================================================================*/