Merge "[OOM-CERT-SERVICE] Add Certification Request functionality"
[oom/platform/cert-service.git] / certService / src / main / java / org / onap / oom / certservice / certification / CsrModelFactory.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Cert Service
4  * ================================================================================
5  * Copyright (C) 2020-2021 Nokia. 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.oom.certservice.certification;
22
23 import org.bouncycastle.pkcs.PKCS10CertificationRequest;
24 import org.bouncycastle.util.io.pem.PemObject;
25 import org.onap.oom.certservice.certification.exception.CsrDecryptionException;
26 import org.onap.oom.certservice.certification.exception.DecryptionException;
27 import org.onap.oom.certservice.certification.exception.KeyDecryptionException;
28 import org.onap.oom.certservice.certification.model.CsrModel;
29 import org.springframework.stereotype.Service;
30
31
32 @Service
33 public class CsrModelFactory {
34
35     private final PemObjectFactory pemObjectFactory
36             = new PemObjectFactory();
37     private final Pkcs10CertificationRequestFactory certificationRequestFactory
38             = new Pkcs10CertificationRequestFactory();
39
40
41     public CsrModel createCsrModel(StringBase64 csr, StringBase64 privateKey)
42             throws DecryptionException {
43         PKCS10CertificationRequest decodedCsr = decodeCsr(csr);
44         PemObject decodedPrivateKey = decodePrivateKey(privateKey);
45         return new CsrModel.CsrModelBuilder(decodedCsr, decodedPrivateKey).build();
46     }
47
48     private PemObject decodePrivateKey(StringBase64 privateKey)
49             throws KeyDecryptionException {
50
51         return privateKey.asString()
52                 .flatMap(pemObjectFactory::createPemObject)
53                 .orElseThrow(
54                         () -> new KeyDecryptionException("Incorrect Key, decryption failed")
55                 );
56     }
57
58     private PKCS10CertificationRequest decodeCsr(StringBase64 csr)
59             throws CsrDecryptionException {
60         return csr.asString()
61                 .flatMap(pemObjectFactory::createPemObject)
62                 .flatMap(certificationRequestFactory::createPkcs10CertificationRequest)
63                 .orElseThrow(
64                         () -> new CsrDecryptionException("Incorrect CSR, decryption failed")
65                 );
66     }
67
68 }
69
70