aboutsummaryrefslogtreecommitdiffstats
path: root/appc-inbound/appc-design-services/provider/src/main/java/org/onap/appc/design/services/impl/DesignServicesImpl.java
blob: bef8ce4d2c155221db70674477dba41e575ea72a (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * 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=========================================================
 */

package org.onap.appc.design.services.impl;

import com.google.common.util.concurrent.Futures;
import java.util.concurrent.Future;
import org.onap.appc.design.dbervices.DbResponseProcessor;
import org.onap.appc.design.dbervices.DesignDBService;
import org.onap.appc.design.services.util.DesignServiceConstants;
import org.onap.appc.design.validator.ValidatorService;
import org.onap.appc.design.xinterface.XInterfaceService;
import org.onap.appc.design.xinterface.XResponseProcessor;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.DbserviceInput;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.DbserviceOutput;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.DbserviceOutputBuilder;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.DesignServicesService;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.ValidatorInput;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.ValidatorOutput;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.ValidatorOutputBuilder;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.XinterfaceserviceInput;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.XinterfaceserviceOutput;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.XinterfaceserviceOutputBuilder;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.data.DataBuilder;
import org.opendaylight.yang.gen.v1.org.onap.appc.rev170627.status.StatusBuilder;
import org.opendaylight.yangtools.yang.common.RpcResult;
import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class DesignServicesImpl implements DesignServicesService {

    private static final Logger log = LoggerFactory.getLogger(DesignServicesImpl.class);
    private static final String RECEIVED_REQUEST_STR = "Received Request: ";
    private static final String WITH_PAYLOAD_STR = " with Payload :";
    private static final String ACTION_STR = " Action : ";

    @Override
    public Future<RpcResult<DbserviceOutput>> dbservice(DbserviceInput input) {

        log.info(RECEIVED_REQUEST_STR + input.getDesignRequest().getRequestId() + ACTION_STR +
            input.getDesignRequest().getAction() + WITH_PAYLOAD_STR + input.getDesignRequest().getPayload());

        DbserviceOutputBuilder outputBuilder = new DbserviceOutputBuilder();
        DataBuilder databuilder = new DataBuilder();
        StatusBuilder statusBuilder = new StatusBuilder();

        try {
            DesignDBService dbservices = DesignDBService.initialise();
            DbResponseProcessor responseProcessor = new DbResponseProcessor();
            String response = responseProcessor.parseResponse(dbservices
                .execute(input.getDesignRequest().getAction(), input.getDesignRequest().getPayload(),
                    input.getDesignRequest().getRequestId()), input.getDesignRequest().getAction());
            log.info("Response in for Design Service : " + response);
            databuilder.setBlock(response);
            databuilder.setRequestId(input.getDesignRequest().getRequestId());
            statusBuilder.setCode("400");
            statusBuilder.setMessage("success");
        } catch (Exception e) {
            log.error("Error", e);
            statusBuilder.setCode("401");
            statusBuilder.setMessage(e.getMessage());
        }

        outputBuilder.setData(databuilder.build());
        outputBuilder.setStatus(statusBuilder.build());

        RpcResult<DbserviceOutput> result = RpcResultBuilder.<DbserviceOutput>status(true)
            .withResult(outputBuilder.build()).build();
        return Futures.immediateFuture(result);
    }

    @Override
    public Future<RpcResult<XinterfaceserviceOutput>> xinterfaceservice(XinterfaceserviceInput input) {
        log.info(RECEIVED_REQUEST_STR + input.getDesignRequest().getRequestId() + ACTION_STR +
            input.getDesignRequest().getAction() + WITH_PAYLOAD_STR + input.getDesignRequest().getPayload());
        XinterfaceserviceOutputBuilder outputBuilder = new XinterfaceserviceOutputBuilder();
        DataBuilder databuilder = new DataBuilder();
        StatusBuilder statusBuilder = new StatusBuilder();
        try {

            XInterfaceService xInterfaceService = new XInterfaceService();
            XResponseProcessor responseProcessor = new XResponseProcessor();
            String response = responseProcessor.parseResponse(
                xInterfaceService.execute(input.getDesignRequest().getAction(), input.getDesignRequest().getPayload()),
                input.getDesignRequest().getAction());
            databuilder.setBlock(response);
            databuilder.setRequestId(input.getDesignRequest().getRequestId());
            statusBuilder.setCode("400");
            statusBuilder.setMessage("success");
        } catch (Exception e) {
            log.error("An error occurred in xInterfaceService", e);
            statusBuilder.setCode("401");
            statusBuilder.setMessage(e.getMessage());
        }
        outputBuilder.setData(databuilder.build());
        outputBuilder.setStatus(statusBuilder.build());

        RpcResult<XinterfaceserviceOutput> result = RpcResultBuilder.<XinterfaceserviceOutput>status(true)
            .withResult(outputBuilder.build()).build();
        return Futures.immediateFuture(result);
    }

    @Override
    public Future<RpcResult<ValidatorOutput>> validator(ValidatorInput input) {
        log.info(RECEIVED_REQUEST_STR + input.getDesignRequest().getRequestId() + ACTION_STR +
            input.getDesignRequest().getAction() + WITH_PAYLOAD_STR + input.getDesignRequest().getPayload()
            + " and Data Type = " + input.getDesignRequest().getDataType());
        ValidatorOutputBuilder outputBuilder = new ValidatorOutputBuilder();
        StatusBuilder statusBuilder = new StatusBuilder();

        build(input, statusBuilder);

        outputBuilder.setStatus(statusBuilder.build());

        RpcResult<ValidatorOutput> result = RpcResultBuilder.<ValidatorOutput>status(true)
            .withResult(outputBuilder.build()).build();
        return Futures.immediateFuture(result);
    }

    private void build(ValidatorInput input, StatusBuilder statusBuilder) {
        try {
            if (input.getDesignRequest().getDataType() == null || input.getDesignRequest().getDataType().isEmpty()) {
                throw new RequestValidationException("Data Type required for validate Serivce");
            }
            if (input.getDesignRequest().getAction() == null || input.getDesignRequest().getAction().isEmpty()) {
                throw new RequestValidationException("Action required for validate Serivce");
            }

            if (validateInput(input)) {
                throw new RequestValidationException("Request Data format " + input.getDesignRequest().getDataType()
                    + " is not supported by validate Service : Supported data types are : XML, YAML, VELOCITY, JSON ");
            }

            ValidatorService validatorService = new ValidatorService();
            String response = validatorService
                .execute(input.getDesignRequest().getAction(), input.getDesignRequest().getPayload(),
                    input.getDesignRequest().getDataType());
            statusBuilder.setCode("400");
            statusBuilder.setMessage(response);
        } catch (Exception e) {
            log.error("An error occurred in validator", e);
            statusBuilder.setCode("401");
            statusBuilder.setMessage(e.getMessage());
        }
    }

    private boolean validateInput(ValidatorInput input) {
        return !input.getDesignRequest().getDataType().equals(DesignServiceConstants.DATA_TYPE_JSON) &&
            !input.getDesignRequest().getDataType().equals(DesignServiceConstants.DATA_TYPE_YAML) &&
            !input.getDesignRequest().getDataType().equals(DesignServiceConstants.DATA_TYPE_XML) &&
            !input.getDesignRequest().getDataType().equals(DesignServiceConstants.DATA_TYPE_VELOCITY);
    }
}