mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	* add placeholder for Key actions tab * navigate to key items by default * add placeholder key actions list page * remove extra whitespace from component blueprint * add SelectableCard * move key actions from side nav to top nav * make tabs active * remove toolbar from key actions pages * add divs to link to each key action on key actions page * move preview-head to gitignore * use selectable card css * remove key actions * use css grid * update selectable card styling * update Key Actions page header * make cards clickable * refactor supportedActions to include glyph * make header black on hover * rename selectable-card transit card and update styling * add description and glyph for other key types * use human readable titles for key action names * update tests; still need to fix failing ones * use datakey instead of data-key * fix some failing tests * fix more tests * remove extra chevron from rotate button * remove whitespace * remove pauseTest * use rename export to export key in the template instead of the model * fix last few failing tests * WIP * link to key actions page by default * test for transit action title * only add query params when viewing a transit secret * update structure icons * add missing structure icons * resolve merge conflicts from rebase * use filter and map for supported actions * only add query params for transit secrets
		
			
				
	
	
		
			153 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			153 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { alias } from '@ember/object/computed';
 | 
						|
import { set, get, computed } from '@ember/object';
 | 
						|
import DS from 'ember-data';
 | 
						|
import clamp from 'vault/utils/clamp';
 | 
						|
import lazyCapabilities, { apiPath } from 'vault/macros/lazy-capabilities';
 | 
						|
 | 
						|
const { attr } = DS;
 | 
						|
 | 
						|
const ACTION_VALUES = {
 | 
						|
  encrypt: {
 | 
						|
    isSupported: 'supportsEncryption',
 | 
						|
    description: 'Looks up wrapping properties for the given token',
 | 
						|
    glyph: 'lock-closed',
 | 
						|
  },
 | 
						|
  decrypt: {
 | 
						|
    isSupported: 'supportsDecryption',
 | 
						|
    description: 'Decrypts the provided ciphertext using this key',
 | 
						|
    glyph: 'envelope-unsealed--outline',
 | 
						|
  },
 | 
						|
  datakey: {
 | 
						|
    isSupported: 'supportsEncryption',
 | 
						|
    description: 'Generates a new key and value encrypted with this key',
 | 
						|
    glyph: 'key',
 | 
						|
  },
 | 
						|
  rewrap: {
 | 
						|
    isSupported: 'supportsEncryption',
 | 
						|
    description: 'Rewraps the ciphertext using the latest version of the named key',
 | 
						|
    glyph: 'refresh-default',
 | 
						|
  },
 | 
						|
  sign: {
 | 
						|
    isSupported: 'supportsSigning',
 | 
						|
    description: 'Get the cryptographic signature of the given data',
 | 
						|
    glyph: 'edit',
 | 
						|
  },
 | 
						|
  hmac: { isSupported: true, description: 'Generate a data digest using a hash algorithm', glyph: 'remix' },
 | 
						|
  verify: {
 | 
						|
    isSupported: true,
 | 
						|
    description: 'Validate the provided signature for the given data',
 | 
						|
    glyph: 'check-circle-outline',
 | 
						|
  },
 | 
						|
  export: { isSupported: 'exportable', description: 'Get the named key', glyph: 'exit' },
 | 
						|
};
 | 
						|
 | 
						|
export default DS.Model.extend({
 | 
						|
  type: attr('string', {
 | 
						|
    defaultValue: 'aes256-gcm96',
 | 
						|
  }),
 | 
						|
  name: attr('string'),
 | 
						|
  deletionAllowed: attr('boolean'),
 | 
						|
  derived: attr('boolean'),
 | 
						|
  exportable: attr('boolean'),
 | 
						|
  minDecryptionVersion: attr('number', {
 | 
						|
    defaultValue: 1,
 | 
						|
  }),
 | 
						|
  minEncryptionVersion: attr('number', {
 | 
						|
    defaultValue: 0,
 | 
						|
  }),
 | 
						|
  latestVersion: attr('number'),
 | 
						|
  keys: attr('object'),
 | 
						|
  convergentEncryption: attr('boolean'),
 | 
						|
  convergentEncryptionVersion: attr('number'),
 | 
						|
 | 
						|
  supportsSigning: attr('boolean'),
 | 
						|
  supportsEncryption: attr('boolean'),
 | 
						|
  supportsDecryption: attr('boolean'),
 | 
						|
  supportsDerivation: attr('boolean'),
 | 
						|
 | 
						|
  setConvergentEncryption(val) {
 | 
						|
    if (val === true) {
 | 
						|
      set(this, 'derived', val);
 | 
						|
    }
 | 
						|
    set(this, 'convergentEncryption', val);
 | 
						|
  },
 | 
						|
 | 
						|
  setDerived(val) {
 | 
						|
    if (val === false) {
 | 
						|
      set(this, 'convergentEncryption', val);
 | 
						|
    }
 | 
						|
    set(this, 'derived', val);
 | 
						|
  },
 | 
						|
 | 
						|
  supportedActions: computed('type', function() {
 | 
						|
    return Object.keys(ACTION_VALUES)
 | 
						|
      .filter(name => {
 | 
						|
        const { isSupported } = ACTION_VALUES[name];
 | 
						|
        return typeof isSupported === 'boolean' || get(this, isSupported);
 | 
						|
      })
 | 
						|
      .map(name => {
 | 
						|
        const { description, glyph } = ACTION_VALUES[name];
 | 
						|
        return { name, description, glyph };
 | 
						|
      });
 | 
						|
  }),
 | 
						|
 | 
						|
  canDelete: computed('deletionAllowed', 'lastLoadTS', function() {
 | 
						|
    const deleteAttrChanged = Boolean(this.changedAttributes().deletionAllowed);
 | 
						|
    return get(this, 'deletionAllowed') && deleteAttrChanged === false;
 | 
						|
  }),
 | 
						|
 | 
						|
  keyVersions: computed('validKeyVersions', function() {
 | 
						|
    let maxVersion = Math.max(...get(this, 'validKeyVersions'));
 | 
						|
    let versions = [];
 | 
						|
    while (maxVersion > 0) {
 | 
						|
      versions.unshift(maxVersion);
 | 
						|
      maxVersion--;
 | 
						|
    }
 | 
						|
    return versions;
 | 
						|
  }),
 | 
						|
 | 
						|
  encryptionKeyVersions: computed('keyVerisons', 'minDecryptionVersion', 'latestVersion', function() {
 | 
						|
    const { keyVersions, minDecryptionVersion } = this.getProperties('keyVersions', 'minDecryptionVersion');
 | 
						|
 | 
						|
    return keyVersions
 | 
						|
      .filter(version => {
 | 
						|
        return version >= minDecryptionVersion;
 | 
						|
      })
 | 
						|
      .reverse();
 | 
						|
  }),
 | 
						|
 | 
						|
  keysForEncryption: computed('minEncryptionVersion', 'latestVersion', function() {
 | 
						|
    let { minEncryptionVersion, latestVersion } = this.getProperties('minEncryptionVersion', 'latestVersion');
 | 
						|
    let minVersion = clamp(minEncryptionVersion - 1, 0, latestVersion);
 | 
						|
    let versions = [];
 | 
						|
    while (latestVersion > minVersion) {
 | 
						|
      versions.push(latestVersion);
 | 
						|
      latestVersion--;
 | 
						|
    }
 | 
						|
    return versions;
 | 
						|
  }),
 | 
						|
 | 
						|
  validKeyVersions: computed('keys', function() {
 | 
						|
    return Object.keys(get(this, 'keys'));
 | 
						|
  }),
 | 
						|
 | 
						|
  exportKeyTypes: computed('exportable', 'type', function() {
 | 
						|
    let types = ['hmac'];
 | 
						|
    if (this.get('supportsSigning')) {
 | 
						|
      types.unshift('signing');
 | 
						|
    }
 | 
						|
    if (this.get('supportsEncryption')) {
 | 
						|
      types.unshift('encryption');
 | 
						|
    }
 | 
						|
    return types;
 | 
						|
  }),
 | 
						|
 | 
						|
  backend: attr('string'),
 | 
						|
 | 
						|
  rotatePath: lazyCapabilities(apiPath`${'backend'}/keys/${'id'}/rotate`, 'backend', 'id'),
 | 
						|
  canRotate: alias('rotatePath.canUpdate'),
 | 
						|
  secretPath: lazyCapabilities(apiPath`${'backend'}/keys/${'id'}`, 'backend', 'id'),
 | 
						|
  canRead: alias('secretPath.canUpdate'),
 | 
						|
  canEdit: alias('secretPath.canUpdate'),
 | 
						|
});
 |