summaryrefslogtreecommitdiffstats
path: root/mod2/catalog-service/src/main/java/org/onap/dcaegen2/platform/mod/web/service/basemicroservice/MsServiceImpl.java
blob: 9cf46e6acf86b5c7c436c39943bbf51642f3821b (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.dcae
 *  ================================================================================
 *  Copyright (c) 2020 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=========================================================
 */

package org.onap.dcaegen2.platform.mod.web.service.basemicroservice;

import org.onap.dcaegen2.platform.mod.model.basemicroservice.BaseMicroservice;
import org.onap.dcaegen2.platform.mod.model.basemicroservice.BaseMsStatus;
import org.onap.dcaegen2.platform.mod.model.common.AuditFields;
import org.onap.dcaegen2.platform.mod.model.exceptions.ErrorMessages;
import org.onap.dcaegen2.platform.mod.model.exceptions.ResourceConflictException;
import org.onap.dcaegen2.platform.mod.model.exceptions.basemicroservice.BaseMicroserviceNotFoundException;
import org.onap.dcaegen2.platform.mod.model.microserviceinstance.MsInstance;
import org.onap.dcaegen2.platform.mod.model.restapi.MicroserviceCreateRequest;
import org.onap.dcaegen2.platform.mod.model.restapi.MicroserviceUpdateRequest;
import org.onap.dcaegen2.platform.mod.web.service.microserviceinstance.MsInstanceService;
import lombok.Setter;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * MsService implementation
 */
@Service
public class MsServiceImpl implements MsService {

    @Autowired
    @Setter
    private BaseMicroserviceGateway repository;

    @Autowired
    @Setter
    private MsInstanceService msInstanceService;

    /**
     * creates Microservice record
     * @param microserviceRequest
     * @return
     */
    @Override
    public BaseMicroservice createMicroservice(MicroserviceCreateRequest microserviceRequest) {
        checkIfThereAreAnyConflicts(microserviceRequest); //TODO: Make fields unique in entity itself
        BaseMicroservice microservice = new BaseMsCreator().create(microserviceRequest);
        return repository.save(microservice);
    }

    /**
     * name, tag and serviceName are unique for the given ms. This method make sure that.
     * */
    private void checkIfThereAreAnyConflicts(MicroserviceCreateRequest microserviceRequest) {
        checkIfMsNameAlreadyExists(microserviceRequest.getName());
        checkIfMsTagAlreadyExists(microserviceRequest.getTag());
        checkiIfServiceNameAlreadyExists(microserviceRequest.getServiceName());
    }

    private void checkIfMsNameAlreadyExists(String msName) {
        if (repository.findByName(msName).isPresent())
            throw new ResourceConflictException(ErrorMessages.MICROSERVICE_NAME_CONFLICT_MESSAGE);
    }

    private void checkIfMsTagAlreadyExists(String msTag) {
        if (repository.findByTag(msTag).isPresent())
            throw new ResourceConflictException(ErrorMessages.MICROSERVICE_TAG_CONFLICT_MESSAGE);
    }

    private void checkiIfServiceNameAlreadyExists(String serviceName) {
        boolean serviceNameIsEmpty = serviceName == null || serviceName.isEmpty();
        if(serviceNameIsEmpty)
            return;
        if (repository.findByServiceName(serviceName).isPresent())
            throw new ResourceConflictException(ErrorMessages.MS_SERVICE_NAME_CONFLICT_MESSAGE);
    }

    /**
     * lists all microservice records
     * @return
     */
    @Override
    public List<BaseMicroservice> getAllMicroservices() {
        return repository.findAll();
    }

    /**
     * gets a Mioroservice by id
     * @param baseMsId
     * @return
     */
    @Override
    public BaseMicroservice getMicroserviceById(String baseMsId) {
        return repository.findById(baseMsId).orElseThrow(() ->
                new BaseMicroserviceNotFoundException(String.format("Microservice with id %s not found", baseMsId)));
    }

    /**
     * gets a Microservice by name
     * @param msName
     * @return
     */
    @Override
    public BaseMicroservice getMicroserviceByName(String msName) {
        return repository.findByName(msName).orElseThrow(() ->
                new BaseMicroserviceNotFoundException(String.format("Microservice with name %s not found", msName)));
    }

    /**
     * updates a Microservice
     * @param requestedMsId
     * @param updateRequest
     */
    @Override
    public void updateMicroservice(String requestedMsId, MicroserviceUpdateRequest updateRequest) {
        BaseMicroservice microservice = getMicroserviceById(requestedMsId);
        updateMetadata(updateRequest, microservice);
        updateOtherFields(updateRequest, microservice);
        repository.save(microservice);
        msInstanceService.updateMicroserviceReference(microservice);
    }

    //TODO: Get rid of nulls!
    private void updateMetadata(MicroserviceUpdateRequest updateRequest, BaseMicroservice microservice) {
        if(updateRequest.getUser() != null){
            microservice.getMetadata().setUpdatedBy(updateRequest.getUser());
        }
        if(updateRequest.getMetadata() != null && updateRequest.getMetadata().containsKey("notes")){
            microservice.getMetadata().setNotes((String) updateRequest.getMetadata().get("notes"));
        }
        if(updateRequest.getMetadata() != null && updateRequest.getMetadata().containsKey("labels")){
            microservice.getMetadata().setLabels((List<String>) updateRequest.getMetadata().get("labels"));
        }
        microservice.getMetadata().setUpdatedOn(new Date());
    }

    private void updateOtherFields(MicroserviceUpdateRequest updateRequest, BaseMicroservice microservice) {
        if(updateRequest.getName() != null){
            updateName(updateRequest, microservice);
        }
        if(updateRequest.getType() != null){
            microservice.setType(updateRequest.getType());
        }
        if(updateRequest.getLocation() != null){
            microservice.setLocation(updateRequest.getLocation());
        }
        if(updateRequest.getServiceName() != null){
            updateServiceName(updateRequest, microservice);
        }
        if(updateRequest.getNamespace() != null){
            microservice.setNamespace(updateRequest.getNamespace());
        }
    }

    /**
     * If name requested in the updateRequest doesn't match the name of the ms record which is being worked on,
     * then only check for the uniqueness.
     */
    private void updateName(MicroserviceUpdateRequest updateRequest, BaseMicroservice microservice) {
        boolean notMatchesWithCurrentName = !updateRequest.getName().equals(microservice.getName());
        if(notMatchesWithCurrentName)
            checkIfMsNameAlreadyExists(updateRequest.getName());
        microservice.setName(updateRequest.getName());
    }

    /**
     * If serviceName requested in the updateRequest doesn't match the serviceName of the ms record which is
     * being worked on, then only check for the uniqueness.
     */
    private void updateServiceName(MicroserviceUpdateRequest updateRequest, BaseMicroservice microservice) {
        boolean notMatchesWithCurrentServiceName = !updateRequest.getServiceName().equals(microservice.getServiceName());
        if(notMatchesWithCurrentServiceName)
            checkiIfServiceNameAlreadyExists(updateRequest.getServiceName());
        microservice.setServiceName(updateRequest.getServiceName());
    }

    /**
     * saves msInstance reference in a given Microservice
     * @param microservice
     * @param msInstance
     */
    @Override
    public void saveMsInstanceReferenceToMs(BaseMicroservice microservice, MsInstance msInstance) {
        microservice.getMsInstances().add(getMsInstanceReference(msInstance));
        repository.save(microservice);
    }

    /**
     * updates MsIntstance ref in Microservice record
     * @param msInstance
     */
    @Override
    public void updateMsInstanceRef(MsInstance msInstance) {
        BaseMicroservice microservice = getMicroserviceById((String) msInstance.getMsInfo().get("id"));
        List<Map<String, String>> msInstancesRef = microservice.getMsInstances();
        msInstancesRef.forEach((ref) -> {
            if(ref.get("id").equals(msInstance.getId()))
                ref.put("name", msInstance.getName());
        });
        repository.save(microservice);
    }

    private Map<String, String> getMsInstanceReference(MsInstance msInstance) {
        Map<String,String> msInstanceInfo = new HashMap<>();
        msInstanceInfo.put("id", msInstance.getId());
        msInstanceInfo.put("name", msInstance.getName());
        return msInstanceInfo;
    }

    private class BaseMsCreator {

        BaseMicroservice create(MicroserviceCreateRequest createRequest) {
            BaseMicroservice microservice = new BaseMicroservice();
            microservice.setLocation(createRequest.getLocation());
            microservice.setName(createRequest.getName());
            microservice.setTag(createRequest.getTag());
            microservice.setServiceName(createRequest.getServiceName());
            microservice.setNamespace(createRequest.getNamespace());
            microservice.setStatus(BaseMsStatus.ACTIVE);
            microservice.setType(createRequest.getType());
            microservice.setMetadata(getMetadataFields(createRequest));
            return microservice;
        }

        private AuditFields getMetadataFields(MicroserviceCreateRequest request) {
            AuditFields auditFields = AuditFields.builder().build();
            auditFields.setCreatedBy(request.getUser());
            auditFields.setCreatedOn(new Date());

            if (request.getMetadata().containsKey("notes"))
                auditFields.setNotes((String) request.getMetadata().get("notes"));
            if (request.getMetadata().containsKey("labels"))
//                auditFields.setLabels((List<String>) request.getMetadata().get("labels"));
                auditFields.setLabels(request.getMetadata().get("labels"));

            return auditFields;

        }
    }
}