fdb446c849a38a61e96592ee2199661af71c5b3e
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / impl / CpsAdminPersistenceServiceImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation. All rights reserved.
4  *  Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.cps.spi.impl;
23
24 import java.util.Collection;
25 import java.util.stream.Collectors;
26 import org.onap.cps.spi.CpsAdminPersistenceService;
27 import org.onap.cps.spi.entities.AnchorEntity;
28 import org.onap.cps.spi.entities.Dataspace;
29 import org.onap.cps.spi.entities.SchemaSet;
30 import org.onap.cps.spi.exceptions.AnchorAlreadyDefinedException;
31 import org.onap.cps.spi.exceptions.DataspaceAlreadyDefinedException;
32 import org.onap.cps.spi.model.Anchor;
33 import org.onap.cps.spi.repository.AnchorRepository;
34 import org.onap.cps.spi.repository.DataspaceRepository;
35 import org.onap.cps.spi.repository.SchemaSetRepository;
36 import org.springframework.beans.factory.annotation.Autowired;
37 import org.springframework.dao.DataIntegrityViolationException;
38 import org.springframework.stereotype.Component;
39
40 @Component
41 public class CpsAdminPersistenceServiceImpl implements CpsAdminPersistenceService {
42
43     @Autowired
44     private DataspaceRepository dataspaceRepository;
45
46     @Autowired
47     private AnchorRepository anchorRepository;
48
49     @Autowired
50     private SchemaSetRepository schemaSetRepository;
51
52     @Override
53     public void createDataspace(final String dataspaceName) {
54         try {
55             dataspaceRepository.save(new Dataspace(dataspaceName));
56         } catch (final DataIntegrityViolationException e) {
57             throw new DataspaceAlreadyDefinedException(dataspaceName, e);
58         }
59     }
60
61     @Override
62     public void createAnchor(final String dataspaceName, final String schemaSetName, final String anchorName) {
63         final Dataspace dataspace = dataspaceRepository.getByName(dataspaceName);
64         final SchemaSet schemaSet = schemaSetRepository.getByDataspaceAndName(dataspace, schemaSetName);
65         final AnchorEntity anchorEntity = AnchorEntity.builder()
66             .name(anchorName)
67             .dataspace(dataspace)
68             .schemaSet(schemaSet)
69             .build();
70         try {
71             anchorRepository.save(anchorEntity);
72         } catch (final DataIntegrityViolationException e) {
73             throw new AnchorAlreadyDefinedException(dataspaceName, anchorName, e);
74         }
75     }
76
77     @Override
78     public Collection<Anchor> getAnchors(final String dataspaceName) {
79         final Dataspace dataspace = dataspaceRepository.getByName(dataspaceName);
80         final Collection<AnchorEntity> anchorEntities = anchorRepository.findAllByDataspace(dataspace);
81         return anchorEntities.stream().map(CpsAdminPersistenceServiceImpl::toAnchor).collect(Collectors.toList());
82     }
83
84     private static Anchor toAnchor(final AnchorEntity anchorEntity) {
85         return Anchor.builder()
86             .name(anchorEntity.getName())
87             .dataspaceName(anchorEntity.getDataspace().getName())
88             .schemaSetName(anchorEntity.getSchemaSet().getName())
89             .build();
90     }
91 }