2017-12-07 15:11:24 +01:00
|
|
|
/**
|
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
var fs = require('fs-extra');
|
|
|
|
var when = require('when');
|
|
|
|
var fspath = require("path");
|
2018-01-05 17:12:01 +01:00
|
|
|
var sshTools = require("./projects/ssh");
|
2017-12-07 15:11:24 +01:00
|
|
|
|
|
|
|
var settings;
|
|
|
|
var runtime;
|
|
|
|
var log;
|
|
|
|
var sshkeyDir;
|
|
|
|
|
|
|
|
function init(_settings, _runtime) {
|
|
|
|
settings = _settings;
|
|
|
|
runtime = _runtime;
|
|
|
|
log = runtime.log;
|
2017-12-21 00:45:17 +01:00
|
|
|
sshkeyDir = fspath.join(settings.userDir, "projects", ".sshkeys");
|
2017-12-07 15:11:24 +01:00
|
|
|
// console.log('sshkeys.init()');
|
|
|
|
return createSSHKeyDirectory();
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSSHKeyDirectory() {
|
|
|
|
return fs.ensureDir(sshkeyDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
function listSSHKeys(username) {
|
|
|
|
var startStr = username + '_';
|
|
|
|
// console.log('sshkeyDir:', sshkeyDir);
|
|
|
|
return fs.readdir(sshkeyDir).then(function(fns) {
|
|
|
|
var ret = fns.sort()
|
|
|
|
.filter(function(fn) {
|
|
|
|
var fullPath = fspath.join(sshkeyDir,fn);
|
2017-12-20 11:44:57 +01:00
|
|
|
if (fn.length > 2 || fn[0] != ".") {
|
2017-12-07 15:11:24 +01:00
|
|
|
var stats = fs.lstatSync(fullPath);
|
|
|
|
if (stats.isFile()) {
|
|
|
|
return fn.startsWith(startStr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
})
|
|
|
|
.map(function(filename) {
|
|
|
|
return filename.substr(startStr.length);
|
|
|
|
})
|
|
|
|
.reduce(function(prev, current) {
|
|
|
|
var parsePath = fspath.parse(current);
|
|
|
|
if ( parsePath ) {
|
|
|
|
if ( parsePath.ext !== '.pub' ) {
|
|
|
|
// Private Keys
|
|
|
|
prev.keyFiles.push(parsePath.base);
|
|
|
|
}
|
|
|
|
else if ( parsePath.ext === '.pub' && (prev.keyFiles.some(function(elem){ return elem === parsePath.name; }))) {
|
|
|
|
prev.privateKeyFiles.push(parsePath.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return prev;
|
|
|
|
}, { keyFiles: [], privateKeyFiles: [] });
|
|
|
|
return ret.privateKeyFiles.map(function(filename) {
|
|
|
|
return {
|
|
|
|
name: filename
|
|
|
|
};
|
|
|
|
});
|
2017-12-21 00:45:17 +01:00
|
|
|
});
|
2017-12-07 15:11:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getSSHKey(username, name) {
|
|
|
|
return checkSSHKeyFileAndGetPublicKeyFileName(username, name)
|
|
|
|
.then(function(publicSSHKeyPath) {
|
|
|
|
return fs.readFile(publicSSHKeyPath, 'utf-8');
|
2017-12-21 18:40:24 +01:00
|
|
|
}).catch(function() {
|
|
|
|
return null;
|
2017-12-07 15:11:24 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-19 14:57:40 +01:00
|
|
|
function generateSSHKey(username, options) {
|
|
|
|
options = options || {};
|
|
|
|
var name = options.name || "";
|
2017-12-15 15:48:52 +01:00
|
|
|
return checkExistSSHKeyFiles(username, name)
|
|
|
|
.then(function(result) {
|
|
|
|
if ( result ) {
|
2017-12-21 18:40:24 +01:00
|
|
|
var e = new Error("SSH Key name exists");
|
|
|
|
e.code = "key_exists";
|
|
|
|
throw e;
|
|
|
|
} else {
|
2017-12-21 00:45:17 +01:00
|
|
|
var comment = options.comment || "";
|
2017-12-19 14:57:40 +01:00
|
|
|
var password = options.password || "";
|
|
|
|
var size = options.size || 2048;
|
2017-12-15 15:48:52 +01:00
|
|
|
var sshKeyFileBasename = username + '_' + name;
|
|
|
|
var privateKeyFilePath = fspath.join(sshkeyDir, sshKeyFileBasename);
|
2017-12-21 18:40:24 +01:00
|
|
|
return generateSSHKeyPair(name, privateKeyFilePath, comment, password, size)
|
2017-12-15 15:48:52 +01:00
|
|
|
}
|
|
|
|
})
|
2017-12-07 15:11:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function deleteSSHKey(username, name) {
|
|
|
|
return checkSSHKeyFileAndGetPublicKeyFileName(username, name)
|
|
|
|
.then(function() {
|
|
|
|
return deleteSSHKeyFiles(username, name);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-15 15:48:52 +01:00
|
|
|
function checkExistSSHKeyFiles(username, name) {
|
|
|
|
var sshKeyFileBasename = username + '_' + name;
|
|
|
|
var privateKeyFilePath = fspath.join(sshkeyDir, sshKeyFileBasename);
|
|
|
|
var publicKeyFilePath = fspath.join(sshkeyDir, sshKeyFileBasename + '.pub');
|
2017-12-21 18:40:24 +01:00
|
|
|
return Promise.all([
|
2017-12-15 15:48:52 +01:00
|
|
|
fs.access(privateKeyFilePath, (fs.constants || fs).R_OK),
|
|
|
|
fs.access(publicKeyFilePath , (fs.constants || fs).R_OK)
|
|
|
|
])
|
|
|
|
.then(function() {
|
|
|
|
return true;
|
|
|
|
})
|
|
|
|
.catch(function() {
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-07 15:11:24 +01:00
|
|
|
function checkSSHKeyFileAndGetPublicKeyFileName(username, name) {
|
|
|
|
var sshKeyFileBasename = username + '_' + name;
|
|
|
|
var privateKeyFilePath = fspath.join(sshkeyDir, sshKeyFileBasename);
|
|
|
|
var publicKeyFilePath = fspath.join(sshkeyDir, sshKeyFileBasename + '.pub');
|
2017-12-15 15:48:52 +01:00
|
|
|
return Promise.all([
|
2017-12-07 15:11:24 +01:00
|
|
|
fs.access(privateKeyFilePath, (fs.constants || fs).R_OK),
|
|
|
|
fs.access(publicKeyFilePath , (fs.constants || fs).R_OK)
|
|
|
|
])
|
|
|
|
.then(function() {
|
2017-12-15 15:48:52 +01:00
|
|
|
return publicKeyFilePath;
|
2017-12-07 15:11:24 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function deleteSSHKeyFiles(username, name) {
|
|
|
|
var sshKeyFileBasename = username + '_' + name;
|
|
|
|
var privateKeyFilePath = fspath.join(sshkeyDir, sshKeyFileBasename);
|
|
|
|
var publicKeyFilePath = fspath.join(sshkeyDir, sshKeyFileBasename + '.pub');
|
2017-12-15 15:48:52 +01:00
|
|
|
return Promise.all([
|
2017-12-07 15:11:24 +01:00
|
|
|
fs.remove(privateKeyFilePath),
|
|
|
|
fs.remove(publicKeyFilePath)
|
2018-01-05 17:12:01 +01:00
|
|
|
])
|
|
|
|
.then(function() {
|
|
|
|
return true;
|
|
|
|
});
|
2017-12-07 15:11:24 +01:00
|
|
|
}
|
|
|
|
|
2017-12-21 18:40:24 +01:00
|
|
|
function generateSSHKeyPair(name, privateKeyPath, comment, password, size) {
|
|
|
|
log.trace("ssh-keygen["+[name,privateKeyPath,comment,size,"hasPassword?"+!!password].join(",")+"]");
|
2018-01-05 17:12:01 +01:00
|
|
|
return sshTools.generateKey({location: privateKeyPath, comment: comment, password: password, size: size})
|
|
|
|
.then(function(stdout) {
|
|
|
|
return name;
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
log.log('[SSHKey generation] error:', err);
|
|
|
|
throw err;
|
|
|
|
});
|
2017-12-07 15:11:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init: init,
|
|
|
|
listSSHKeys: listSSHKeys,
|
|
|
|
getSSHKey: getSSHKey,
|
|
|
|
generateSSHKey: generateSSHKey,
|
|
|
|
deleteSSHKey: deleteSSHKey
|
|
|
|
};
|