open-vault/ui/app/components/transit-key-actions.js

203 lines
5.3 KiB
JavaScript
Raw Normal View History

import { assign } from '@ember/polyfills';
import { copy } from 'ember-copy';
import { assert } from '@ember/debug';
import { inject as service } from '@ember/service';
import Component from '@ember/component';
import { set, get, computed } from '@ember/object';
2018-04-03 14:16:57 +00:00
const TRANSIT_PARAMS = {
hash_algorithm: 'sha2-256',
algorithm: 'sha2-256',
signature_algorithm: 'pss',
2018-04-03 14:16:57 +00:00
bits: 256,
bytes: 32,
ciphertext: null,
context: null,
format: 'base64',
hmac: null,
input: null,
key_version: 0,
keys: null,
nonce: null,
param: 'wrapped',
prehashed: false,
plaintext: null,
random_bytes: null,
signature: null,
sum: null,
exportKeyType: null,
exportKeyVersion: null,
wrappedToken: null,
valid: null,
plaintextOriginal: null,
didDecode: false,
verification: 'Signature',
2018-04-03 14:16:57 +00:00
};
const PARAMS_FOR_ACTION = {
sign: ['input', 'hash_algorithm', 'key_version', 'prehashed', 'signature_algorithm'],
verify: ['input', 'hmac', 'signature', 'hash_algorithm', 'prehashed'],
hmac: ['input', 'algorithm', 'key_version'],
2018-04-03 14:16:57 +00:00
encrypt: ['plaintext', 'context', 'nonce', 'key_version'],
decrypt: ['ciphertext', 'context', 'nonce'],
rewrap: ['ciphertext', 'context', 'nonce', 'key_version'],
};
export default Component.extend(TRANSIT_PARAMS, {
store: service(),
2018-04-03 14:16:57 +00:00
// public attrs
selectedAction: null,
key: null,
onRefresh() {},
2018-04-03 14:16:57 +00:00
init() {
this._super(...arguments);
if (get(this, 'selectedAction')) {
return;
}
set(this, 'selectedAction', get(this, 'key.supportedActions.firstObject'));
assert('`key` is required for `' + this.toString() + '`.', this.getModelInfo());
2018-04-03 14:16:57 +00:00
},
didReceiveAttrs() {
this._super(...arguments);
this.checkAction();
if (get(this, 'selectedAction') === 'export') {
this.setExportKeyDefaults();
}
},
setExportKeyDefaults() {
const exportKeyType = get(this, 'key.exportKeyTypes.firstObject');
const exportKeyVersion = get(this, 'key.validKeyVersions.lastObject');
this.setProperties({
exportKeyType,
exportKeyVersion,
});
},
keyIsRSA: computed('key.type', function() {
let type = get(this, 'key.type');
return type === 'rsa-2048' || type === 'rsa-3072' || type === 'rsa-4096';
}),
2018-04-03 14:16:57 +00:00
getModelInfo() {
const model = get(this, 'key') || get(this, 'backend');
if (!model) {
return null;
}
const backend = get(model, 'backend') || get(model, 'id');
const id = get(model, 'id');
return {
backend,
id,
};
},
checkAction() {
const currentAction = get(this, 'selectedAction');
const oldAction = get(this, 'oldSelectedAction');
this.resetParams(oldAction, currentAction);
set(this, 'oldSelectedAction', currentAction);
},
resetParams(oldAction, action) {
let params = copy(TRANSIT_PARAMS);
2018-04-03 14:16:57 +00:00
let paramsToKeep;
let clearWithoutCheck =
!oldAction ||
// don't save values from datakey
oldAction === 'datakey' ||
// can rewrap signatures — using that as a ciphertext later would be problematic
(oldAction === 'rewrap' && !get(this, 'key.supportsEncryption'));
if (!clearWithoutCheck && action) {
paramsToKeep = PARAMS_FOR_ACTION[action];
}
if (paramsToKeep) {
paramsToKeep.forEach(param => delete params[param]);
}
//resets params still left in the object to defaults
this.clearErrors();
2018-04-03 14:16:57 +00:00
this.setProperties(params);
if (action === 'export') {
this.setExportKeyDefaults();
}
},
handleError(e) {
this.set('errors', e.errors);
},
clearErrors() {
this.set('errors', null);
},
2018-04-03 14:16:57 +00:00
handleSuccess(resp, options, action) {
let props = {};
if (resp && resp.data) {
if (action === 'export' && resp.data.keys) {
const { keys, type, name } = resp.data;
resp.data.keys = { keys, type, name };
}
props = assign({}, props, resp.data);
2018-04-03 14:16:57 +00:00
}
if (options.wrapTTL) {
props = assign({}, props, { wrappedToken: resp.wrap_info.token });
2018-04-03 14:16:57 +00:00
}
this.setProperties(props);
if (action === 'rotate') {
this.get('onRefresh')();
2018-04-03 14:16:57 +00:00
}
},
compactData(data) {
let type = get(this, 'key.type');
let isRSA = type === 'rsa-2048' || type === 'rsa-3072' || type === 'rsa-4096';
2018-04-03 14:16:57 +00:00
return Object.keys(data).reduce((result, key) => {
if (key === 'signature_algorithm' && !isRSA) {
return result;
}
2018-04-03 14:16:57 +00:00
if (data[key]) {
result[key] = data[key];
}
return result;
}, {});
},
actions: {
onActionChange(action) {
set(this, 'selectedAction', action);
this.checkAction();
},
onClear() {
this.resetParams(null, get(this, 'selectedAction'));
},
clearParams(params) {
const arr = Array.isArray(params) ? params : [params];
arr.forEach(param => this.set(param, null));
},
doSubmit(data, options = {}) {
const { backend, id } = this.getModelInfo();
const action = this.get('selectedAction');
let payload = data ? this.compactData(data) : null;
this.setProperties({
errors: null,
result: null,
});
this.get('store')
.adapterFor('transit-key')
.keyAction(action, { backend, id, payload }, options)
.then(
resp => this.handleSuccess(resp, options, action),
(...errArgs) => this.handleError(...errArgs)
);
},
},
});