blob: 11c8ef4ba35a964019d8c7de798fd2974da3b5f7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package com.epam.dlab.backendapi.service.impl;
import com.epam.dlab.auth.UserInfo;
import com.epam.dlab.backendapi.conf.SelfServiceApplicationConfiguration;
import com.epam.dlab.backendapi.resources.dto.KeysDTO;
import com.epam.dlab.backendapi.service.AccessKeyService;
import com.epam.dlab.exceptions.DlabException;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.JSchException;
import com.jcraft.jsch.KeyPair;
import lombok.extern.slf4j.Slf4j;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
@Singleton
@Slf4j
public class AccessKeyServiceImpl implements AccessKeyService {
@Inject
private SelfServiceApplicationConfiguration configuration;
@Override
public KeysDTO generateKeys(UserInfo userInfo) {
log.debug("Generating new key pair for user {}", userInfo.getName());
try (ByteArrayOutputStream publicKeyOut = new ByteArrayOutputStream();
ByteArrayOutputStream privateKeyOut = new ByteArrayOutputStream()) {
KeyPair pair = KeyPair.genKeyPair(new JSch(), KeyPair.RSA, configuration.getPrivateKeySize());
pair.writePublicKey(publicKeyOut, userInfo.getName());
pair.writePrivateKey(privateKeyOut);
return new KeysDTO(new String(publicKeyOut.toByteArray()),
new String(privateKeyOut.toByteArray()), userInfo.getName());
} catch (JSchException | IOException e) {
log.error("Can not generate private/public key pair due to: {}", e.getMessage());
throw new DlabException("Can not generate private/public key pair due to: " + e.getMessage(), e);
}
}
}