Project

General

Profile

1
<%@ page language="java"%>
2
<%@ page import="java.util.Set,java.util.Map,java.util.Vector,edu.ucsb.nceas.utilities.*" %>
3
<%
4
	/**
5
 *  '$RCSfile$'
6
 *    Copyright: 2008 Regents of the University of California and the
7
 *               National Center for Ecological Analysis and Synthesis
8
 *  For Details: http://www.nceas.ucsb.edu/
9
 *
10
 *   '$Author: walker $'
11
 *     '$Date: 2013-09-17 16:17:55 -0700 (Tue, 17 Sep 2013) $'
12
 * '$Revision: 8222 $'
13
 * 
14
 * This program is free software; you can redistribute it and/or modify
15
 * it under the terms of the GNU General Public License as published by
16
 * the Free Software Foundation; either version 2 of the License, or
17
 * (at your option) any later version.
18
 *
19
 * This program is distributed in the hope that it will be useful,
20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 * GNU General Public License for more details.
23
 *
24
 * You should have received a copy of the GNU General Public License
25
 * along with this program; if not, write to the Free Software
26
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
 */
28
%>
29

    
30
<html>
31
<head>
32

    
33
<title>Authentication Configuration</title>
34
<link rel="stylesheet" type="text/css" 
35
        href="<%= request.getContextPath() %>/admin/admin.css"></link>
36
<script language="JavaScript" type="text/JavaScript" src="<%= request.getContextPath() %>/admin/admin.js"></script>
37

    
38
<SCRIPT LANGUAGE="JavaScript" TYPE="TEXT/JAVASCRIPT">
39
<!--
40
	createExclusionList();
41
//-->
42
</SCRIPT>
43

    
44

    
45
</head>
46
<body>
47
<%@ include file="./header-section.jsp"%>
48

    
49
<div class="document">
50
		<h2>Authentication Configuration</h2>
51
		<p>Enter authentication service properties here.</p>
52
		 
53
		<br class="auth-header">
54
		
55
		<%@ include file="./page-message-section.jsp"%>
56
		
57
		
58
		<form method="POST" name="configuration_form" action="<%= request.getContextPath() %>/admin" 
59
		                                        onsubmit="return validateAndSubmitForm(this);">
60
		<% 
61
			// metadata holds all group and properties metadata
62
		    PropertiesMetaData metadata = (PropertiesMetaData)request.getAttribute("metadata");
63
			if (metadata != null) {
64
				// each group describes a section of properties
65
				Map<Integer, MetaDataGroup> groupMap = metadata.getGroups();
66
				Set<Integer> groupIdSet = groupMap.keySet();
67
				for (Integer groupId : groupIdSet) {
68
					if (groupId == 0) {
69
						continue;
70
					}
71
					// for this group, display the header (group name)
72
					MetaDataGroup metaDataGroup = (MetaDataGroup)groupMap.get(groupId);
73
		%>
74
				<h3><%= metaDataGroup.getName()  %></h3>
75
				<p><%= metaDataGroup.getDescription()  %></p>
76
		<%
77
					// get all the properties in this group
78
					Map<Integer, MetaDataProperty> propertyMap = 
79
						metadata.getPropertiesInGroup(metaDataGroup.getIndex());
80
					Set<Integer> propertyIndexes = propertyMap.keySet();
81
					// iterate through each property and display appropriately
82
					for (Integer propertyIndex : propertyIndexes) {
83
						MetaDataProperty metaDataProperty = propertyMap.get(propertyIndex);
84
		    			String fieldType = metaDataProperty.getFieldType(); 
85
		    			if (metaDataProperty.getIsRequired()) {
86
		%>
87
						<SCRIPT LANGUAGE="JavaScript" TYPE="TEXT/JAVASCRIPT">
88
						<!--
89
							addExclusion("<%= metaDataProperty.getKey() %>");
90
						//-->
91
						</SCRIPT> 		
92
		<% 		
93
		    			}
94
		    			if (fieldType.equals("select")) {
95
		%> 
96
						<div class="form-row">
97
		     				<div class="textinput-label"><label for="<%= metaDataProperty.getKey() %>"><%= metaDataProperty.getLabel() %></label></div>	   	
98
							<select class="textinput" name="<%= metaDataProperty.getKey() %>">
99
		<%
100
							Vector<String> fieldOptionValues = metaDataProperty.getFieldOptionValues();
101
							Vector<String> fieldOptionNames = metaDataProperty.getFieldOptionNames();
102
							for (int i = 0; i < fieldOptionNames.size(); i++) {
103
		%>
104
								<option value="<%= fieldOptionValues.elementAt(i) %>"> <%= fieldOptionNames.elementAt(i) %>
105
		<%
106
							}
107
		%>
108
							</select>
109
							<i class="icon-question-sign" onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"></i>
110
							
111
						</div> 
112
		<%
113
							if (metaDataProperty.getDescription() != null) {
114
		%>
115
								<div class="textinput-description">[<%= metaDataProperty.getDescription() %>]</div>
116
		<%		
117
							}
118
						} else if (fieldType.equals("password")) {
119
		%>
120
						<div class="form-row">
121
							<div class="textinput-label"><label for="<%= metaDataProperty.getKey() %>"><%= metaDataProperty.getLabel() %></label></div>	
122
							<input class="textinput" id="<%= metaDataProperty.getKey() %>" name="<%= metaDataProperty.getKey() %>" 	             		    	    	           		    	             			
123
			           		    	value="<%= request.getAttribute(metaDataProperty.getKey()) %>"
124
			           		    	type="<%= fieldType %>"/> 
125
							<i class="icon-question-sign" onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"></i>
126
						</div> 
127
		<%
128
							if (metaDataProperty.getDescription() != null) {
129
		%>
130
								<div class="textinput-description">[<%= metaDataProperty.getDescription() %>]</div>
131
		<%		
132
							}
133
						} else {
134
		%>
135
						<div class="form-row">
136
							<div class="textinput-label"><label for="<%= metaDataProperty.getKey() %>"><%= metaDataProperty.getLabel() %></label></div>					
137
							<input class="textinput" id="<%= metaDataProperty.getKey() %>" name="<%= metaDataProperty.getKey() %>" 
138
			    			        value="<%= request.getAttribute(metaDataProperty.getKey()) %>"	             		    	    	           		    	             			
139
			           		    	type="<%= fieldType %>	"/>	
140
							<i class="icon-question-sign" onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"></i>
141
									</div>    		    
142
		<%
143
							if (metaDataProperty.getDescription() != null) {
144
		%>
145
								<div class="textinput-description">[<%= metaDataProperty.getDescription() %>]</div>
146
		<%		
147
							}
148
						}
149
					}
150
				}
151
			}
152
		%>
153
		
154
		  <div class="buttons-wrapper">
155
		  	<input type="hidden" name="configureType" value="auth"/>
156
		  	<input type="hidden" name="processForm" value="true"/>
157
		  	<input class="button" type="submit" value="Save"/>
158
		  	<input class="button" type="button" value="Cancel" onClick="forward('./admin')"> 
159
		 </div>
160
		</form>
161
</div>
162
<%@ include file="./footer-section.jsp"%>
163

    
164
</body>
165
</html>
(4-4/19)