mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 06:01:10 +02:00
62 lines
1.5 KiB
JavaScript
62 lines
1.5 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { hash } from 'rsvp';
|
|
import { inject as service } from '@ember/service';
|
|
import Base from '../../replication-base';
|
|
|
|
export default Base.extend({
|
|
flashMessages: service(),
|
|
|
|
modelPath: 'model.config',
|
|
|
|
findOrCreate(id) {
|
|
const flash = this.flashMessages;
|
|
return this.store
|
|
.findRecord('path-filter-config', id)
|
|
.then(() => {
|
|
// if we find a record, transition to the edit view
|
|
return this.transitionTo('mode.secondaries.config-edit', id)
|
|
.followRedirects()
|
|
.then(() => {
|
|
flash.info(
|
|
`${id} already had a path filter config, so we loaded the config edit screen for you.`
|
|
);
|
|
});
|
|
})
|
|
.catch((e) => {
|
|
if (e.httpStatus === 404) {
|
|
return this.store.createRecord('path-filter-config', {
|
|
id,
|
|
mode: null,
|
|
paths: [],
|
|
});
|
|
} else {
|
|
throw e;
|
|
}
|
|
});
|
|
},
|
|
|
|
redirect(model) {
|
|
const cluster = model.cluster;
|
|
const replicationMode = this.replicationMode;
|
|
if (
|
|
!this.version.hasPerfReplication ||
|
|
replicationMode !== 'performance' ||
|
|
!cluster.get(`${replicationMode}.isPrimary`) ||
|
|
!cluster.get('canAddSecondary')
|
|
) {
|
|
return this.transitionTo('mode', replicationMode);
|
|
}
|
|
},
|
|
|
|
model(params) {
|
|
return hash({
|
|
cluster: this.modelFor('mode'),
|
|
config: this.findOrCreate(params.secondary_id),
|
|
});
|
|
},
|
|
});
|