2002-01-20 04:44:52 +03:00
|
|
|
#!/usr/bonsaitools/bin/perl -wT
|
1999-04-08 18:40:46 +04:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
|
|
#
|
1999-11-02 02:33:56 +03:00
|
|
|
# The contents of this file are subject to the Mozilla Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
|
|
|
#
|
1999-04-08 18:40:46 +04:00
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
1999-11-02 02:33:56 +03:00
|
|
|
#
|
1999-04-08 18:40:46 +04:00
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
1999-11-02 02:33:56 +03:00
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
1999-04-08 18:40:46 +04:00
|
|
|
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
2001-06-06 22:36:25 +04:00
|
|
|
# Jacob Steenhagen <jake@acutex.net>
|
1999-04-08 18:40:46 +04:00
|
|
|
|
|
|
|
use diagnostics;
|
|
|
|
use strict;
|
|
|
|
|
2002-01-20 04:44:52 +03:00
|
|
|
use lib qw(.);
|
|
|
|
|
1999-04-08 18:40:46 +04:00
|
|
|
require "CGI.pl";
|
|
|
|
|
2001-12-21 02:42:28 +03:00
|
|
|
if (!defined $::FORM{'attach_id'}) {
|
|
|
|
print "Content-type: text/html\n";
|
|
|
|
print "\n";
|
|
|
|
PutHeader("Search by attachment number");
|
|
|
|
print "<FORM METHOD=GET ACTION=\"showattachment.cgi\">\n";
|
|
|
|
print "You may view a single attachment by entering its id here: \n";
|
|
|
|
print "<INPUT NAME=attach_id>\n";
|
|
|
|
print "<INPUT TYPE=\"submit\" VALUE=\"Show Me This Attachment\">\n";
|
|
|
|
print "</FORM>\n";
|
|
|
|
PutFooter();
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
1999-04-08 18:40:46 +04:00
|
|
|
ConnectToDatabase();
|
|
|
|
|
2001-06-06 22:36:25 +04:00
|
|
|
quietly_check_login();
|
|
|
|
|
2002-01-20 04:44:52 +03:00
|
|
|
if (!detaint_natural($::FORM{attach_id})) {
|
2001-06-06 22:36:25 +04:00
|
|
|
DisplayError("Attachment ID should be numeric.");
|
|
|
|
exit;
|
1999-04-08 18:40:46 +04:00
|
|
|
}
|
2001-06-06 22:36:25 +04:00
|
|
|
|
|
|
|
SendSQL("select bug_id, mimetype, thedata from attachments where attach_id = $::FORM{'attach_id'}");
|
|
|
|
my ($bug_id, $mimetype, $thedata) = FetchSQLData();
|
|
|
|
|
|
|
|
if (!$bug_id) {
|
|
|
|
DisplayError("Attachment $::FORM{attach_id} does not exist.");
|
1999-04-08 18:40:46 +04:00
|
|
|
exit;
|
|
|
|
}
|
2001-06-06 22:36:25 +04:00
|
|
|
|
|
|
|
# Make sure the user can see the bug to which this file is attached
|
|
|
|
ValidateBugID($bug_id);
|
|
|
|
|
|
|
|
print qq{Content-type: $mimetype\n\n$thedata};
|
1999-04-08 18:40:46 +04:00
|
|
|
|
|
|
|
|