mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-06 05:28:03 +00:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
79 lines
2.4 KiB
JavaScript
79 lines
2.4 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { inject as service } from '@ember/service';
|
|
import Route from '@ember/routing/route';
|
|
import ControlGroupError from 'vault/lib/control-group-error';
|
|
|
|
export default Route.extend({
|
|
controlGroup: service(),
|
|
routing: service('router'),
|
|
namespaceService: service('namespace'),
|
|
featureFlagService: service('featureFlag'),
|
|
|
|
actions: {
|
|
willTransition() {
|
|
window.scrollTo(0, 0);
|
|
},
|
|
error(error, transition) {
|
|
const controlGroup = this.controlGroup;
|
|
if (error instanceof ControlGroupError) {
|
|
return controlGroup.handleError(error);
|
|
}
|
|
if (error.path === '/v1/sys/wrapping/unwrap') {
|
|
controlGroup.unmarkTokenForUnwrap();
|
|
}
|
|
|
|
const router = this.routing;
|
|
//FIXME transition.intent likely needs to be replaced
|
|
let errorURL = transition.intent.url;
|
|
const { name, contexts, queryParams } = transition.intent;
|
|
|
|
// If the transition is internal to Ember, we need to generate the URL
|
|
// from the route parameters ourselves
|
|
if (!errorURL) {
|
|
try {
|
|
errorURL = router.urlFor(name, ...(contexts || []), { queryParams });
|
|
} catch (e) {
|
|
// If this fails, something weird is happening with URL transitions
|
|
errorURL = null;
|
|
}
|
|
}
|
|
// because we're using rootURL, we need to trim this from the front to get
|
|
// the ember-routeable url
|
|
if (errorURL) {
|
|
errorURL = errorURL.replace('/ui', '');
|
|
}
|
|
|
|
error.errorURL = errorURL;
|
|
|
|
// if we have queryParams, update the namespace so that the observer can fire on the controller
|
|
if (queryParams) {
|
|
/* eslint-disable-next-line ember/no-controller-access-in-routes */
|
|
this.controllerFor('vault.cluster').set('namespaceQueryParam', queryParams.namespace || '');
|
|
}
|
|
|
|
// Assuming we have a URL, push it into browser history and update the
|
|
// location bar for the user
|
|
if (errorURL) {
|
|
router.get('location').setURL(errorURL);
|
|
}
|
|
|
|
return true;
|
|
},
|
|
},
|
|
|
|
async beforeModel() {
|
|
const result = await fetch('/v1/sys/internal/ui/feature-flags', {
|
|
method: 'GET',
|
|
});
|
|
if (result.status === 200) {
|
|
const body = await result.json();
|
|
const flags = body.feature_flags || [];
|
|
this.featureFlagService.setFeatureFlags(flags);
|
|
}
|
|
},
|
|
});
|