mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 11:37:04 +02:00
* add kmip engine * adjust where kmip engine is mounted and sketch out routes * add secret mount path service to share params to engines * move list-controller and list-route mixins to core addon and adjust imports * properly link kmip secrets from the secrets list page * tweak routes and add list controllers * stub out some models and adapters * fix mixin exports * move a bunch of components into the core addon * use new empty yield in list-view in the namespace template * scopes list using list-view and list-item components * simplify and flatten routes, templates for all of the list pages * role show route and template and scope create template * add ember-router-helpers * add more packages to the dependencies of the core addon * add field-group-show component for listing fields from a model * move more components to the shared addon * make configure and configuration routes work and save a generated model * save and list scopes * role create, list, read * list credentials properly * move allowed attributes to field group * show allowed operations on role details page * add kmip logo to mount secrets engine list page * add role edit page * show all model attributes on role show page * enable role edit * fix newFields error by creating open api role model on the role list route * only show selected fields on role edit page * do not send scope and backend attrs to api * move path-or-array to core addon * move string-list component to core addon * remove extra top border when there is only one field group * add icons for all of the list pages * update kmip config model so defaultValue doesn't error * generate credentials * credential create and show * only show kmip when feature is enabled * fix saving of TTL fields generated from Open API * move masked-input and list-pagination components to core addon * add param on edit form to allow for calling onSave after render happens * polish credential show page and redirect there after generating credentials * add externalLink for kmip engine * add kmip-breadcrumb component * use kmip-breadcrumb component * add linkPrefix param to linked-block component to allow for routing programmatically inside an engine * redirect to the right place when enabling kmip * fix linting * review feedback * update signature for path-help usage * fix ttl field expansion test * remove role filed from role form, fix generate redirect * remove field-group-show because it's in the core addon * remove bottom rule from show pages * fix Max TTL displayAttrs for ssh role * update edit-form to take fields or attrs * fix linting * remove listenAddrs and set default val on ttl if a val is passed in
99 lines
2.8 KiB
JavaScript
99 lines
2.8 KiB
JavaScript
import DS from 'ember-data';
|
|
const { attr } = DS;
|
|
import { assign } from '@ember/polyfills';
|
|
import { camelize, capitalize } from '@ember/string';
|
|
|
|
export const expandOpenApiProps = function(props) {
|
|
let attrs = {};
|
|
// expand all attributes
|
|
for (const propName in props) {
|
|
const prop = props[propName];
|
|
let { description, items, type, format, isId, label } = prop;
|
|
let { name, value, group, sensitive } = prop['x-vault-displayAttrs'] || {};
|
|
|
|
if (type === 'integer') {
|
|
type = 'number';
|
|
}
|
|
let editType = type;
|
|
|
|
if (format === 'seconds') {
|
|
editType = 'ttl';
|
|
} else if (items) {
|
|
editType = items.type + capitalize(type);
|
|
}
|
|
let attrDefn = {
|
|
editType,
|
|
helpText: description,
|
|
sensitive: sensitive,
|
|
label: name || label,
|
|
possibleValues: prop['enum'],
|
|
fieldValue: isId ? 'id' : null,
|
|
fieldGroup: group || 'default',
|
|
readOnly: isId,
|
|
defaultValue: value || null,
|
|
};
|
|
// ttls write as a string and read as a number
|
|
// so setting type on them runs the wrong transform
|
|
if (editType !== 'ttl') {
|
|
attrDefn.type = type;
|
|
}
|
|
// loop to remove empty vals
|
|
for (let attrProp in attrDefn) {
|
|
if (attrDefn[attrProp] == null) {
|
|
delete attrDefn[attrProp];
|
|
}
|
|
}
|
|
attrs[camelize(propName)] = attrDefn;
|
|
}
|
|
return attrs;
|
|
};
|
|
|
|
export const combineAttributes = function(oldAttrs, newProps) {
|
|
let newAttrs = {};
|
|
let newFields = [];
|
|
if (oldAttrs) {
|
|
oldAttrs.forEach(function(value, name) {
|
|
if (newProps[name]) {
|
|
newAttrs[name] = attr(newProps[name].type, assign({}, newProps[name], value.options));
|
|
} else {
|
|
newAttrs[name] = attr(value.type, value.options);
|
|
}
|
|
});
|
|
}
|
|
for (let prop in newProps) {
|
|
if (newAttrs[prop]) {
|
|
continue;
|
|
} else {
|
|
newAttrs[prop] = attr(newProps[prop].type, newProps[prop]);
|
|
newFields.push(prop);
|
|
}
|
|
}
|
|
return { attrs: newAttrs, newFields };
|
|
};
|
|
|
|
export const combineFields = function(currentFields, newFields, excludedFields) {
|
|
let otherFields = newFields.filter(field => {
|
|
return !currentFields.includes(field) && !excludedFields.includes(field);
|
|
});
|
|
if (otherFields.length) {
|
|
currentFields = currentFields.concat(otherFields);
|
|
}
|
|
return currentFields;
|
|
};
|
|
|
|
export const combineFieldGroups = function(currentGroups, newFields, excludedFields) {
|
|
let allFields = [];
|
|
for (let group of currentGroups) {
|
|
let fieldName = Object.keys(group)[0];
|
|
allFields = allFields.concat(group[fieldName]);
|
|
}
|
|
let otherFields = newFields.filter(field => {
|
|
return !allFields.includes(field) && !excludedFields.includes(field);
|
|
});
|
|
if (otherFields.length) {
|
|
currentGroups[0].default = currentGroups[0].default.concat(otherFields);
|
|
}
|
|
|
|
return currentGroups;
|
|
};
|