-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathAdministerForm
More file actions
executable file
·252 lines (199 loc) · 7.25 KB
/
AdministerForm
File metadata and controls
executable file
·252 lines (199 loc) · 7.25 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#! /usr/bin/env perl
#
# Name: AdministerForm
# Description: This single form provides a number of interfaces to admin
# tools, each run by a different script.
#
# Revision: $Revision$
# Modified: $Author$ on $Date$
#
# Author: Eric Vaandering (ewv@fnal.gov)
# Copyright 2001-2013 Eric Vaandering, Lynn Garren, Adam Bryant
# This file is part of DocDB.
# DocDB is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License
# as published by the Free Software Foundation.
# DocDB is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with DocDB; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
use CGI;
use DBI;
require "DocDBGlobals.pm";
require "AdministerElements.pm";
require "FormElements.pm";
require "AuthorHTML.pm";
require "JournalHTML.pm";
require "DocTypeHTML.pm";
require "TopicHTML.pm";
require "MeetingHTML.pm";
require "Scripts.pm";
require "Security.pm";
require "SecuritySQL.pm";
require "AuthorSQL.pm";
require "TopicSQL.pm";
require "MiscSQL.pm";
require "ResponseElements.pm";
require "HTMLUtilities.pm";
require "UntaintInput.pm";
require "Sorts.pm";
$query = new CGI; # Global for subroutines
$query -> autoEscape(0);
$dbh = DBI -> connect('DBI:mysql:'.$db_name.':'.$db_host,$db_rouser,$db_ropass);
&GetSecurityGroups;
&GetInstitutions;
&GetDocTypes;
&GetAuthors;
&GetTopics;
&GetJournals;
print $query -> header( -charset => $HTTP_ENCODING );
&DocDBHeader("Administer $Project DocDB","",
-scripts => ["PopUps","AuthorAdminDisable","MiscAdminDisable","TopicAdminDisable"]);
@ErrorStack = ();
@WarnStack = ();
unless (&CanAdminister()) {
push @ErrorStack,"You are not allowed to access administrative functions.";
}
EndPage(@ErrorStack);
print "<b>This form allows you to administer the lists of things within
the database.</b><p>\n";
print "Begin by selecting an action for what you want to administer. If you
select <b>New</b>, the selection from the first list will be
ignored, but you must fill in things like Institution and the two names
for adding authors. If you select <b>Modify</b> you have to make a
selection from the first list and any attributes you select on the
right will be changed. If you leave something blank, it will not be
changed. If you select <b>Delete</b> any selections other than from
the first list will be ignored.<p>\n";
print "Note that deleting and then re-entering with the same information is
not the same as modifying. Everything in the DB is tied together with
invisible ID numbers.<p>\n";
print "In all cases, you must supply the <i>database</i> username and password for the
administrator account to make any changes.<p>\n";
print "<center> <b>Modify:</b> ";
print "[ <a href=\"\#author\">Authors</a> ] ";
print "[ <a href=\"\#institution\">Institutions</a> ] ";
print "[ <a href=\"\#doctype\">Document Types</a> ] ";
print "[ <a href=\"\#journal\">Journals</a> ] ";
print "</center><p>";
print "<hr><p>\n";
### Author Modification
print "<a name=\"author\"><center><h4>Administer Authors</h4></center>\n";
print "<center>(Changing both the first and last names will erase middle
initials)</center>\n";
print $query -> start_multipart_form('POST',"$AuthorAdminister",
"id=\"author\" name=\"author\"");
print "<table cellpadding=10>\n";
print "<tr valign=top>\n";
print "<td colspan=2>\n";
&AdministerActions(-form => "author");
print "</td>\n";
print "</tr>\n";
print "<tr valign=top>\n";
print "<td>\n";
&AuthorScroll(-helplink => "author", -disabled => true);
print "</td>\n";
print "<td>\n";
AuthorScroll(-helplink => "targetauthor", -helptext => "Consolidate", -name => "targetauthor", -disabled => true);
print "</td>\n";
print "<td>\n";
&InstitutionSelect(-disabled => true);
print "</td>\n";
print "<td>\n";
&NameEntryBox(-disabled => true);
print "</td>\n";
print "</tr>\n";
print "<tr valign=top>\n";
print "<td colspan=\"4\">\n";
&AdministratorPassword;
print " ";
print $query -> submit (-value => "Change Author Info");
print "</td>\n";
print "</tr>\n";
print "</table>\n";
print $query -> end_multipart_form;
print "<p><hr>\n";
### Institution Administration
print "<a name=\"institution\"><center><h4>Administer Institutions</h4></center>\n";
print $query -> start_multipart_form('POST',"$InstitutionAdminister",
"id=\"institution\" name=\"institution\"");
print "<table cellpadding=10>\n";
print "<tr valign=top>\n";
print "<td colspan=2>\n";
&AdministerActions(-form => "institution");
print "</td>\n";
print "</tr>\n";
print "<tr valign=top>\n";
print "<td>\n";
&InstitutionSelect(-format => "full", -disabled => true);
print "</td>\n";
print "<td>\n"; &InstitutionEntryBox(-disabled => true); print "</td>\n";
print "</tr>\n";
print "<tr valign=top>\n";
print "<td colspan=3>\n";
&AdministratorPassword;
print " ";
print $query -> submit (-value => "Change Institution Info");
print "</td>\n";
print "</tr>\n";
print "</table>\n";
print $query -> end_multipart_form;
print "<p><hr>\n";
### Document Types
print "<a name=\"doctype\"><center><h4>Administer Document Types</h4></center>\n";
print $query -> start_multipart_form('POST',"$DocTypeAdminister",
"id=\"documenttype\" name=\"documenttype\"");
print "<table cellpadding=10>\n";
print "<tr valign=top>\n";
print "<td colspan=2>\n";
&AdministerActions(-form => "documenttype");
print "</td>\n";
print "</tr>\n";
print "<tr valign=top>\n";
print "<td>\n"; DocTypeSelect( {-disabled => $TRUE} ); print "</td>\n";
print "<td>\n"; DocTypeEntryBox(-disabled => $TRUE); print "</td>\n";
print "</tr>\n";
print "<tr valign=top>\n";
print "<td colspan=3>\n";
&AdministratorPassword;
print " ";
print $query -> submit (-value => "Change Document Type Info");
print "</td>\n";
print "</tr>\n";
print "</table>\n";
print $query -> end_multipart_form;
print "<p><hr>\n";
### Journal Administration
print "<a name=\"journal\"><center><h4>Administer Journals</h4></center>\n";
print $query -> start_multipart_form('POST',"$JournalAdminister",
"id=\"journals\" name=\"journals\"");
print "<table cellpadding=10>\n";
print "<tr valign=top>\n";
print "<td colspan=2>\n";
&AdministerActions(-form => "journals");
print "</td>\n";
print "</tr>\n";
print "<tr valign=top>\n";
print "<td>\n";
&JournalSelect(-disabled => true);
print "</td>\n";
print "<td>\n"; &JournalEntryBox(-disabled => true); print "</td>\n";
print "</tr>\n";
print "<tr valign=top>\n";
print "<td colspan=3>\n";
&AdministratorPassword;
print " ";
print $query -> submit (-value => "Change Journal Info");
print "</td>\n";
print "</tr>\n";
print "</table>\n";
print $query -> end_multipart_form;
print "<p>\n";
&JournalTable;
print "<p><hr>\n";
print "<p>\n";
&DocDBNavBar();
&DocDBFooter($DBWebMasterEmail,$DBWebMasterName);