22 lines
807 B
JavaScript
22 lines
807 B
JavaScript
|
const pathHelper = require('../pathHelper');
|
||
|
const fileNames = require('../fileNames');
|
||
|
|
||
|
module.exports.setKeypair = (opts, options, s3) => {
|
||
|
console.log('accounts.setKeypair for', opts.account);
|
||
|
|
||
|
var id = opts.account.id || opts.email || 'single-user';
|
||
|
key = pathHelper.accountsPath(options, id)
|
||
|
|
||
|
var body = JSON.stringify({
|
||
|
privateKeyPem: opts.keypair.privateKeyPem // string PEM
|
||
|
, privateKeyJwk: opts.keypair.privateKeyJwk // object JWK
|
||
|
});
|
||
|
|
||
|
return s3.putObject({ Key: key, Body: body, Bucket: options.bucketName }).promise().then((data) => {
|
||
|
console.log('Successfully created account keypair.');
|
||
|
return null;
|
||
|
}).catch((err) => {
|
||
|
console.error('There was an error creating account keypair:', err.message);
|
||
|
return null;
|
||
|
});
|
||
|
}
|