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

import java.io.IOException;
import java.net.URLDecoder;

import javax.servlet.http.HttpServletRequest;

import com.att.authz.env.AuthzTrans;
import com.att.authz.gui.AuthGUI;
import com.att.authz.gui.NamedCode;
import com.att.authz.gui.Page;
import org.onap.aaf.cadi.config.Config;
import org.onap.aaf.inno.env.APIException;
import com.att.xgen.Cache;
import com.att.xgen.DynamicCode;
import com.att.xgen.Mark;
import com.att.xgen.html.HTMLGen;

public class LoginLanding extends Page {
	public static final String HREF = "/login";
	static final String NAME = "Login";
	static final String fields[] = {"id","password","environment"};
	static final String envs[] = {"DEV","TEST","PROD"};
	
	public LoginLanding(final AuthGUI gui, final Page ... breadcrumbs) throws APIException, IOException {
		super(gui.env, NAME,HREF, fields, new NamedCode(true, "content") {
			@Override
			public void code(Cache<HTMLGen> cache, HTMLGen hgen) throws APIException, IOException {
				hgen.leaf("p").text("No login credentials are found in your current session. " +
					     "Choose your preferred login option to continue.").end();
				
				Mark loginPaths = hgen.divID("Pages");
				
				cache.dynamic(hgen, new DynamicCode<HTMLGen, AuthGUI, AuthzTrans>() {
					@Override
					public void code(AuthGUI authGUI, AuthzTrans trans, Cache<HTMLGen> cache, HTMLGen xgen) throws APIException, IOException {
						HttpServletRequest req = trans.get(gui.slot_httpServletRequest, null);
						if(req!=null) {
							String query = req.getQueryString();
							if(query!=null) {
								for(String qs : query.split("&")) {
									int equals = qs.indexOf('=');
									xgen.leaf(HTMLGen.A, "href="+URLDecoder.decode(qs.substring(equals+1),Config.UTF_8)).text(qs.substring(0,equals).replace('_', ' ')).end();
								}
							}
						}
						xgen.leaf(HTMLGen.A, "href=gui/home?Authentication=BasicAuth").text("AAF Basic Auth").end();
					}
				});
//				hgen.leaf("a", "href=#","onclick=divVisibility('cso');").text("Global Login").end()
//					.incr("p", "id=cso","style=display:none").text("this will redirect to global login").end()
//					.leaf("a", "href=#","onclick=divVisibility('tguard');").text("tGuard").end()
//					.incr("p", "id=tguard","style=display:none").text("this will redirect to tGuard login").end()
//				hgen.leaf("a", "href=#","onclick=divVisibility('basicauth');").text("AAF Basic Auth").end();
				hgen.end(loginPaths);
				
//					hgen.incr("form","method=post","style=display:none","id=basicauth","gui/home?Authentication=BasicAuth");
//					Mark table = new Mark(TABLE);
//					hgen.incr(table);
//					cache.dynamic(hgen, new DynamicCode<HTMLGen, AuthGUI, AuthzTrans>() {
//						@Override
//						public void code(AuthGUI gui, AuthzTrans trans,	Cache<HTMLGen> cache, HTMLGen hgen)	
//								throws APIException, IOException {
//							hgen
//							.input(fields[0],"Username",true)
//							.input(fields[1],"Password",true, "type=password");
//						Mark selectRow = new Mark();
//						hgen
//						.incr(selectRow, "tr")
//						.incr("td")
//						.incr("label", "for=envs", "required").text("Environment").end()
//						.end()
//						.incr("td")
//						.incr("select", "name=envs", "id=envs", "required")
//						.incr("option", "value=").text("Select Environment").end();
//						for (String env : envs) {
//							hgen.incr("option", "value="+env).text(env).end();
//						}
//						hgen			
//						.end(selectRow) 
							
//						hgen.end();
//						}
//					});
//					hgen.end();
//					hgen.tagOnly("input", "type=submit", "value=Submit")
//						.tagOnly("input", "type=reset", "value=Reset")
//					.end();
			

			}
		});
	}
}