adding catalog-service for mod2
[dcaegen2/platform.git] / mod2 / catalog-service / src / main / java / org / onap / dcaegen2 / platform / mod / mongo / deploymentartifact / DeploymentArtifactMongoGateway.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  org.onap.dcae
4  *  ================================================================================
5  *  Copyright (c) 2020 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *
11  *       http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.dcaegen2.platform.mod.mongo.deploymentartifact;
22
23 import org.onap.dcaegen2.platform.mod.model.deploymentartifact.DeploymentArtifact;
24 import org.onap.dcaegen2.platform.mod.model.deploymentartifact.DeploymentArtifactSearch;
25 import org.onap.dcaegen2.platform.mod.model.deploymentartifact.MsInstanceInfo;
26 import org.onap.dcaegen2.platform.mod.web.service.deploymentartifact.DeploymentArtifactGateway;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.data.domain.Example;
29 import org.springframework.data.domain.ExampleMatcher;
30 import org.springframework.stereotype.Service;
31
32 import java.util.List;
33 import java.util.Optional;
34
35 /**
36  * Mongo implementation of BaseMicroserviceGateway
37  */
38 @Service
39 public class DeploymentArtifactMongoGateway implements DeploymentArtifactGateway {
40
41     @Autowired
42     DeploymentArtifactMongoRepo crudRepo;
43
44     public DeploymentArtifactMongoGateway(DeploymentArtifactMongoRepo repo) {
45         this.crudRepo = repo;
46     }
47
48     @Override
49     public List<DeploymentArtifact> findAll() {
50         return crudRepo.findAll();
51     }
52
53     @Override
54     public List<DeploymentArtifact> findByMsInstanceId(String id) {
55         return crudRepo.findByMsInstanceInfo_Id(id);
56     }
57
58     @Override
59     public Optional<DeploymentArtifact> findById(String id) {
60         return crudRepo.findById(id);
61     }
62
63     @Override
64     public void deleteById(String deploymentArtifactId) {
65         crudRepo.deleteById(deploymentArtifactId);
66     }
67
68     @Override
69     public DeploymentArtifact save(DeploymentArtifact deploymentArtifact) {
70         return crudRepo.save(deploymentArtifact);
71     }
72
73     @Override
74     public List<DeploymentArtifact> findAll(DeploymentArtifactSearch search) {
75         DeploymentArtifact artifact = new DeploymentArtifact();
76         artifact.setStatus(search.getFilter().getStatus());
77         //Currently searching tag in filename as it is not present in DeploymentArtifact record
78         artifact.setFileName(search.getFilter().getTag());
79
80         MsInstanceInfo msInstanceInfo = new MsInstanceInfo();
81         msInstanceInfo.setRelease(search.getFilter().getRelease());
82         artifact.setMsInstanceInfo(msInstanceInfo);
83
84         return crudRepo.findAll(Example.of(artifact,ExampleMatcher.matching().withIgnoreCase()));
85     }
86 }