summaryrefslogtreecommitdiffstats
path: root/authz-gw/src/main/java/com/att/authz/gw/facade/GwFacadeImpl.java
blob: 6045ad4fdca15139bb44636e715a92dc7124d173 (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
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
253
254
255
256
257
/*******************************************************************************
 * ============LICENSE_START====================================================
 * * org.onap.aaf
 * * ===========================================================================
 * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * * ===========================================================================
 * * Licensed under the Apache License, Version 2.0 (the "License");
 * * you may not use this file except in compliance with the License.
 * * You may obtain a copy of the License at
 * * 
 *  *      http://www.apache.org/licenses/LICENSE-2.0
 * * 
 *  * Unless required by applicable law or agreed to in writing, software
 * * distributed under the License is distributed on an "AS IS" BASIS,
 * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * * See the License for the specific language governing permissions and
 * * limitations under the License.
 * * ============LICENSE_END====================================================
 * *
 * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * *
 ******************************************************************************/
package com.att.authz.gw.facade;


import static com.att.authz.layer.Result.ERR_ActionNotCompleted;
import static com.att.authz.layer.Result.ERR_BadData;
import static com.att.authz.layer.Result.ERR_ConflictAlreadyExists;
import static com.att.authz.layer.Result.ERR_Denied;
import static com.att.authz.layer.Result.ERR_NotFound;
import static com.att.authz.layer.Result.ERR_NotImplemented;
import static com.att.authz.layer.Result.ERR_Policy;
import static com.att.authz.layer.Result.ERR_Security;

import java.lang.reflect.Method;

import javax.servlet.http.HttpServletResponse;

import com.att.authz.env.AuthzEnv;
import com.att.authz.env.AuthzTrans;
import com.att.authz.gw.mapper.Mapper;
import com.att.authz.gw.mapper.Mapper.API;
import com.att.authz.gw.service.GwService;
import com.att.authz.gw.service.GwServiceImpl;
import com.att.authz.layer.FacadeImpl;
import com.att.authz.layer.Result;
import com.att.cadi.aaf.client.Examples;
import com.att.cssa.rserv.RServlet;
import com.att.cssa.rserv.RouteReport;
import com.att.cssa.rserv.doc.ApiDoc;
import com.att.inno.env.APIException;
import com.att.inno.env.Data;
import com.att.inno.env.Data.TYPE;
import com.att.inno.env.Env;
import com.att.inno.env.TimeTaken;
import com.att.rosetta.env.RosettaDF;

import gw.v1_0.Api;

/**
 * AuthzFacade
 * 
 * This Service Facade encapsulates the essence of the API Service can do, and provides
 * a single created object for elements such as RosettaDF.
 *
 * The Responsibilities of this class are to:
 * 1) Interact with the Service Implementation (which might be supported by various kinds of Backend Storage)
 * 2) Validate incoming data (if applicable)
 * 3) Convert the Service response into the right Format, and mark the Content Type
 * 		a) In the future, we may support multiple Response Formats, aka JSON or XML, based on User Request.
 * 4) Log Service info, warnings and exceptions as necessary
 * 5) When asked by the API layer, this will create and write Error content to the OutputStream
 * 
 * Note: This Class does NOT set the HTTP Status Code.  That is up to the API layer, so that it can be 
 * clearly coordinated with the API Documentation
 * 
 *
 */
public abstract class GwFacadeImpl<IN,OUT,ERROR> extends FacadeImpl implements GwFacade 
	{
	private GwService<IN,OUT,ERROR> service;

	private final RosettaDF<ERROR>	 	errDF;
	private final RosettaDF<Api>	 	apiDF;

	public GwFacadeImpl(AuthzEnv env, GwService<IN,OUT,ERROR> service, Data.TYPE dataType) throws APIException {
		this.service = service;
		(errDF 				= env.newDataFactory(mapper().getClass(API.ERROR))).in(dataType).out(dataType);
		(apiDF				= env.newDataFactory(Api.class)).in(dataType).out(dataType);
	}
	
	public Mapper<IN,OUT,ERROR> mapper() {
		return service.mapper();
	}
		
	/* (non-Javadoc)
	 * @see com.att.authz.facade.AuthzFacade#error(com.att.authz.env.AuthzTrans, javax.servlet.http.HttpServletResponse, int)
	 * 
	 * Note: Conforms to AT&T TSS RESTful Error Structure
	 */
	@Override
	public void error(AuthzTrans trans, HttpServletResponse response, Result<?> result) {
		String msg = result.details==null?"":result.details.trim();
		String[] detail;
		if(result.variables==null) {
			detail = new String[1];
		} else {
			int l = result.variables.length;
			detail=new String[l+1];
			System.arraycopy(result.variables, 0, detail, 1, l);
		}
		error(trans, response, result.status,msg,detail);
	}
		
	@Override
	public void error(AuthzTrans trans, HttpServletResponse response, int status, String msg, String ... _detail) {
	    	String[] detail = _detail;
		if(detail.length==0) {
		    detail=new String[1];
		}
		String msgId;
		switch(status) {
			case 202:
			case ERR_ActionNotCompleted:
				msgId = "SVC1202";
				detail[0] = "Accepted, Action not complete";
				response.setStatus(/*httpstatus=*/202);
				break;

			case 403:
			case ERR_Policy:
			case ERR_Security:
			case ERR_Denied:
				msgId = "SVC1403";
				detail[0] = "Forbidden";
				response.setStatus(/*httpstatus=*/403);
				break;
				
			case 404:
			case ERR_NotFound:
				msgId = "SVC1404";
				detail[0] = "Not Found";
				response.setStatus(/*httpstatus=*/404);
				break;

			case 406:
			case ERR_BadData:
				msgId="SVC1406";
				detail[0] = "Not Acceptable";
				response.setStatus(/*httpstatus=*/406);
				break;
				
			case 409:
			case ERR_ConflictAlreadyExists:
				msgId = "SVC1409";
				detail[0] = "Conflict Already Exists";
				response.setStatus(/*httpstatus=*/409);
				break;
			
			case 501:
			case ERR_NotImplemented:
				msgId = "SVC1501";
				detail[0] = "Not Implemented"; 
				response.setStatus(/*httpstatus=*/501);
				break;
				

			default:
				msgId = "SVC1500";
				detail[0] = "General Service Error";
				response.setStatus(/*httpstatus=*/500);
				break;
		}

		try {
			StringBuilder holder = new StringBuilder();
			errDF.newData(trans).load(
				mapper().errorFromMessage(holder,msgId,msg,detail)).to(response.getOutputStream());
			trans.checkpoint(
					"ErrResp [" + 
					msgId +
					"] " +
					holder.toString(),
					Env.ALWAYS);
		} catch (Exception e) {
			trans.error().log(e,"unable to send response for",msg);
		}
	}
	
	/* (non-Javadoc)
	 * @see com.att.authz.facade.AuthzFacade#getAPI(com.att.authz.env.AuthzTrans, javax.servlet.http.HttpServletResponse)
	 */
	public final static String API_REPORT = "apiReport";
	@Override
	public Result<Void> getAPI(AuthzTrans trans, HttpServletResponse resp, RServlet<AuthzTrans> rservlet) {
		TimeTaken tt = trans.start(API_REPORT, Env.SUB);
		try {
			Api api = new Api();
			Api.Route ar;
			Method[] meths = GwServiceImpl.class.getDeclaredMethods();
			for(RouteReport rr : rservlet.routeReport()) {
				api.getRoute().add(ar = new Api.Route());
				ar.setMeth(rr.meth.name());
				ar.setPath(rr.path);
				ar.setDesc(rr.desc);
				ar.getContentType().addAll(rr.contextTypes);
				for(Method m : meths) {
					ApiDoc ad;
					if((ad = m.getAnnotation(ApiDoc.class))!=null &&
							rr.meth.equals(ad.method()) &&
						    rr.path.equals(ad.path())) {
						for(String param : ad.params()) {
							ar.getParam().add(param);
						}
						for(String text : ad.text()) {
							ar.getComments().add(text);
						}
						ar.setExpected(ad.expectedCode());
						for(int ec : ad.errorCodes()) {
							ar.getExplicitErr().add(ec);
						}
					}
				}
			}
			apiDF.newData(trans).load(api).to(resp.getOutputStream());
			setContentType(resp,apiDF.getOutType());
			return Result.ok();

		} catch (Exception e) {
			trans.error().log(e,IN,API_REPORT);
			return Result.err(e);
		} finally {
			tt.done();
		}
	}
	
	public final static String API_EXAMPLE = "apiExample";
	/* (non-Javadoc)
	 * @see com.att.authz.facade.AuthzFacade#getAPIExample(com.att.authz.env.AuthzTrans, javax.servlet.http.HttpServletResponse, java.lang.String)
	 */
	@Override
	public Result<Void> getAPIExample(AuthzTrans trans, HttpServletResponse resp, String nameOrContentType, boolean optional) {
		TimeTaken tt = trans.start(API_EXAMPLE, Env.SUB);
		try {
			String content =Examples.print(apiDF.getEnv(), nameOrContentType, optional); 
			resp.getOutputStream().print(content);
			setContentType(resp,content.contains("<?xml")?TYPE.XML:TYPE.JSON);
			return Result.ok();
		} catch (Exception e) {
			trans.error().log(e,IN,API_EXAMPLE);
			return Result.err(Result.ERR_NotImplemented,e.getMessage());
		} finally {
			tt.done();
		}
	}

}