summaryrefslogtreecommitdiffstats
path: root/authz-gui/src/main/java/com/att/authz/gui/pages/PermGrantForm.java
blob: b3b51f63d209eece461b1a3d087630756d1be512 (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*******************************************************************************
 * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
 *******************************************************************************/
package com.att.authz.gui.pages;

import static com.att.xgen.html.HTMLGen.TABLE;

import java.io.IOException;
import java.net.ConnectException;
import java.util.ArrayList;
import java.util.List;

import com.att.authz.env.AuthzTrans;
import com.att.authz.gui.AuthGUI;
import com.att.authz.gui.BreadCrumbs;
import com.att.authz.gui.NamedCode;
import com.att.authz.gui.Page;
import org.onap.aaf.cadi.CadiException;
import org.onap.aaf.cadi.client.Future;
import org.onap.aaf.cadi.client.Rcli;
import org.onap.aaf.cadi.client.Retryable;
import org.onap.aaf.inno.env.APIException;
import org.onap.aaf.inno.env.Env;
import org.onap.aaf.inno.env.Slot;
import org.onap.aaf.inno.env.TimeTaken;
import com.att.xgen.Cache;
import com.att.xgen.DynamicCode;
import com.att.xgen.Mark;
import com.att.xgen.html.HTMLGen;

import aaf.v2_0.Role;
import aaf.v2_0.Roles;

public class PermGrantForm extends Page {
	static final String HREF = "/gui/permgrant";
	static final String NAME = "Permission Grant";
	static final String fields[] = {"type","instance","action","role"};
	
	public PermGrantForm(final AuthGUI gui, final Page ... breadcrumbs) throws APIException, IOException {
		super(gui.env,NAME,HREF, fields,
			new BreadCrumbs(breadcrumbs),
			new NamedCode(true,"content") {
			@Override
			public void code(final Cache<HTMLGen> cache, final HTMLGen hgen) throws APIException, IOException {
				final Slot type = gui.env.slot(NAME+".type");
				final Slot instance = gui.env.slot(NAME+".instance");
				final Slot action = gui.env.slot(NAME+".action");
				final Slot role = gui.env.slot(NAME+".role");
				// p tags not closing right using .p() - causes issues in IE8 password form - so using leaf for the moment
				hgen.leaf("p").text("Choose a role to grant to this permission").end()
					.incr("form","method=post");
				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 {
						
						Mark copyRoleJS = new Mark();
						hgen.js(copyRoleJS);
						hgen.text("function copyRole(role) {");
						hgen.text("var txtRole = document.querySelector(\"#role\");");
//						hgen.text("if (role==;");
						hgen.text("txtRole.value=role;");
						hgen.text("}");
						hgen.end(copyRoleJS);
						
						String typeValue = trans.get(type, "");
						String instanceValue = trans.get(instance, "");
						String actionValue = trans.get(action, "");
						String roleValue = trans.get(role,null);
						List<String> myRoles = getMyRoles(gui, trans);
						hgen
						.input(fields[0],"Perm Type",true,"value="+typeValue,"disabled")
						.input(fields[1],"Perm Instance",true,"value="+instanceValue,"disabled")
						.input(fields[2],"Perm Action",true,"value="+actionValue,"disabled");
						
						// select & options are not an input type, so we must create table row & cell tags
						Mark selectRow = new Mark();
						hgen
						.incr(selectRow, "tr")
						.incr("td")
						.incr("label", "for=myroles", "required").text("My Roles").end()
						.end()
						.incr("td")
						.incr("select", "name=myroles", "id=myroles", "onchange=copyRole(this.value)")
						.incr("option", "value=").text("Select one of my roles").end();
						for (String role : myRoles) {
							hgen.incr("option", "value="+role).text(role).end();
						}
						hgen
						.incr("option", "value=").text("Other").end()					
						.end(selectRow);
						if(roleValue==null) {
							hgen.input(fields[3],"Role", true, "placeholder=or type a role here");
						} else {
							hgen.input(fields[3],"Role",true, "value="+roleValue);
						}
						hgen.end();
					}
				});
				hgen.end();
				hgen.tagOnly("input", "type=submit", "value=Submit")
				.end();

			}
		});
	}
		
	private static List<String> getMyRoles(final AuthGUI gui, final AuthzTrans trans) {
		List<String> myRoles = new ArrayList<String>();
		try {
			gui.clientAsUser(trans.getUserPrincipal(), new Retryable<Void>() {
				@Override
				public Void code(Rcli<?> client) throws CadiException, ConnectException, APIException {
					TimeTaken tt = trans.start("AAF get my roles",Env.REMOTE);
					try {
						Future<Roles> fr = client.read("/authz/roles/user/"+trans.user(),gui.rolesDF);
						if(fr.get(5000)) {
							tt.done();
							tt = trans.start("Load Data", Env.SUB);
							if (fr.value != null) for (Role r : fr.value.getRole()) {
								myRoles.add(r.getName());
							}
						} else {
							gui.writeError(trans, fr, null);
						}
					} finally {
						tt.done();
					}
					return null;
				}
			});
		} catch (Exception e) {
			e.printStackTrace();
		}

		return myRoles;
	}
}