5c2a08de6d
* Update browserslist * Add browserslistrc * ember-cli-update --to 3.26, fix conflicts * Run codemodes that start with ember-* * More codemods - before cp* * More codemods (curly data-test-*) * WIP ember-basic-dropdown template errors * updates ember-basic-dropdown and related deps to fix build issues * updates basic dropdown instances to new version API * updates more deps -- ember-template-lint is working again * runs no-implicit-this codemod * creates and runs no-quoteless-attributes codemod * runs angle brackets codemod * updates lint:hbs globs to only touch hbs files * removes yield only templates * creates and runs deprecated args transform * supresses lint error for invokeAction on LinkTo component * resolves remaining ambiguous path lint errors * resolves simple-unless lint errors * adds warnings for deprecated tagName arg on LinkTo components * adds warnings for remaining curly component invocation * updates global template lint rules * resolves remaining template lint errors * disables some ember specfic lint rules that target pre octane patterns * js lint fix run * resolves remaining js lint errors * fixes test run * adds npm-run-all dep * fixes test attribute issues * fixes console acceptance tests * fixes tests * adds yield only wizard/tutorial-active template * fixes more tests * attempts to fix more flaky tests * removes commented out settled in transit test * updates deprecations workflow and adds initializer to filter by version * updates flaky policies acl old test * updates to flaky transit test * bumps ember deps down to LTS version * runs linters after main merge * fixes client count tests after bad merge conflict fixes * fixes client count history test * more updates to lint config * another round of hbs lint fixes after extending stylistic rule * updates lint-staged commands * removes indent eslint rule since it seems to break things * fixes bad attribute in transform-edit-form template * test fixes * fixes enterprise tests * adds changelog * removes deprecated ember-concurrency-test-waiters dep and adds @ember/test-waiters * flaky test fix Co-authored-by: hashishaw <cshaw@hashicorp.com>
153 lines
4.8 KiB
JavaScript
153 lines
4.8 KiB
JavaScript
import Service, { inject as service } from '@ember/service';
|
|
import RSVP from 'rsvp';
|
|
import ControlGroupError from 'vault/lib/control-group-error';
|
|
import getStorage from 'vault/lib/token-storage';
|
|
import parseURL from 'core/utils/parse-url';
|
|
|
|
const CONTROL_GROUP_PREFIX = 'vault:cg-';
|
|
const TOKEN_SEPARATOR = '☃';
|
|
|
|
// list of endpoints that return wrapped responses
|
|
// without `wrap-ttl`
|
|
const WRAPPED_RESPONSE_PATHS = [
|
|
'sys/wrapping/rewrap',
|
|
'sys/wrapping/wrap',
|
|
'sys/replication/performance/primary/secondary-token',
|
|
'sys/replication/dr/primary/secondary-token',
|
|
];
|
|
|
|
const storageKey = (accessor, path) => {
|
|
return `${CONTROL_GROUP_PREFIX}${accessor}${TOKEN_SEPARATOR}${path}`;
|
|
};
|
|
|
|
export { storageKey, CONTROL_GROUP_PREFIX, TOKEN_SEPARATOR };
|
|
export default Service.extend({
|
|
version: service(),
|
|
router: service(),
|
|
|
|
storage() {
|
|
return getStorage();
|
|
},
|
|
|
|
keyFromAccessor(accessor) {
|
|
let keys = this.storage().keys() || [];
|
|
let returnKey = keys
|
|
.filter((k) => k.startsWith(CONTROL_GROUP_PREFIX))
|
|
.find((key) => key.replace(CONTROL_GROUP_PREFIX, '').startsWith(accessor));
|
|
return returnKey ? returnKey : null;
|
|
},
|
|
|
|
storeControlGroupToken(info) {
|
|
let key = storageKey(info.accessor, info.creation_path);
|
|
this.storage().setItem(key, info);
|
|
},
|
|
|
|
deleteControlGroupToken(accessor) {
|
|
this.unmarkTokenForUnwrap();
|
|
let key = this.keyFromAccessor(accessor);
|
|
this.storage().removeItem(key);
|
|
},
|
|
|
|
deleteTokens() {
|
|
let keys = this.storage().keys() || [];
|
|
keys.filter((k) => k.startsWith(CONTROL_GROUP_PREFIX)).forEach((key) => this.storage().removeItem(key));
|
|
},
|
|
|
|
wrapInfoForAccessor(accessor) {
|
|
let key = this.keyFromAccessor(accessor);
|
|
return key ? this.storage().getItem(key) : null;
|
|
},
|
|
|
|
tokenToUnwrap: null,
|
|
markTokenForUnwrap(accessor) {
|
|
this.set('tokenToUnwrap', this.wrapInfoForAccessor(accessor));
|
|
},
|
|
|
|
unmarkTokenForUnwrap() {
|
|
this.set('tokenToUnwrap', null);
|
|
},
|
|
|
|
tokenForUrl(url) {
|
|
if (this.version.isOSS) {
|
|
return null;
|
|
}
|
|
let pathForUrl = parseURL(url).pathname;
|
|
pathForUrl = pathForUrl.replace('/v1/', '');
|
|
let tokenInfo = this.tokenToUnwrap;
|
|
if (tokenInfo && tokenInfo.creation_path === pathForUrl) {
|
|
let { token, accessor, creation_time } = tokenInfo;
|
|
return { token, accessor, creationTime: creation_time };
|
|
}
|
|
return null;
|
|
},
|
|
|
|
checkForControlGroup(callbackArgs, response, wasWrapTTLRequested) {
|
|
let creationPath = response && response?.wrap_info?.creation_path;
|
|
if (
|
|
this.version.isOSS ||
|
|
wasWrapTTLRequested ||
|
|
!response ||
|
|
(creationPath && WRAPPED_RESPONSE_PATHS.includes(creationPath)) ||
|
|
!response.wrap_info
|
|
) {
|
|
return RSVP.resolve(...callbackArgs);
|
|
}
|
|
let error = new ControlGroupError(response.wrap_info);
|
|
return RSVP.reject(error);
|
|
},
|
|
|
|
paramsFromTransition(transitionTo, params, queryParams) {
|
|
let returnedParams = params.slice();
|
|
let qps = queryParams;
|
|
transitionTo.paramNames.map((name) => {
|
|
let param = transitionTo.params[name];
|
|
if (param.length) {
|
|
// push on to the front of the array since were're started at the end
|
|
returnedParams.unshift(param);
|
|
}
|
|
});
|
|
qps = { ...queryParams, ...transitionTo.queryParams };
|
|
// if there's a parent transition, recurse to get its route params
|
|
if (transitionTo.parent) {
|
|
[returnedParams, qps] = this.paramsFromTransition(transitionTo.parent, returnedParams, qps);
|
|
}
|
|
return [returnedParams, qps];
|
|
},
|
|
|
|
urlFromTransition(transitionObj) {
|
|
let transition = transitionObj.to;
|
|
let [params, queryParams] = this.paramsFromTransition(transition, [], {});
|
|
let url = this.router.urlFor(transition.name, ...params, {
|
|
queryParams,
|
|
});
|
|
return url.replace('/ui', '');
|
|
},
|
|
|
|
handleError(error, transition) {
|
|
let { accessor, token, creation_path, creation_time, ttl } = error;
|
|
let url = this.urlFromTransition(transition);
|
|
let data = { accessor, token, creation_path, creation_time, ttl };
|
|
data.uiParams = { url };
|
|
this.storeControlGroupToken(data);
|
|
return this.router.transitionTo('vault.cluster.access.control-group-accessor', accessor);
|
|
},
|
|
|
|
logFromError(error) {
|
|
let { accessor, token, creation_path, creation_time, ttl } = error;
|
|
let data = { accessor, token, creation_path, creation_time, ttl };
|
|
this.storeControlGroupToken(data);
|
|
|
|
let href = this.router.urlFor('vault.cluster.access.control-group-accessor', accessor);
|
|
let lines = [
|
|
`A Control Group was encountered at ${error.creation_path}.`,
|
|
`The Control Group Token is ${error.token}.`,
|
|
`The Accessor is ${error.accessor}.`,
|
|
`Visit <a href='${href}'>${href}</a> for more details.`,
|
|
];
|
|
return {
|
|
type: 'error-with-html',
|
|
content: lines.join('\n'),
|
|
};
|
|
},
|
|
});
|