Add spring security to mitigate cve-2017-4995
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nokia / onap / direct / notification / VnfcManager.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.notification;
17
18 import org.onap.aai.domain.yang.v11.RelationshipList;
19 import org.onap.aai.domain.yang.v11.Vnfc;
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.AAIRestApiProvider;
21 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.Conditions;
22 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.CbamRestApiProvider;
23 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.DriverProperties;
24 import org.slf4j.Logger;
25 import org.springframework.beans.factory.annotation.Autowired;
26 import org.springframework.context.annotation.Conditional;
27 import org.springframework.stereotype.Component;
28
29 import static java.lang.String.format;
30 import static org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.AAIRestApiProvider.AAIService.NETWORK;
31 import static org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.CbamUtils.SEPARATOR;
32
33 /**
34  * Responsible for managing {@link Vnfc} in AAI
35  */
36 @Component
37 @Conditional(value = Conditions.UseForDirect.class)
38 public class VnfcManager extends AbstractManager {
39     private static Logger logger = org.slf4j.LoggerFactory.getLogger(VnfcManager.class);
40
41     @Autowired
42     VnfcManager(AAIRestApiProvider aaiRestApiProvider, CbamRestApiProvider cbamRestApiProvider, DriverProperties driverProperties) {
43         super(aaiRestApiProvider, cbamRestApiProvider, driverProperties);
44     }
45
46     /**
47      * @param vnfId      the identifier of the VNF
48      * @param cbamVnfcId the identifier of the VNFC in CBAM
49      * @return the URL of the VNFC
50      */
51     public static String buildUrl(String vnfId, String cbamVnfcId) {
52         return format("/vnfcs/vnfc/%s", buildId(vnfId, cbamVnfcId));
53     }
54
55     private static String buildId(String vnfId, String cbamVnfcId) {
56         return vnfId + SEPARATOR + cbamVnfcId;
57     }
58
59     @Override
60     protected Logger getLogger() {
61         return logger;
62     }
63
64     void delete(String vnfId, com.nokia.cbam.lcm.v32.model.AffectedVnfc cbamVnfc) {
65         aaiRestApiProvider.delete(logger, NETWORK, buildUrl(vnfId, cbamVnfc.getId()));
66     }
67
68     void update(String vimId, String tenantId, String vnfId, com.nokia.cbam.lcm.v32.model.AffectedVnfc cbamVnfc, boolean inMaintenance) {
69         String url = buildUrl(vnfId, cbamVnfc.getId());
70         Vnfc vnfc = createOrGet(NETWORK, url, OBJECT_FACTORY.createVnfc());
71         updateFields(vimId, tenantId, vnfc, cbamVnfc, vnfId, url, inMaintenance);
72     }
73
74     private void updateFields(String vimId, String tenantId, Vnfc aaiVnfc, com.nokia.cbam.lcm.v32.model.AffectedVnfc cbamVnfc, String vnfId, String url, boolean inMaintenance) {
75         aaiVnfc.setInMaint(inMaintenance);
76         aaiVnfc.setIsClosedLoopDisabled(inMaintenance);
77         //FIXME would be good to know what is this mandatory parameter
78         aaiVnfc.setNfcFunction(cbamVnfc.getId());
79         //FIXME would be good to know what is this mandatory parameter
80         aaiVnfc.setNfcNamingCode(cbamVnfc.getId());
81         aaiVnfc.setVnfcName(buildId(vnfId, cbamVnfc.getId()));
82         aaiVnfc.setRelationshipList(new RelationshipList());
83         addSingletonRelation(aaiVnfc.getRelationshipList(), VserverManager.linkTo(vimId, tenantId, cbamVnfc.getComputeResource().getResourceId()));
84         addSingletonRelation(aaiVnfc.getRelationshipList(), GenericVnfManager.linkTo(vnfId));
85         aaiRestApiProvider.put(logger, NETWORK, url, aaiVnfc, Void.class);
86     }
87 }