mirror of https://github.com/rancher/dashboard.git
476 lines
11 KiB
Vue
476 lines
11 KiB
Vue
<script>
|
|
import { _EDIT } from '@/config/query-params';
|
|
import Loading from '@/components/Loading';
|
|
import LabeledInput from '@/components/form/LabeledInput';
|
|
import LabeledSelect from '@/components/form/LabeledSelect';
|
|
import { NORMAN, SECRET } from '@/config/types';
|
|
import { TYPES as SECRET_TYPES } from '@/models/secret';
|
|
import { base64Encode } from '@/utils/crypto';
|
|
import { addObjects, insertAt } from '@/utils/array';
|
|
import { sortBy } from '@/utils/sort';
|
|
|
|
const _NONE = '_none';
|
|
const _BASIC = '_basic';
|
|
const _SSH = '_ssh';
|
|
const _S3 = '_S3';
|
|
|
|
export default {
|
|
components: {
|
|
Loading,
|
|
LabeledInput,
|
|
LabeledSelect,
|
|
},
|
|
|
|
props: {
|
|
mode: {
|
|
type: String,
|
|
default: _EDIT,
|
|
},
|
|
|
|
value: {
|
|
type: [String, Object],
|
|
default: null,
|
|
},
|
|
|
|
inStore: {
|
|
type: String,
|
|
default: 'cluster',
|
|
},
|
|
|
|
labelKey: {
|
|
type: String,
|
|
default: 'selectOrCreateAuthSecret.label',
|
|
},
|
|
|
|
namespace: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
limitToNamespace: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
|
|
generateName: {
|
|
type: String,
|
|
default: 'auth-',
|
|
},
|
|
|
|
allowNone: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
|
|
allowSsh: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
|
|
allowBasic: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
|
|
allowS3: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
|
|
allowRke: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
|
|
registerBeforeHook: {
|
|
type: Function,
|
|
required: true,
|
|
},
|
|
|
|
hookName: {
|
|
type: String,
|
|
default: 'registerAuthSecret'
|
|
},
|
|
|
|
appendUniqueIdToHook: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
|
|
hookPriority: {
|
|
type: Number,
|
|
default: 99,
|
|
},
|
|
|
|
vertical: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
|
|
async fetch() {
|
|
if ( (this.allowSsh || this.allowBasic || this.allowRke) && this.$store.getters[`${ this.inStore }/schemaFor`](SECRET) ) {
|
|
// Avoid an async call and loading screen if already loaded by someone else
|
|
if ( this.$store.getters[`${ this.inStore }/haveAll`](SECRET) ) {
|
|
this.allSecrets = this.$store.getters[`${ this.inStore }/all`](SECRET);
|
|
} else {
|
|
this.allSecrets = await this.$store.dispatch(`${ this.inStore }/findAll`, { type: SECRET });
|
|
}
|
|
} else {
|
|
this.allSecrets = [];
|
|
}
|
|
|
|
if ( this.allowS3 && this.$store.getters['rancher/canList'](NORMAN.CLOUD_CREDENTIAL) ) {
|
|
// Avoid an async call and loading screen if already loaded by someone else
|
|
if ( this.$store.getters['rancher/haveAll'](NORMAN.CLOUD_CREDENTIAL) ) {
|
|
this.allCloudCreds = this.$store.getters['rancher/all'](NORMAN.CLOUD_CREDENTIAL);
|
|
} else {
|
|
this.allCloudCreds = await this.$store.dispatch('rancher/findAll', { type: NORMAN.CLOUD_CREDENTIAL });
|
|
}
|
|
} else {
|
|
this.allCloudCreds = [];
|
|
}
|
|
|
|
let selected = _NONE;
|
|
|
|
if ( this.value ) {
|
|
if ( typeof this.value === 'object' ) {
|
|
selected = `${ this.value.namespace }/${ this.value.name }`;
|
|
} else if ( this.value.includes('/') || this.value.includes(':') ) {
|
|
selected = this.value;
|
|
} else if ( this.namespace ) {
|
|
selected = `${ this.namespace }/${ this.value }`;
|
|
} else {
|
|
selected = this.value;
|
|
}
|
|
}
|
|
|
|
this.selected = selected;
|
|
|
|
this.update();
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
allCloudCreds: null,
|
|
allSecrets: null,
|
|
selected: null,
|
|
|
|
publicKey: '',
|
|
privateKey: '',
|
|
uniqueId: new Date().getTime() // Allows form state to be individually tracked if the form is in a list
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
_SSH() {
|
|
return _SSH;
|
|
},
|
|
|
|
_BASIC() {
|
|
return _BASIC;
|
|
},
|
|
|
|
_S3() {
|
|
return _S3;
|
|
},
|
|
|
|
options() {
|
|
const types = [];
|
|
const keys = [];
|
|
|
|
if ( this.allowSsh ) {
|
|
types.push(SECRET_TYPES.SSH);
|
|
}
|
|
|
|
if ( this.allowBasic ) {
|
|
types.push(SECRET_TYPES.BASIC);
|
|
}
|
|
|
|
if ( this.allowRke ) {
|
|
types.push(SECRET_TYPES.RKE_AUTH_CONFIG);
|
|
}
|
|
|
|
const out = this.allSecrets
|
|
.filter(x => this.namespace && this.limitToNamespace ? x.metadata.namespace === this.namespace : true)
|
|
.filter((x) => {
|
|
// Must match one of the types if given
|
|
if ( types.length && !types.includes(x._type) ) {
|
|
return false;
|
|
}
|
|
|
|
// Must match ALL of the keys if given
|
|
if ( keys.length ) {
|
|
const dataKeys = Object.keys(x.data || {});
|
|
|
|
if ( !keys.every(key => dataKeys.includes(key)) ) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}).map((x) => {
|
|
return {
|
|
label: `${ x.metadata.name } (${ x.subTypeDisplay })`,
|
|
group: x.metadata.namespace,
|
|
value: x.id,
|
|
};
|
|
});
|
|
|
|
if ( this.allowS3 ) {
|
|
const more = this.allCloudCreds
|
|
.filter(x => ['aws', 's3'].includes(x.provider) )
|
|
.map((x) => {
|
|
return {
|
|
label: `${ x.nameDisplay } (${ x.providerDisplay })`,
|
|
group: 'Cloud Credentials',
|
|
value: x.id,
|
|
};
|
|
});
|
|
|
|
addObjects(out, more);
|
|
}
|
|
|
|
if ( !this.limitToNamespace ) {
|
|
sortBy(out, 'group');
|
|
if ( out.length ) {
|
|
let lastGroup = '';
|
|
|
|
for ( let i = 0 ; i < out.length ; i++ ) {
|
|
if ( out[i].group !== lastGroup ) {
|
|
lastGroup = out[i].group;
|
|
|
|
insertAt(out, i, {
|
|
kind: 'title',
|
|
label: this.t('selectOrCreateAuthSecret.namespaceGroup', { name: lastGroup }),
|
|
disabled: true,
|
|
});
|
|
|
|
i++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( out.length ) {
|
|
out.unshift({
|
|
kind: 'title',
|
|
label: this.t('selectOrCreateAuthSecret.chooseExisting'),
|
|
disabled: true
|
|
});
|
|
}
|
|
|
|
if ( this.allowSsh ) {
|
|
out.unshift({
|
|
label: this.t('selectOrCreateAuthSecret.createSsh'),
|
|
value: _SSH,
|
|
});
|
|
}
|
|
|
|
if ( this.allowS3 ) {
|
|
out.unshift({
|
|
label: this.t('selectOrCreateAuthSecret.createS3'),
|
|
value: _S3,
|
|
});
|
|
}
|
|
|
|
if ( this.allowBasic ) {
|
|
out.unshift({
|
|
label: this.t('selectOrCreateAuthSecret.createBasic'),
|
|
value: _BASIC,
|
|
});
|
|
}
|
|
|
|
if ( this.allowNone ) {
|
|
out.unshift({
|
|
label: this.t('generic.none'),
|
|
value: _NONE,
|
|
});
|
|
}
|
|
|
|
return out;
|
|
},
|
|
|
|
firstCol() {
|
|
if ( this.vertical ) {
|
|
return '';
|
|
}
|
|
|
|
if ( this.selected === _SSH || this.selected === _BASIC || this.selected === _S3 ) {
|
|
return 'col span-4';
|
|
}
|
|
|
|
return 'col span-6';
|
|
},
|
|
|
|
moreCols() {
|
|
if ( this.vertical ) {
|
|
return 'mt-20';
|
|
}
|
|
|
|
return 'col span-4';
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
selected: 'update',
|
|
|
|
namespace(ns) {
|
|
if ( ns && !this.selected.startsWith(`${ ns }/`) ) {
|
|
this.selected = _NONE;
|
|
}
|
|
}
|
|
},
|
|
|
|
created() {
|
|
if (this.registerBeforeHook) {
|
|
const hookName = this.appendUniqueIdToHook ? this.hookName + this.uniqueId : this.hookName;
|
|
|
|
this.registerBeforeHook(this.doCreate, hookName, this.hookPriority);
|
|
} else {
|
|
throw new Error('Before Hook is missing');
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
update() {
|
|
if ( !this.selected || [_SSH, _BASIC, _S3, _NONE].includes(this.selected) ) {
|
|
this.$emit('input', null);
|
|
} else if ( this.selected.includes(':') ) {
|
|
// Cloud creds
|
|
this.$emit('input', this.selected);
|
|
} else {
|
|
const split = this.selected.split('/');
|
|
|
|
if ( this.limitToNamespace ) {
|
|
this.$emit('input', split[1]);
|
|
} else {
|
|
const out = {
|
|
namespace: split[0],
|
|
name: split[1]
|
|
};
|
|
|
|
this.$emit('input', out);
|
|
}
|
|
}
|
|
},
|
|
|
|
async doCreate() {
|
|
if ( ![_SSH, _BASIC, _S3].includes(this.selected) ) {
|
|
return;
|
|
}
|
|
|
|
let secret;
|
|
|
|
if ( this.selected === _S3 ) {
|
|
secret = await this.$store.dispatch(`rancher/create`, {
|
|
type: NORMAN.CLOUD_CREDENTIAL,
|
|
s3credentialConfig: {
|
|
accessKey: this.publicKey,
|
|
secretKey: this.privateKey,
|
|
},
|
|
});
|
|
} else {
|
|
secret = await this.$store.dispatch(`${ this.inStore }/create`, {
|
|
type: SECRET,
|
|
metadata: {
|
|
namespace: this.namespace,
|
|
generateName: this.generateName
|
|
},
|
|
});
|
|
|
|
let type, publicField, privateField;
|
|
|
|
switch ( this.selected ) {
|
|
case _SSH:
|
|
type = SECRET_TYPES.SSH;
|
|
publicField = 'ssh-publickey';
|
|
privateField = 'ssh-privatekey';
|
|
break;
|
|
case _BASIC:
|
|
type = SECRET_TYPES.BASIC;
|
|
publicField = 'username';
|
|
privateField = 'password';
|
|
break;
|
|
default:
|
|
throw new Error('Unknown type');
|
|
}
|
|
|
|
secret._type = type;
|
|
secret.data = {
|
|
[publicField]: base64Encode(this.publicKey),
|
|
[privateField]: base64Encode(this.privateKey),
|
|
};
|
|
}
|
|
|
|
await secret.save();
|
|
|
|
await this.$nextTick(() => {
|
|
this.selected = secret.id;
|
|
});
|
|
|
|
return secret;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Loading v-if="$fetchState.pending" />
|
|
<div v-else class="select-or-create-auth-secret">
|
|
<div class="mt-20" :class="{'row': !vertical}">
|
|
<div :class="firstCol">
|
|
<LabeledSelect
|
|
v-model="selected"
|
|
:mode="mode"
|
|
:label-key="labelKey"
|
|
:options="options"
|
|
:selectable="option => !option.disabled"
|
|
>
|
|
<template v-slot:option="opt">
|
|
<template v-if="opt.kind === 'divider'">
|
|
<hr />
|
|
</template>
|
|
<template v-else-if="opt.kind === 'title'">
|
|
{{ opt.label }}
|
|
</template>
|
|
<template v-else>
|
|
{{ opt.label }}
|
|
</template>
|
|
</template>
|
|
</LabeledSelect>
|
|
</div>
|
|
<template v-if="selected === _SSH">
|
|
<div :class="moreCols">
|
|
<LabeledInput v-model="publicKey" type="multiline" label-key="selectOrCreateAuthSecret.ssh.publicKey" />
|
|
</div>
|
|
<div :class="moreCols">
|
|
<LabeledInput v-model="privateKey" type="multiline" label-key="selectOrCreateAuthSecret.ssh.privateKey" />
|
|
</div>
|
|
</template>
|
|
<template v-else-if="selected === _BASIC">
|
|
<div :class="moreCols">
|
|
<LabeledInput v-model="publicKey" label-key="selectOrCreateAuthSecret.basic.username" />
|
|
</div>
|
|
<div :class="moreCols">
|
|
<LabeledInput v-model="privateKey" type="password" label-key="selectOrCreateAuthSecret.basic.password" />
|
|
</div>
|
|
</template>
|
|
<template v-else-if="selected === _S3">
|
|
<div :class="moreCols">
|
|
<LabeledInput v-model="publicKey" label-key="selectOrCreateAuthSecret.s3.accessKey" />
|
|
</div>
|
|
<div :class="moreCols">
|
|
<LabeledInput v-model="privateKey" type="password" label-key="selectOrCreateAuthSecret.s3.secretKey" />
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.select-or-create-auth-secret div.labeled-select {
|
|
min-height: $input-height;
|
|
}
|
|
</style>
|