/usr/lib/dcmtk/cgi-bin/procedit.pl is in dcmtk-www 3.6.0-15.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | #!/usr/bin/perl
#
# Copyright (C) 1996-2010, OFFIS e.V.
# All rights reserved. See COPYRIGHT file for details.
#
# This software and supporting documentation were developed by
#
# OFFIS e.V.
# R&D Division Health
# Escherweg 2
# D-26121 Oldenburg, Germany
#
# for CEN/TC251/WG4 as a contribution to the Computer Assisted Radiology
# (CAR) 1996 DICOM Demonstration.
#
#
# Module: dcmwlm (WWW Component)
#
# Author: Marco Eichelberg
#
# Purpose:
# This perl script allows to create and update procedure data
#
# Last Update: $Author: joergr $
# Update Date: $Date: 2010-10-14 13:02:01 $
# CVS/RCS Revision: $Revision: 1.2 $
# Status: $State: Exp $
#
# CVS/RCS Log
# $Log: procedit.pl,v $
# Revision 1.2 2010-10-14 13:02:01 joergr
# Updated copyright header. Added reference to COPYRIGHT file.
#
# Revision 1.1 2002/12/03 12:16:12 wilkens
# Added files und functionality from the dcmtk/wlisctn folder to dcmtk/dcmwlm
# so that dcmwlm can now completely replace wlistctn in the public domain part
# of dcmtk. Pertaining to this replacement requirement, another optional return
# key attribute was integrated into the wlm utilities.
#
#
#
require 'prefs.ph';
require 'layout.ph';
require 'password.ph';
require 'lock.ph';
require 'urldecod.ph';
require 'write.ph';
require 'checkvr.ph';
$path_info=$ENV{'PATH_INFO'};
&get_request;
$aetitle = '';
$passwd = '';
$procid = '';
if ($path_info ne '')
{
($dummy, $aetitle, $passwd, $procid, $rest) = split(/\//, $path_info);
}
if (($passwd eq '') || (! &checkurlcode($passwd, $aetitle)))
{
# Password is incorrect.
&page_title("Password invalid");
printf("<A HREF=\"%s\">Click here</A> to return to main menu.\n", $prefs{'main.pl'});
&page_footer;
} else {
# Password is correct.
&set_readlock("$prefs{'data_path'}/$aetitle");
$filename = "$prefs{'data_path'}/$aetitle/$prefs{'datafile'}";
&read_environment($filename);
if ($request ne '')
{
if ($rqpairs{'action'} eq 'Cancel')
{
printf("Location: %s/%s/%s\n\n", $prefs{'procedur.pl'}, $aetitle, $passwd);
} else {
# We have received a filled-in form.
# We save/update it and return a URL to the updated form.
$title = &makeLO($rqpairs{'title'});
$titleOK = (&checkLO($title))&&(length($title)>0);
$description = &makeLO($rqpairs{'description'});
$descriptionOK = (&checkLO($description))&&(length($description)>0);
if (($titleOK)&&($descriptionOK))
{
&set_writelock("$prefs{'data_path'}/$aetitle");
if ($procid eq '')
{
$procid = unpack("H*",&nextProcID($aetitle));
}
$decodedid = pack("H*",$procid);
$newentry = 1;
foreach(@PROCEDURE_KEYS) { if ($decodedid eq $_) { $newentry = 0; } }
if ($newentry) { push(@PROCEDURE_KEYS, $decodedid); }
$PROCEDURE_VALUES{"$decodedid\\title"} = $title;
$PROCEDURE_VALUES{"$decodedid\\description"} = $description;
$PROCEDURE_VALUES{"$decodedid\\priority"} = $rqpairs{'priority'};
&write_environment($filename);
printf("Location: %s/%s/%s\n\n", $prefs{'procedur.pl'}, $aetitle, $passwd);
} else {
&create_procedure_form("$prefs{'procedit.pl'}$path_info",
pack("H*",$procid), $title, $description,
$rqpairs{'priority'}, $titleOK, $descriptionOK, 0);
}
}
} else {
# We have received a request for a form.
if ($procid eq '')
{
&create_procedure_form("$prefs{'procedit.pl'}/$aetitle/$passwd",
'', '', '', '', 1, 1, 1);
} else {
$key = pack("H*",$procid);
&create_procedure_form("$prefs{'procedit.pl'}/$aetitle/$passwd/$procid",
$key,
$PROCEDURE_VALUES{"$key\\title"},
$PROCEDURE_VALUES{"$key\\description"},
$PROCEDURE_VALUES{"$key\\priority"},
1, 1, 0);
}
}
&release_lock;
}
#
# void create_procedure_form(
# 0 string action,
# 1 string procid,
# 2 string title,
# 3 string description,
# 4 string priority,
# 5 bool titleOK,
# 6 bool descriptionOK,
# 7 bool isNewProcedure)
#
sub create_procedure_form
{
&page_title("Procedure Form");
if ((! @_[5])||(! @_[6]))
{
printf("<b>Errors</b> have been found in the data you typed in.\n");
printf("The labels of the offending fields have been marked bold/italic.\n");
printf("Please correct the data and press the update button.<p>\n");
}
printf("<FORM METHOD=get ACTION=\"%s\">\n",@_[0]);
printf("<TABLE CELLSPACING=\"3\" BORDER=0 WIDTH=80%%>\n");
printf("<TR><TD nowrap>Procedure ID:</TD>\n");
printf("<TD nowrap>%s<TR><TD nowrap>", ((@_[1] eq '') ? 'will be assigned automatically.' : @_[1]));
if (! @_[5]) { printf("<b><i>"); }
printf("Title:");
if (! @_[5]) { printf("</i></b>"); }
printf("</TD>\n<TD nowrap>");
printf("<input name=\"title\" maxlength=48 size=48 value=\"%s\"></TD></TR>\n",@_[2]);
printf("<TR><TD nowrap>");
if (! @_[6]) { printf("<b><i>"); }
printf("Description:");
if (! @_[6]) { printf("</i></b>"); }
printf("</TD>\n<TD nowrap>");
printf("<input name=\"description\" maxlength=64 size=64 value=\"%s\"></TD></TR>\n",@_[3]);
printf("<TR><TD nowrap>Default Priority:</TD><TD nowrap>");
printf("<select name=\"priority\">\n");
printf("<option value=\"STAT\" %s>STAT\n",(@_[4] eq 'STAT' ? 'selected' : ''));
printf("<option value=\"HIGH\" %s>HIGH\n",(@_[4] eq 'HIGH' ? 'selected' : ''));
printf("<option value=\"ROUTINE\" %s>ROUTINE\n",((@_[4] eq 'ROUTINE')||(@_[4] eq '') ? 'selected' : ''));
printf("<option value=\"MEDIUM\" %s>MEDIUM\n",(@_[4] eq 'MEDIUM' ? 'selected' : ''));
printf("<option value=\"LOW\" %s>LOW\n",(@_[4] eq 'LOW' ? 'selected' : ''));
printf("</select></TD></TR></TABLE><P>\n");
if (! @_[7])
{
printf("<P><INPUT TYPE=SUBMIT name=\"action\" value=\"Update\">\n");
printf("<INPUT TYPE=RESET name=\"action\" value=\"Reset Form\">\n");
printf("<INPUT TYPE=SUBMIT name=\"action\" value=\"Cancel\">\n");
} else {
printf("<P><INPUT TYPE=SUBMIT name=\"action\" value=\"Save\">\n");
printf("<INPUT TYPE=RESET name=\"action\" value=\"Reset Form\">\n");
printf("<INPUT TYPE=SUBMIT name=\"action\" value=\"Cancel\">\n");
}
printf("</FORM>\n");
&page_footer;
}
|