summaryrefslogtreecommitdiffstats
path: root/authz-gui/src/main/java/com/att/authz/gui/Display.java
blob: a3e6a64ff64c772b9fa035bd11d1f5327210450a (plain)
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
/*******************************************************************************
 * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
 *******************************************************************************/
package com.att.authz.gui;

import java.util.Enumeration;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.att.authz.env.AuthzTrans;
import com.att.cssa.rserv.HttpCode;
import com.att.cssa.rserv.HttpMethods;
import org.onap.aaf.inno.env.Slot;

public class Display {
	private final Page get;
	public Display(final AuthGUI gui, final HttpMethods meth, final Page page) {
		get = page;
		final String[] fields = page.fields();
		final Slot slots[] = new Slot[fields.length];
		String prefix = page.name() + '.';
		for(int i=0;i<slots.length;++i) {
			slots[i] = gui.env.slot(prefix + fields[i]);
		}

		/*
		 * We handle all the "Form POST" calls here with a naming convention that allows us to create arrays from strings.
		 * 
		 * On the HTTP side, elements concatenate their name with their Index number (if multiple).  In this code, 
		 * we turn such names into arrays with same index number.  Then, we place them in the Transaction "Properties" so that 
		 * it can be transferred to subclasses easily.
		 */ 
		if(meth.equals(HttpMethods.POST)) {
			// Here, we'll expect FORM URL Encoded Data, which we need to get from the body
			gui.route(gui.env, meth, page.url(), 
				new HttpCode<AuthzTrans,AuthGUI>(gui,page.name()) {
					@Override
					public void handle(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp) throws Exception {
						trans.put(gui.slot_httpServletRequest, req);
						for(int i=0; i<fields.length;++i) {
							int idx = fields[i].indexOf("[]");
							if(idx<0) { // single value
								trans.put(slots[i], req.getParameter(fields[i])); // assume first value
							} else { // multi value
								String field=fields[i].substring(0, idx);
								String[] array = new String[30];
								for(Enumeration<String> names = req.getParameterNames(); names.hasMoreElements();) {
									String key = names.nextElement();
									if(key.subSequence(0, idx).equals(field)) {
										try {
											int x = Integer.parseInt(key.substring(field.length()));
											if(x>=array.length) {
												String[] temp = new String[x+10];
												System.arraycopy(temp, 0, temp, 0, array.length);
												array = temp;
											}
											array[x]=req.getParameter(key);
										} catch (NumberFormatException e) {
											trans.debug().log(e);
										}
									}
								}
								trans.put(slots[i], array);
							}
						}
						page.replay(context,trans,resp.getOutputStream(),"general");
					}
				}, "application/x-www-form-urlencoded","*/*");

		} else {
			// Transfer whether Page shouldn't be cached to local Final var.
			final boolean no_cache = page.no_cache;
			
			gui.route(gui.env, meth, page.url(), 
				new HttpCode<AuthzTrans,AuthGUI>(gui,page.name()) {
					@Override
					public void handle(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp) throws Exception {
						trans.put(gui.slot_httpServletRequest, req);
						for(int i=0; i<slots.length;++i) {
							int idx = fields[i].indexOf("[]");
							if(idx<0) { // single value
								trans.put(slots[i], req.getParameter(fields[i]));
							} else { // multi value
								String[] array = new String[30];
								String field=fields[i].substring(0, idx);
								
								for(Enumeration<String> mm = req.getParameterNames();mm.hasMoreElements();) {
									String key = mm.nextElement();
									if(key.startsWith(field)) {
										try {
											int x = Integer.parseInt(key.substring(field.length()));
											if(x>=array.length) {
												String[] temp = new String[x+10];
												System.arraycopy(temp, 0, temp, 0, array.length);
												array = temp;
											}
											array[x]=req.getParameter(key);
										} catch (NumberFormatException e) {
											trans.debug().log(e);
										}
									}
								}
								trans.put(slots[i], array);
							}
						}
						page.replay(context,trans,resp.getOutputStream(),"general");
					}
					
					@Override
					public boolean no_cache() {
						return no_cache;
					}
				}, "text/html","*/*");
		}

	}
	
	public Page page() { 
		return get;
	}
}