mirror of https://github.com/rancher/dashboard.git
232 lines
6.8 KiB
Vue
232 lines
6.8 KiB
Vue
<script>
|
|
import Loading from '@/components/Loading';
|
|
import CreateEditView from '@/mixins/create-edit-view';
|
|
import CruResource from '@/components/CruResource';
|
|
import RadioGroup from '@/components/form/RadioGroup';
|
|
import LabeledInput from '@/components/form/LabeledInput';
|
|
import Banner from '@/components/Banner';
|
|
import CopyToClipboard from '@/components/CopyToClipboard';
|
|
import AllowedPrincipals from '@/components/auth/AllowedPrincipals';
|
|
import { MANAGEMENT } from '@/config/types';
|
|
import { findBy } from '@/utils/array';
|
|
import AuthConfig from '@/mixins/auth-config';
|
|
import AuthBanner from '@/components/auth/AuthBanner';
|
|
import InfoBox from '@/components/InfoBox';
|
|
|
|
const NAME = 'github';
|
|
|
|
export default {
|
|
components: {
|
|
Loading,
|
|
CruResource,
|
|
RadioGroup,
|
|
LabeledInput,
|
|
Banner,
|
|
CopyToClipboard,
|
|
AllowedPrincipals,
|
|
AuthBanner,
|
|
InfoBox
|
|
},
|
|
|
|
mixins: [CreateEditView, AuthConfig],
|
|
|
|
async fetch() {
|
|
await this.mixinFetch();
|
|
|
|
this.targetType = (!this.model.hostname || this.model.hostname === 'github.com' ? 'public' : 'private');
|
|
this.targetUrl = (this.model.tls ? 'https://' : 'http://') + (this.model.hostname || 'github.com');
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
targetType: 'public',
|
|
targetUrl: null,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
me() {
|
|
const out = findBy(this.principals, 'me', true);
|
|
|
|
return out;
|
|
},
|
|
|
|
isPublic() {
|
|
return this.targetType === 'public';
|
|
},
|
|
|
|
baseUrl() {
|
|
return `${ this.model.tls ? 'https://' : 'http://' }${ this.model.hostname }`;
|
|
},
|
|
|
|
displayName() {
|
|
return this.t(`model.authConfig.provider.${ NAME }`);
|
|
},
|
|
|
|
tArgs() {
|
|
return {
|
|
baseUrl: this.baseUrl,
|
|
serverUrl: this.serverUrl,
|
|
provider: this.displayName,
|
|
username: this.principal.loginName || this.principal.name,
|
|
};
|
|
},
|
|
|
|
NAME() {
|
|
return NAME;
|
|
},
|
|
|
|
AUTH_CONFIG() {
|
|
return MANAGEMENT.AUTH_CONFIG;
|
|
},
|
|
|
|
toSave() {
|
|
return {
|
|
enabled: true,
|
|
githubConfig: this.model,
|
|
description: 'Enable GitHub',
|
|
};
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
targetType: 'updateHost',
|
|
targetUrl: 'updateHost',
|
|
},
|
|
|
|
methods: {
|
|
updateHost() {
|
|
const match = this.targetUrl.match(/^(((https?):)?\/\/)?([^/]+)(\/.*)?$/);
|
|
|
|
if ( match ) {
|
|
if ( match[3] === 'http') {
|
|
this.model.tls = false;
|
|
} else {
|
|
this.model.tls = true;
|
|
}
|
|
|
|
this.model.hostname = match[4] || 'github.com';
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Loading v-if="$fetchState.pending" />
|
|
<div v-else>
|
|
<CruResource
|
|
:cancel-event="true"
|
|
:done-route="doneRoute"
|
|
:mode="mode"
|
|
:resource="model"
|
|
:subtypes="[]"
|
|
:validation-passed="true"
|
|
:finish-button-mode="model.enabled ? 'edit' : 'enable'"
|
|
:can-yaml="false"
|
|
:errors="errors"
|
|
:show-cancel="showCancel"
|
|
@error="e=>errors = e"
|
|
@finish="save"
|
|
@cancel="cancel"
|
|
>
|
|
<template v-if="model.enabled && !isEnabling && !editConfig">
|
|
<AuthBanner :t-args="tArgs" :disable="disable" :edit="goToEdit">
|
|
<template slot="rows">
|
|
<tr><td>{{ t(`authConfig.${ NAME }.table.server`) }}: </td><td>{{ baseUrl }}</td></tr>
|
|
<tr><td>{{ t(`authConfig.${ NAME }.table.clientId`) }}: </td><td>{{ value.clientId }}</td></tr>
|
|
</template>
|
|
</AuthBanner>
|
|
|
|
<hr />
|
|
|
|
<AllowedPrincipals provider="github" :auth-config="model" :mode="mode" />
|
|
</template>
|
|
|
|
<template v-else>
|
|
<Banner v-if="!model.enabled" :label="t('authConfig.stateBanner.disabled', tArgs)" color="warning" />
|
|
|
|
<h3 v-t="`authConfig.${NAME}.target.label`" />
|
|
<RadioGroup
|
|
v-model="targetType"
|
|
name="targetType"
|
|
:options="['public','private']"
|
|
:mode="mode"
|
|
:labels="[ t(`authConfig.${NAME}.target.public`), t(`authConfig.${NAME}.target.private`)]"
|
|
/>
|
|
|
|
<div class="row mb-20">
|
|
<div class="col span-6">
|
|
<LabeledInput
|
|
v-if="!isPublic"
|
|
v-model="targetUrl"
|
|
:label-key="`authConfig.${NAME}.host.label`"
|
|
:placeholder="t(`authConfig.${NAME}.host.placeholder`)"
|
|
:required="true"
|
|
:mode="mode"
|
|
@input="updateHost($event.selected, $event.text)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<InfoBox :step="1" class="step-box">
|
|
<ul class="step-list">
|
|
<li v-html="t(`authConfig.${NAME}.form.prefix.1`, tArgs, true)" />
|
|
<li v-html="t(`authConfig.${NAME}.form.prefix.2`, tArgs, true)" />
|
|
<li v-html="t(`authConfig.${NAME}.form.prefix.3`, tArgs, true)" />
|
|
</ul>
|
|
</InfoBox>
|
|
<InfoBox :step="2" class="step-box">
|
|
<ul class="step-list">
|
|
<li>
|
|
{{ t(`authConfig.${NAME}.form.instruction`, tArgs, true) }}
|
|
<ul class="mt-10">
|
|
<li><b>{{ t(`authConfig.${NAME}.form.app.label`) }}</b>: <span v-html="t(`authConfig.${NAME}.form.app.value`, tArgs, true)" /></li>
|
|
<li><b>{{ t(`authConfig.${NAME}.form.homepage.label`) }}</b>: {{ serverUrl }} <CopyToClipboard label-as="tooltip" :text="serverUrl" class="icon-btn" action-color="bg-transparent" /></li>
|
|
<li><b>{{ t(`authConfig.${NAME}.form.description.label`) }}</b>: <span v-html="t(`authConfig.${NAME}.form.description.value`, tArgs, true)" /></li>
|
|
<li><b>{{ t(`authConfig.${NAME}.form.callback.label`) }}</b>: {{ serverUrl }} <CopyToClipboard :text="serverUrl" label-as="tooltip" class="icon-btn" action-color="bg-transparent" /></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</InfoBox>
|
|
<InfoBox :step="3" class="mb-20">
|
|
<ul class="step-list">
|
|
<li v-html="t(`authConfig.${NAME}.form.suffix.1`, tArgs, true)" />
|
|
<li v-html="t(`authConfig.${NAME}.form.suffix.2`, tArgs, true)" />
|
|
</ul>
|
|
</InfoBox>
|
|
|
|
<div class="row mb-20">
|
|
<div class="col span-6">
|
|
<LabeledInput
|
|
v-model="model.clientId"
|
|
:label="t(`authConfig.${NAME}.clientId.label`)"
|
|
:mode="mode"
|
|
/>
|
|
</div>
|
|
<div class="col span-6">
|
|
<LabeledInput
|
|
v-model="model.clientSecret"
|
|
type="password"
|
|
:label="t(`authConfig.${NAME}.clientSecret.label`)"
|
|
:mode="mode"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div v-if="!model.enabled" class="row">
|
|
<div class="col span-12">
|
|
<Banner color="info" v-html="t('authConfig.associatedWarning', tArgs, true)" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</CruResource>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.step-list li:not(:last-child) {
|
|
margin-bottom: 8px;
|
|
}
|
|
</style>
|