24dd4f477514cbcb9152571c4375263ae703eddd
[appc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.artifact.handler.dbservices;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28 import org.apache.commons.configuration.ConfigurationException;
29 import org.apache.commons.configuration.PropertiesConfiguration;
30 import org.apache.commons.lang.StringUtils;
31 import org.onap.appc.artifact.handler.utils.SdcArtifactHandlerConstants;
32 import org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource;
33 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
34 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
35 import org.onap.ccsdk.sli.core.sli.SvcLogicResource;
36 import org.onap.ccsdk.sli.core.sli.SvcLogicResource.QueryStatus;
37
38 public class DBService {
39
40     private static final EELFLogger log = EELFManager.getInstance().getLogger(DBService.class);
41     private static final String FAILURE_PARAM = "FAILURE";
42     private static final String RECEIVED_AS = "Internal Version received as1 : ";
43     private static final String SET_DOWNLOAD_CONFIG_QUERY_STR = " set DOWNLOAD_CONFIG_DG = $";
44     private static final String WHERE_VNF_TYPE_QUERY_STR = " where VNF_TYPE = $";
45     private static final String ACTION_QUERY_STR = " , ACTION = $";
46     private static final String VNF_TYPE_QUERY_STR = " , VNF_TYPE = $";
47     private static final String INSERT_INTO_QUERY_STR = "insert into ";
48     private static final String AND_ACTION_QUERY_STR = " and ACTION = $";
49     private static final String AND_FILE_CAT_QUERY_STR = " and FILE_CATEGORY = $";
50     private static final String AND_VNF_TYPE_QUERY_STR = " and VNF_TYPE = $";
51     private static final String UPDATE_QUERY_STR = "update ";
52     private static final String AND_VNFC_TYPE_QUERY_STR = " and VNFC_TYPE = $";
53
54     private SvcLogicResource serviceLogic;
55     private static DBService dgGeneralDBService = null;
56
57     private DBService() {
58         if (serviceLogic == null) {
59             serviceLogic = new SqlResource();
60         }
61     }
62
63     protected DBService(SqlResource svcLogic) {
64         if (serviceLogic == null) {
65             serviceLogic = svcLogic;
66         }
67     }
68
69     public static DBService initialise() {
70         if (dgGeneralDBService == null) {
71             dgGeneralDBService = new DBService();
72         }
73         return dgGeneralDBService;
74     }
75
76     public String getInternalVersionNumber(SvcLogicContext ctx, String artifactName, String prefix)
77         throws SvcLogicException {
78         QueryStatus status;
79         String artifactInternalVersion = null;
80         if (serviceLogic != null && ctx != null) {
81             String key = "select max(internal_version) as maximum from ASDC_ARTIFACTS  WHERE ARTIFACT_NAME = '"
82                 + artifactName + "'";
83             log.info("Getting internal Versoin :" + key);
84             status = serviceLogic.query("SQL", false, null, key, prefix, null, ctx);
85             if (status.toString().equals(FAILURE_PARAM)) {
86                 throw new SvcLogicException("Error - getting internal Artifact Number");
87             }
88             artifactInternalVersion = ctx.getAttribute("maximum");
89             log.info("Internal Version received as : " + artifactInternalVersion);
90             log.info(RECEIVED_AS + ctx.getAttribute("max(internal_version)"));
91             log.info(RECEIVED_AS + ctx.getAttribute("max"));
92             log.info(RECEIVED_AS + ctx.getAttribute("internal_version"));
93             log.info(RECEIVED_AS + ctx.getAttributeKeySet().toString());
94         }
95         return artifactInternalVersion;
96     }
97
98     public String getArtifactID(SvcLogicContext ctx, String artifactName) throws SvcLogicException {
99         QueryStatus status;
100         String artifactID = null;
101         if (serviceLogic != null && ctx != null) {
102             String key = "select max(ASDC_ARTIFACTS_ID) as id from ASDC_ARTIFACTS  WHERE ARTIFACT_NAME = '"
103                 + artifactName + "'";
104             log.info("Getting Artifact ID String :" + key);
105             status = serviceLogic.query("SQL", false, null, key, null, null, ctx);
106             if (status.toString().equals(FAILURE_PARAM)) {
107                 throw new SvcLogicException("Error - getting  Artifact ID from database");
108             }
109             artifactID = ctx.getAttribute("id");
110             log.info("SDC_ARTIFACTS_ID received as : " + ctx.getAttribute("id"));
111         }
112         return artifactID;
113     }
114
115     public QueryStatus saveArtifacts(SvcLogicContext ctx, int intversion) throws SvcLogicException {
116         QueryStatus status = null;
117         if (serviceLogic != null && ctx != null) {
118             String key = "INSERT INTO ASDC_ARTIFACTS " + "SET SERVICE_UUID    =  $service-uuid , "
119                 + " DISTRIBUTION_ID    =  $distribution-id ," + " SERVICE_NAME    =  $service-name ,"
120                 + " SERVICE_DESCRIPTION    =  $service-description ," + " RESOURCE_UUID    = $resource-uuid ,"
121                 + " RESOURCE_INSTANCE_NAME    = $resource-instance-name ," + " RESOURCE_NAME    = $resource-name ,"
122                 + " RESOURCE_VERSION    = $resource-version ," + " RESOURCE_TYPE    = $resource-type ,"
123                 + " ARTIFACT_UUID    = $artifact-uuid ," + " ARTIFACT_TYPE    = $artifact-type ,"
124                 + " ARTIFACT_VERSION    = $artifact-version ,"
125                 + " ARTIFACT_DESCRIPTION    = $artifact-description ," + " INTERNAL_VERSION    = " + intversion
126                 + "," + " ARTIFACT_NAME       =  $artifact-name ," + " ARTIFACT_CONTENT    =  $artifact-contents ";
127
128             status = serviceLogic.save("SQL", false, false, key, null, null, ctx);
129             if (status.toString().equals(FAILURE_PARAM)) {
130                 throw new SvcLogicException("Error While processing storing Artifact: "
131                     + ctx.getAttribute(SdcArtifactHandlerConstants.ARTIFACT_NAME));
132             }
133         }
134         return status;
135     }
136
137     public QueryStatus logData(SvcLogicContext ctx, String prefix) throws SvcLogicException {
138         QueryStatus status = null;
139         if (serviceLogic != null && ctx != null) {
140             String key = "INSERT INTO CONFIG_TRANSACTION_LOG " + " SET request_id = $request-id , "
141                 + " message_type = $log-message-type , " + " message = $log-message ;";
142             status = serviceLogic.save("SQL", false, false, key, null, prefix, ctx);
143             if (status.toString().equals(FAILURE_PARAM)) {
144                 throw new SvcLogicException("Error while loging data");
145             }
146
147         }
148         return status;
149     }
150
151     public void processConfigureActionDg(SvcLogicContext context, boolean isUpdate) {
152         log.info("Update Parameter for SDC Reference " + isUpdate);
153         //TODO implement this method
154     }
155
156     public void processSdcReferences(SvcLogicContext context, boolean isUpdate) throws SvcLogicException {
157         processSdcReferences(context, isUpdate, null);
158     }
159
160     public void processSdcReferences(SvcLogicContext context, boolean isUpdate, String modelId) throws SvcLogicException {
161         String key;
162         QueryStatus status;
163          if (isUpdate && context.getAttribute(SdcArtifactHandlerConstants.FILE_CATEGORY)
164             .equals(SdcArtifactHandlerConstants.CAPABILITY)) {
165             log.info("Updating capability artifact in ASDC_REFERENCE");
166             key = UPDATE_QUERY_STR + SdcArtifactHandlerConstants.DB_SDC_REFERENCE + "  set ARTIFACT_NAME = $"
167                 + SdcArtifactHandlerConstants.ARTIFACT_NAME + " where " + "FILE_CATEGORY = $"
168                 + SdcArtifactHandlerConstants.FILE_CATEGORY + AND_VNF_TYPE_QUERY_STR
169                 + SdcArtifactHandlerConstants.VNF_TYPE;
170         } else if (isUpdate) {
171             key = UPDATE_QUERY_STR + SdcArtifactHandlerConstants.DB_SDC_REFERENCE + "  set ARTIFACT_NAME = $"
172                 + SdcArtifactHandlerConstants.ARTIFACT_NAME + " where VNFC_TYPE = $"
173                 + SdcArtifactHandlerConstants.VNFC_TYPE + AND_FILE_CAT_QUERY_STR
174                 + SdcArtifactHandlerConstants.FILE_CATEGORY + AND_ACTION_QUERY_STR + SdcArtifactHandlerConstants.ACTION
175                 + AND_VNF_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNF_TYPE;
176             if (StringUtils.isNotBlank(modelId)) {
177                 key += createQueryListForTemplateIds(modelId);
178             }
179         } else {
180             if (context.getAttribute(SdcArtifactHandlerConstants.FILE_CATEGORY)
181                 .equals(SdcArtifactHandlerConstants.CAPABILITY)) {
182                 log.info("Inserting new record for capability artifact in ASDC_REFERENCE");
183                 key = INSERT_INTO_QUERY_STR + SdcArtifactHandlerConstants.DB_SDC_REFERENCE + " set VNFC_TYPE = null "
184                     + " , FILE_CATEGORY = $" + SdcArtifactHandlerConstants.FILE_CATEGORY + VNF_TYPE_QUERY_STR
185                     + SdcArtifactHandlerConstants.VNF_TYPE + " , ACTION = null " + " , ARTIFACT_TYPE = null "
186                     + " , ARTIFACT_NAME = $" + SdcArtifactHandlerConstants.ARTIFACT_NAME;
187             } else {
188                 key = INSERT_INTO_QUERY_STR + SdcArtifactHandlerConstants.DB_SDC_REFERENCE + " set VNFC_TYPE = $"
189                     + SdcArtifactHandlerConstants.VNFC_TYPE + " , FILE_CATEGORY = $"
190                     + SdcArtifactHandlerConstants.FILE_CATEGORY + VNF_TYPE_QUERY_STR
191                     + SdcArtifactHandlerConstants.VNF_TYPE + ACTION_QUERY_STR + SdcArtifactHandlerConstants.ACTION
192                     + " , ARTIFACT_TYPE = $" + SdcArtifactHandlerConstants.ARTIFACT_TYPE + " , ARTIFACT_NAME = $"
193                     + SdcArtifactHandlerConstants.ARTIFACT_NAME;
194             }
195         }
196         if (serviceLogic != null) {
197             log.info("Insert Key: " + key);
198             status = serviceLogic.save("SQL", false, false, key, null, null, context);
199             if (status.toString().equals(FAILURE_PARAM)) {
200                 throw new SvcLogicException("Error While processing sdc_reference table ");
201             }
202         }
203     }
204
205     public boolean isArtifactUpdateRequired(SvcLogicContext context, String db) throws DBException {
206         return isArtifactUpdateRequired( context,  db, null);
207     }
208
209     public boolean isArtifactUpdateRequired(SvcLogicContext context, String db, String modelId)
210         throws DBException {
211         try {
212             log.info("Checking if Update required for this data");
213             log.info("db" + db);
214             log.info("ACTION=" + context.getAttribute(SdcArtifactHandlerConstants.ACTION));
215             log.info("VNFC_TYPE=" + context.getAttribute(SdcArtifactHandlerConstants.VNFC_TYPE));
216             log.info("VNFC_INSTANCE=" + context.getAttribute(SdcArtifactHandlerConstants.VNFC_INSTANCE));
217             log.info("VM_INSTANCE=" + context.getAttribute(SdcArtifactHandlerConstants.VM_INSTANCE));
218             log.info("VNF_TYPE=" + context.getAttribute(SdcArtifactHandlerConstants.VNF_TYPE));
219
220             //Check for templates
221             //if templates are present - there might be multiple records, so validate
222             if( db.equals(SdcArtifactHandlerConstants.DB_SDC_REFERENCE) && StringUtils.isNotBlank(modelId)) {
223                 log.info("ModelId is sent!!");
224                   String queryPart = createQueryListForTemplateIds(modelId);
225                   log.info("Querypart is = "+queryPart);
226                    if (isUpdateRequiredForTemplates(queryPart, context, db)) {
227                        log.info("Update is Required!!");
228                     return true;
229                    } else {
230                        log.info("Insert is Required!!");
231                        return false;
232                    }
233             }
234
235             String whereClause;
236             QueryStatus status;
237             whereClause = WHERE_VNF_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNF_TYPE;
238             whereClause = resolveWhereClause(context, db, whereClause);
239             if (validate(db)) {
240                     String key = "select COUNT(*) from " + db + whereClause;
241                     log.info("SELECT String : " + key);
242                     status = serviceLogic.query("SQL", false, null, key, null, null, context);
243                     checkForFailure(db, status);
244                     String count = context.getAttribute("COUNT(*)");
245                     log.info("Number of row Returned : " + count + ": " + status + ":");
246                     return tryAddCountAttribute(context, count);
247             }
248             return false;
249         } catch (SvcLogicException e) {
250             throw new DBException("An error occurred while checking for artifact update", e);
251         }
252     }
253
254     private void checkForFailure(String db, QueryStatus status) throws SvcLogicException {
255         if (status.toString().equals(FAILURE_PARAM)) {
256             throw new SvcLogicException("Error while reading data from " + db);
257         }
258     }
259
260     private boolean validate(String db) {
261         return db != null && serviceLogic != null;
262     }
263
264     private boolean keyExists(PropertiesConfiguration conf, String property) {
265         if (conf.subset(property) != null) {
266             if (conf.containsKey(property)) {
267                 log.info("Key Exists for property" + property + "in southbound.properties file");
268                 return true;
269             }
270         } else {
271             log.info("Key Does not exists and need to add the key  for property" + property
272                 + "in southbound.properties file");
273         }
274         return false;
275     }
276
277     private boolean tryAddCountAttribute(SvcLogicContext context, String count) {
278         if (count != null && Integer.parseInt(count) > 0) {
279             context.setAttribute(count, null);
280             return true;
281         } else {
282             return false;
283         }
284     }
285
286
287     private String resolveWhereClause(SvcLogicContext context, String db, String whereClause) {
288         if (db != null) {
289             if (hasValidAttributes(context, db)) {
290                 return whereClause + AND_FILE_CAT_QUERY_STR + SdcArtifactHandlerConstants.FILE_CATEGORY;
291             } else if (db.equals(SdcArtifactHandlerConstants.DB_SDC_REFERENCE)) {
292                 return whereClause + AND_VNFC_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNFC_TYPE
293                     + AND_FILE_CAT_QUERY_STR + SdcArtifactHandlerConstants.FILE_CATEGORY + AND_ACTION_QUERY_STR
294                     + SdcArtifactHandlerConstants.ACTION;
295             } else if (db.equals(SdcArtifactHandlerConstants.DB_DOWNLOAD_DG_REFERENCE)) {
296                 return " where PROTOCOL = $" + SdcArtifactHandlerConstants.DEVICE_PROTOCOL;
297             } else if (db.equals(SdcArtifactHandlerConstants.DB_DEVICE_AUTHENTICATION)) {
298                 log.info(" DB validation for Device authentication " + whereClause + " AND  PROTOCOL = $"
299                              + SdcArtifactHandlerConstants.DEVICE_PROTOCOL + " AND ACTION = $"
300                              + SdcArtifactHandlerConstants.ACTION);
301                 return whereClause + " AND  PROTOCOL = $" + SdcArtifactHandlerConstants.DEVICE_PROTOCOL
302                              + " AND ACTION = $" + SdcArtifactHandlerConstants.ACTION;
303             } else if (db.equals(SdcArtifactHandlerConstants.DB_CONFIG_ACTION_DG)) {
304                 return whereClause + AND_ACTION_QUERY_STR + SdcArtifactHandlerConstants.ACTION;
305             } else if (db.equals(SdcArtifactHandlerConstants.DB_VNFC_REFERENCE)) {
306                 return whereClause + AND_ACTION_QUERY_STR + SdcArtifactHandlerConstants.ACTION
307                     + AND_VNFC_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNFC_TYPE + " and VNFC_INSTANCE = $"
308                     + SdcArtifactHandlerConstants.VNFC_INSTANCE + " and VM_INSTANCE = $"
309                     + SdcArtifactHandlerConstants.VM_INSTANCE;
310             }
311         }
312         return whereClause;
313     }
314
315     private boolean hasValidAttributes(SvcLogicContext context, String db) {
316         return db.equals(SdcArtifactHandlerConstants.DB_SDC_REFERENCE)
317             && context.getAttribute(SdcArtifactHandlerConstants.FILE_CATEGORY)
318             .equals(SdcArtifactHandlerConstants.CAPABILITY)
319             && context.getAttribute(SdcArtifactHandlerConstants.ACTION) == null;
320     }
321
322     public void processDeviceInterfaceProtocol(SvcLogicContext context, boolean isUpdate) throws SvcLogicException {
323         log.info("Starting DB operation for Device Interface Protocol " + isUpdate);
324         String key;
325         QueryStatus status;
326         if (isUpdate) {
327             key = UPDATE_QUERY_STR + SdcArtifactHandlerConstants.DB_DEVICE_INTERFACE_PROTOCOL + " set PROTOCOL = $"
328                 + SdcArtifactHandlerConstants.DEVICE_PROTOCOL + " , DG_RPC = 'getDeviceRunningConfig' "
329                 + " , MODULE = 'APPC' " + WHERE_VNF_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNF_TYPE;
330         } else {
331             key =
332                 INSERT_INTO_QUERY_STR + SdcArtifactHandlerConstants.DB_DEVICE_INTERFACE_PROTOCOL + " set  VNF_TYPE = $"
333                     + SdcArtifactHandlerConstants.VNF_TYPE + " , PROTOCOL = $"
334                     + SdcArtifactHandlerConstants.DEVICE_PROTOCOL + " , DG_RPC = 'getDeviceRunningConfig' "
335                     + " , MODULE = 'APPC' ";
336         }
337
338         if (serviceLogic != null && context != null) {
339
340             status = serviceLogic.save("SQL", false, false, key, null, null, context);
341             if (status.toString().equals(FAILURE_PARAM)) {
342                 throw new SvcLogicException("Error While processing DEVICE_INTERFACE_PROTOCOL table ");
343             }
344         }
345     }
346
347     public void processDeviceAuthentication(SvcLogicContext context, boolean isUpdate)
348         throws DBException {
349         try {
350             String fn = "DBService.processDeviceAuthentication";
351             log.info(fn + "Starting DB operation for Device Authentication " + isUpdate);
352             String port = context.getAttribute(SdcArtifactHandlerConstants.PORT_NUMBER);
353             String user = context.getAttribute(SdcArtifactHandlerConstants.USER_NAME);
354             String protocol = context.getAttribute(SdcArtifactHandlerConstants.DEVICE_PROTOCOL);
355             String action = context.getAttribute(SdcArtifactHandlerConstants.ACTION);
356             String vnftype = context.getAttribute(SdcArtifactHandlerConstants.VNF_TYPE);
357
358             if (StringUtils.isBlank(port)) {
359                 port = "0";
360             }
361             if (StringUtils.isBlank(user)) {
362                 user = "";
363             }
364             if (isInvalidInput(SdcArtifactHandlerConstants.DEVICE_PROTOCOL, SdcArtifactHandlerConstants.ACTION,
365                         SdcArtifactHandlerConstants.VNF_TYPE)) {
366                 throw new SvcLogicException(
367                     "Error While processing reference File as few or all of parameters VNF_TYPE,PROTOCOL,ACTION are missing ");
368             }
369
370             log.info("Starting DB operation for Device authentication " + isUpdate);
371             log.info("credentials"+user + "user" + "port" + port +"protocol"+protocol+"action"+action+"vnftype"+vnftype);
372             String key;
373             QueryStatus status;
374             if (isUpdate) {
375                 key = UPDATE_QUERY_STR + SdcArtifactHandlerConstants.DB_DEVICE_AUTHENTICATION + " set USER_NAME = '"
376                         + user + "' , PORT_NUMBER = " + port + "";
377                 if (context.getAttributeKeySet().contains(SdcArtifactHandlerConstants.URL)) {
378                     String url = context.getAttribute(SdcArtifactHandlerConstants.URL);
379                     if (StringUtils.isBlank(url)) {
380                         url = "" ;
381                     }
382                     key = key + ", URL = '" + url + "' ";
383                 }
384                 key = key + WHERE_VNF_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNF_TYPE + "  AND PROTOCOL = $"
385                         + SdcArtifactHandlerConstants.DEVICE_PROTOCOL + " AND  ACTION = $"
386                         + SdcArtifactHandlerConstants.ACTION;
387             } else {
388                 key = "insert into DEVICE_AUTHENTICATION set VNF_TYPE = '" + vnftype + "' , PROTOCOL = '" + protocol
389                         + "' , " + "ACTION = '" + action + "' , USER_NAME = '" + user + "' , PORT_NUMBER = '" + port
390                         + "'";
391                 if (context.getAttributeKeySet().contains(SdcArtifactHandlerConstants.URL)) {
392                     String url = context.getAttribute(SdcArtifactHandlerConstants.URL);
393                     if (StringUtils.isBlank(url)) {
394                         url = "";
395                     }
396                     key = key + ", URL = '" + url + "' ";
397                 }
398             }
399
400             log.info("Query forDevice authentication  " + key);
401             if (serviceLogic != null && context != null) {
402
403                 status = serviceLogic.save("SQL", false, false, key, null, null, context);
404                 if (status.toString().equals(FAILURE_PARAM)) {
405                     throw new SvcLogicException("Error While processing DEVICE_AUTHENTICATION table ");
406                 }
407             }
408
409         } catch (SvcLogicException e) {
410
411             throw new DBException("An error occurred when processing device authentication", e);
412         }
413     }
414
415     private boolean isInvalidInput(String protocol, String action, String vnfType) {
416         return isInvalid(vnfType) && isInvalid(action) && isInvalid(protocol);
417     }
418
419     private boolean isInvalid(String str) {
420         return (str == null) || ("".equals(str));
421     }
422
423     public void processVnfcReference(SvcLogicContext context, boolean isUpdate) throws SvcLogicException {
424         String fn = "DBService.processVnfcReference";
425         log.info(fn + "Starting DB operation for Vnfc Reference " + isUpdate);
426         String key;
427
428         int vmInstance = -1;
429         if (context.getAttribute(SdcArtifactHandlerConstants.VM_INSTANCE) != null) {
430             vmInstance = Integer.parseInt(context.getAttribute(SdcArtifactHandlerConstants.VM_INSTANCE));
431         }
432
433         int vnfcInstance = -1;
434         if (context.getAttribute(SdcArtifactHandlerConstants.VNFC_INSTANCE) != null) {
435             vnfcInstance = Integer.parseInt(context.getAttribute(SdcArtifactHandlerConstants.VNFC_INSTANCE));
436         }
437
438         QueryStatus status;
439         if (isUpdate) {
440             key = UPDATE_QUERY_STR + SdcArtifactHandlerConstants.DB_VNFC_REFERENCE + " set VM_INSTANCE = " + vmInstance
441                 + " , VNFC_INSTANCE = " + vnfcInstance + " , VNFC_TYPE = $" + SdcArtifactHandlerConstants.VNFC_TYPE
442                 + " , VNFC_FUNCTION_CODE = $" + SdcArtifactHandlerConstants.VNFC_FUNCTION_CODE
443                 + " , GROUP_NOTATION_TYPE = $" + SdcArtifactHandlerConstants.GROUP_NOTATION_TYPE
444                 + " , GROUP_NOTATION_VALUE = $" + SdcArtifactHandlerConstants.GROUP_NOTATION_VALUE
445                 + " , IPADDRESS_V4_OAM_VIP = $" + SdcArtifactHandlerConstants.IPADDRESS_V4_OAM_VIP
446                 + WHERE_VNF_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNF_TYPE + AND_ACTION_QUERY_STR
447                 + SdcArtifactHandlerConstants.ACTION + AND_VNFC_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNFC_TYPE
448                 + " and VNFC_INSTANCE = $" + SdcArtifactHandlerConstants.VNFC_INSTANCE + " and VM_INSTANCE = $"
449                 + SdcArtifactHandlerConstants.VM_INSTANCE;
450         } else {
451             key = INSERT_INTO_QUERY_STR + SdcArtifactHandlerConstants.DB_VNFC_REFERENCE + " set  VNF_TYPE = $"
452                 + SdcArtifactHandlerConstants.VNF_TYPE + ACTION_QUERY_STR + SdcArtifactHandlerConstants.ACTION
453                 + " , VM_INSTANCE = $" + SdcArtifactHandlerConstants.VM_INSTANCE + " , VNFC_INSTANCE = $"
454                 + SdcArtifactHandlerConstants.VNFC_INSTANCE + " , VNFC_TYPE = $"
455                 + SdcArtifactHandlerConstants.VNFC_TYPE + " , VNFC_FUNCTION_CODE = $"
456                 + SdcArtifactHandlerConstants.VNFC_FUNCTION_CODE + " , TEMPLATE_ID = $"
457                 + SdcArtifactHandlerConstants.TEMPLATE_ID + " , GROUP_NOTATION_TYPE = $"
458                 + SdcArtifactHandlerConstants.GROUP_NOTATION_TYPE + " , IPADDRESS_V4_OAM_VIP = $"
459                 + SdcArtifactHandlerConstants.IPADDRESS_V4_OAM_VIP + " , GROUP_NOTATION_VALUE = $"
460                 + SdcArtifactHandlerConstants.GROUP_NOTATION_VALUE;
461         }
462
463         if (serviceLogic != null) {
464             status = serviceLogic.save("SQL", false, false, key, null, null, context);
465             if (status.toString().equals(FAILURE_PARAM)) {
466                 throw new SvcLogicException("Error While processing VNFC_REFERENCE table ");
467             }
468         }
469     }
470
471     public void processDownloadDgReference(SvcLogicContext context, boolean isUpdate)
472         throws SvcLogicException {
473         String fn = "DBService.processDownloadDgReference";
474         log.info(fn + "Starting DB operation for Download DG Reference " + isUpdate);
475         String key;
476         QueryStatus status = null;
477
478         if (isUpdate) {
479             key =
480                 UPDATE_QUERY_STR + SdcArtifactHandlerConstants.DB_DOWNLOAD_DG_REFERENCE + SET_DOWNLOAD_CONFIG_QUERY_STR
481                     + SdcArtifactHandlerConstants.DOWNLOAD_DG_REFERENCE + " where PROTOCOL = $"
482                     + SdcArtifactHandlerConstants.DEVICE_PROTOCOL;
483         } else {
484             key = INSERT_INTO_QUERY_STR + SdcArtifactHandlerConstants.DB_DOWNLOAD_DG_REFERENCE
485                 + SET_DOWNLOAD_CONFIG_QUERY_STR
486                 + SdcArtifactHandlerConstants.DOWNLOAD_DG_REFERENCE + " , PROTOCOL = $"
487                 + SdcArtifactHandlerConstants.DEVICE_PROTOCOL;
488         }
489
490         if (serviceLogic != null && context != null) {
491             status = serviceLogic.save("SQL", false, false, key, null, null, context);
492         }
493         if ((status == null) || status.toString().equals(FAILURE_PARAM)) {
494             throw new SvcLogicException("Error While processing DOWNLOAD_DG_REFERENCE table ");
495         }
496     }
497
498     public void processConfigActionDg(SvcLogicContext context, boolean isUpdate) throws SvcLogicException {
499         String fn = "DBService.processConfigActionDg";
500         log.info(fn + "Starting DB operation for Config DG Action " + isUpdate);
501         String key;
502         QueryStatus status = null;
503
504         if (context.getAttribute(SdcArtifactHandlerConstants.DOWNLOAD_DG_REFERENCE) != null
505             && context.getAttribute(SdcArtifactHandlerConstants.DOWNLOAD_DG_REFERENCE).length() > 0) {
506             if (isUpdate) {
507                 key = UPDATE_QUERY_STR + SdcArtifactHandlerConstants.DB_CONFIG_ACTION_DG + SET_DOWNLOAD_CONFIG_QUERY_STR
508                     + SdcArtifactHandlerConstants.DOWNLOAD_DG_REFERENCE + " where ACTION = $"
509                     + SdcArtifactHandlerConstants.ACTION + AND_VNF_TYPE_QUERY_STR
510                     + SdcArtifactHandlerConstants.VNF_TYPE;
511             } else {
512                 key = INSERT_INTO_QUERY_STR + SdcArtifactHandlerConstants.DB_CONFIG_ACTION_DG
513                     + SET_DOWNLOAD_CONFIG_QUERY_STR
514                     + SdcArtifactHandlerConstants.DOWNLOAD_DG_REFERENCE + ACTION_QUERY_STR
515                     + SdcArtifactHandlerConstants.ACTION + VNF_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNF_TYPE;
516             }
517
518             if (serviceLogic != null) {
519                 status = serviceLogic.save("SQL", false, false, key, null, null, context);
520             }
521             if ((status == null) || status.toString().equals(FAILURE_PARAM)) {
522                 throw new SvcLogicException("Error While processing Configure DG Action table ");
523             }
524         } else {
525             log.info("No Update required for Config DG Action");
526         }
527
528     }
529
530     public String getModelDataInformationbyArtifactName(String artifactName) throws SvcLogicException {
531         String fn = "DBService.getVnfData";
532         SvcLogicContext con = new SvcLogicContext();
533         String key;
534         QueryStatus status;
535         key =
536             "select VNF_TYPE, VNFC_TYPE, ACTION, FILE_CATEGORY, ARTIFACT_TYPE from ASDC_REFERENCE where  ARTIFACT_NAME = "
537                 + artifactName;
538
539         if (serviceLogic != null) {
540             log.info(fn + "select Key: " + key);
541             status = serviceLogic.query("SQL", false, null, key, null, null, con);
542             if (status.toString().equals(FAILURE_PARAM)) {
543                 throw new SvcLogicException("Error While processing is ArtifactUpdateRequiredforPD table ");
544             }
545
546         }
547         log.info(fn + "Vnf_received :" + con.getAttribute("VNF_TYPE"));
548
549         return con.getAttribute("VNF_TYPE");
550     }
551
552     public void updateYangContents(SvcLogicContext context, String artifactId, String yangContents)
553         throws SvcLogicException {
554         String fn = "DBService.updateYangContents";
555         log.info(fn + "Starting DB operation for  updateYangContents");
556         String key;
557         QueryStatus status = null;
558
559         key = "update ASDC_ARTIFACTS " + " set ARTIFACT_CONTENT = '" + yangContents + "'"
560             + " where ASDC_ARTIFACTS_ID = " + artifactId;
561
562         if (serviceLogic != null && context != null) {
563             status = serviceLogic.save("SQL", false, false, key, null, null, context);
564         }
565         if ((status == null) || status.toString().equals(FAILURE_PARAM)) {
566             throw new SvcLogicException("Error While processing Configure DG Action table ");
567         }
568
569     }
570
571
572     public void insertProtocolReference(SvcLogicContext context, String vnfType, String protocol, String action,
573         String actionLevel, String template) throws SvcLogicException {
574         String fn = "DBService.insertProtocolReference";
575         log.info(fn + "Starting DB operation for  insertProtocolReference");
576         String key;
577         QueryStatus status = null;
578
579         key = "insert into PROTOCOL_REFERENCE (ACTION, VNF_TYPE, PROTOCOL, UPDATED_DATE, TEMPLATE, ACTION_LEVEL)"
580             + " values  (" + "'" + action + "', '" + vnfType + "', '" + protocol + "', now(),'" + template + "', '"
581             + actionLevel + "')";
582
583         if (serviceLogic != null && context != null) {
584             status = serviceLogic.save("SQL", false, false, key, null, null, context);
585         }
586         if ((status == null) || status.toString().equals(FAILURE_PARAM)) {
587             throw new SvcLogicException("Error While processing insertProtocolReference ");
588         }
589
590     }
591
592     public boolean isProtocolReferenceUpdateRequired(SvcLogicContext context, String vnfType, String protocol,
593         String action, String actionLevel, String template) throws SvcLogicException {
594         SvcLogicContext localContext = new SvcLogicContext();
595         String fn = "DBService.isProtocolReferenceUpdateRequired";
596         log.info(fn + "Starting DB operation for  isProtocolReferenceUpdateRequired");
597
598         String key = "select COUNT(*) from PROTOCOL_REFERENCE where ACTION='" + action + "' and ACTION_LEVEL='" + actionLevel
599             + "' and VNF_TYPE='" + vnfType + "'";
600         serviceLogic.query("SQL", false, null, key, null, null, localContext);
601
602         String countStr = localContext.getAttribute("COUNT(*)");
603         int count = Integer.parseInt(countStr);
604         return count > 0;
605     }
606
607     public void updateProtocolReference(SvcLogicContext context, String vnfType, String protocol, String action,
608         String actionLevel, String template) throws SvcLogicException {
609
610         String fn = "DBService.isProtocolReferenceUpdateRequired";
611         log.info(fn + "Starting DB operation for  isProtocolReferenceUpdateRequired");
612         String key;
613         QueryStatus status;
614
615         key = "update PROTOCOL_REFERENCE set UPDATED_DATE=now(), template='" + template + "', protocol ='" + protocol
616             + "' where ACTION='" + action + "' and ACTION_LEVEL='" + actionLevel + "' and VNF_TYPE='" + vnfType
617             + "'";
618         status = serviceLogic.save("SQL", false, false, key, null, null, context);
619         if (status == QueryStatus.FAILURE) {
620             log.info("updateProtocolReference:: Error updating protocol reference");
621             throw new SvcLogicException("Error - updating PROTOCOL_REFERENCE_TABLE in updateProtocolReference");
622         }
623     }
624
625     public String getDownLoadDGReference(SvcLogicContext context) throws DBException {
626         try {
627
628             String fn = "DBService.setDownLoadDGReference";
629             String downloadConfigDg;
630             log.info(fn + "Setting Download DG Reference from DB");
631             String key;
632             QueryStatus status;
633             String protocol = context.getAttribute(SdcArtifactHandlerConstants.DEVICE_PROTOCOL);
634             if (StringUtils.isBlank(protocol)) {
635                 log.info(fn + " :: Protocol is Blank!! Returning without querying DB");
636                 throw new ConfigurationException(fn + ":: Protocol is Blank!! Returning without querying DB");
637             }
638             key = "select download_config_dg from " + SdcArtifactHandlerConstants.DB_DOWNLOAD_DG_REFERENCE
639                 + " where protocol = '" + protocol + "'";
640             SvcLogicContext localContext = new SvcLogicContext();
641             status = serviceLogic.query("SQL", false, null, key, null, null, localContext);
642             if (status == QueryStatus.FAILURE) {
643                 log.info(fn + ":: Error retrieving download_config_dg");
644                 throw new SvcLogicException("Error retrieving download_config_dg");
645             }
646             if (status == QueryStatus.NOT_FOUND) {
647                 log.info(fn + ":: NOT_FOUND! No data found for download_config_dg!!");
648                 throw new SvcLogicException(fn + ":: NOT_FOUND! No data found for download_config_dg!");
649             }
650             downloadConfigDg = localContext.getAttribute("download-config-dg");
651             log.info(fn + "download_config_dg::" + downloadConfigDg);
652             return downloadConfigDg;
653         } catch (SvcLogicException | ConfigurationException e) {
654             throw new DBException("An error occurred when getting DG reference", e);
655         }
656     }
657
658     public void cleanUpVnfcReferencesForVnf(SvcLogicContext context) throws SvcLogicException {
659         try {
660             String key1 = "delete from " + SdcArtifactHandlerConstants.DB_VNFC_REFERENCE + " where action = $"
661                 + SdcArtifactHandlerConstants.ACTION + " and vnf_type = $" + SdcArtifactHandlerConstants.VNF_TYPE;
662             log.debug("Action : " + context.getAttribute(SdcArtifactHandlerConstants.ACTION));
663             log.debug("vnfType: " + context.getAttribute(SdcArtifactHandlerConstants.VNF_TYPE));
664             QueryStatus status;
665             log.info("cleanUpVnfcReferencesForVnf()::Query:" + key1);
666             if (serviceLogic != null) {
667                 status = serviceLogic.save("SQL", false, false, key1, null, null, context);
668                 if (status.toString().equals(FAILURE_PARAM)) {
669                     log.debug("Error deleting from VNFC_REFERENCE table");
670                     throw new SvcLogicException("Error While processing VNFC_REFERENCE table ");
671                 }
672             }
673         } catch (Exception e) {
674             log.debug("Error deleting from VNFC_REFERENCE table  : "
675                 + context.getAttribute(SdcArtifactHandlerConstants.ACTION) + " and "
676                 + context.getAttribute(SdcArtifactHandlerConstants.VNF_TYPE), e);
677         }
678     }
679
680
681     public boolean isUpdateRequiredForTemplates(String queryPart, SvcLogicContext context, String db) throws DBException {
682         try {
683             log.info("Checking if Update required for this data");
684             log.info("db" + db);
685             log.info("ACTION=" + context.getAttribute(SdcArtifactHandlerConstants.ACTION));
686             log.info("VNF_TYPE=" + context.getAttribute(SdcArtifactHandlerConstants.VNF_TYPE));
687             log.info("");
688             String whereClause;
689             QueryStatus status;
690             whereClause = WHERE_VNF_TYPE_QUERY_STR + SdcArtifactHandlerConstants.VNF_TYPE ;
691             whereClause = resolveWhereClause(context, db, whereClause);
692             whereClause += queryPart;
693             if (validate(db)) {
694                 if (!db.equals(SdcArtifactHandlerConstants.DB_DEVICE_AUTHENTICATION)) {
695                     String key = "select COUNT(*) from " + db + whereClause;
696                     log.info("SELECT String : " + key);
697                     status = serviceLogic.query("SQL", false, null, key, null, null, context);
698                     checkForFailure(db, status);
699                     String count = context.getAttribute("COUNT(*)");
700                     log.info("Number of row Returned : " + count + ": " + status + ":");
701                     return tryAddCountAttribute(context, count);
702                 }
703             }
704             log.info("Problems validating DB and/or Context ");
705             return false;
706
707         } catch (SvcLogicException e) {
708             throw new DBException("An error occurred while checking for artifact update", e);
709         }
710     }
711
712     public String createQueryListForTemplateIds(String modelId) {
713         String queryPart = " AND ARTIFACT_NAME like '%_" + modelId+".%'";
714         return queryPart;
715     }
716 }