debian-mirror-gitlab/app/assets/javascripts/token_access/components/token_access.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

236 lines
6.7 KiB
Vue
Raw Normal View History

2021-09-30 23:02:18 +05:30
<script>
2022-10-11 01:57:18 +05:30
import {
2022-11-25 23:54:43 +05:30
GlAlert,
2022-10-11 01:57:18 +05:30
GlButton,
GlCard,
GlFormInput,
GlLink,
GlLoadingIcon,
GlSprintf,
GlToggle,
} from '@gitlab/ui';
2022-11-25 23:54:43 +05:30
import { createAlert } from '~/flash';
2021-09-30 23:02:18 +05:30
import { __, s__ } from '~/locale';
2022-10-11 01:57:18 +05:30
import { helpPagePath } from '~/helpers/help_page_helper';
2021-09-30 23:02:18 +05:30
import addProjectCIJobTokenScopeMutation from '../graphql/mutations/add_project_ci_job_token_scope.mutation.graphql';
import removeProjectCIJobTokenScopeMutation from '../graphql/mutations/remove_project_ci_job_token_scope.mutation.graphql';
import updateCIJobTokenScopeMutation from '../graphql/mutations/update_ci_job_token_scope.mutation.graphql';
import getCIJobTokenScopeQuery from '../graphql/queries/get_ci_job_token_scope.query.graphql';
import getProjectsWithCIJobTokenScopeQuery from '../graphql/queries/get_projects_with_ci_job_token_scope.query.graphql';
import TokenProjectsTable from './token_projects_table.vue';
export default {
i18n: {
toggleLabelTitle: s__('CICD|Limit CI_JOB_TOKEN access'),
toggleHelpText: s__(
2022-10-11 01:57:18 +05:30
`CICD|Select the projects that can be accessed by API requests authenticated with this project's CI_JOB_TOKEN CI/CD variable. It is a security risk to disable this feature, because unauthorized projects might attempt to retrieve an active token and access the API. %{linkStart}Learn more.%{linkEnd}`,
2021-09-30 23:02:18 +05:30
),
cardHeaderTitle: s__('CICD|Add an existing project to the scope'),
2022-11-25 23:54:43 +05:30
settingDisabledMessage: s__(
'CICD|Enable feature to limit job token access to the following projects.',
),
2021-09-30 23:02:18 +05:30
addProject: __('Add project'),
cancel: __('Cancel'),
addProjectPlaceholder: __('Paste project path (i.e. gitlab-org/gitlab)'),
projectsFetchError: __('There was a problem fetching the projects'),
scopeFetchError: __('There was a problem fetching the job token scope value'),
},
components: {
2022-11-25 23:54:43 +05:30
GlAlert,
2021-09-30 23:02:18 +05:30
GlButton,
GlCard,
GlFormInput,
2022-10-11 01:57:18 +05:30
GlLink,
2021-09-30 23:02:18 +05:30
GlLoadingIcon,
2022-10-11 01:57:18 +05:30
GlSprintf,
2021-09-30 23:02:18 +05:30
GlToggle,
TokenProjectsTable,
},
inject: {
fullPath: {
default: '',
},
},
apollo: {
jobTokenScopeEnabled: {
query: getCIJobTokenScopeQuery,
variables() {
return {
fullPath: this.fullPath,
};
},
update(data) {
return data.project.ciCdSettings.jobTokenScopeEnabled;
},
error() {
2022-11-25 23:54:43 +05:30
createAlert({ message: this.$options.i18n.scopeFetchError });
2021-09-30 23:02:18 +05:30
},
},
projects: {
query: getProjectsWithCIJobTokenScopeQuery,
variables() {
return {
fullPath: this.fullPath,
};
},
update(data) {
return data.project?.ciJobTokenScope?.projects?.nodes ?? [];
},
error() {
2022-11-25 23:54:43 +05:30
createAlert({ message: this.$options.i18n.projectsFetchError });
2021-09-30 23:02:18 +05:30
},
},
},
data() {
return {
jobTokenScopeEnabled: null,
targetProjectPath: '',
projects: [],
};
},
computed: {
isProjectPathEmpty() {
return this.targetProjectPath === '';
},
2022-10-11 01:57:18 +05:30
ciJobTokenHelpPage() {
return helpPagePath('ci/jobs/ci_job_token');
},
2021-09-30 23:02:18 +05:30
},
methods: {
async updateCIJobTokenScope() {
try {
const {
data: {
ciCdSettingsUpdate: { errors },
},
} = await this.$apollo.mutate({
mutation: updateCIJobTokenScopeMutation,
variables: {
input: {
fullPath: this.fullPath,
jobTokenScopeEnabled: this.jobTokenScopeEnabled,
},
},
});
if (errors.length) {
throw new Error(errors[0]);
}
} catch (error) {
2023-01-13 00:05:48 +05:30
createAlert({ message: error.message });
2021-09-30 23:02:18 +05:30
}
},
async addProject() {
try {
const {
data: {
ciJobTokenScopeAddProject: { errors },
},
} = await this.$apollo.mutate({
mutation: addProjectCIJobTokenScopeMutation,
variables: {
input: {
projectPath: this.fullPath,
targetProjectPath: this.targetProjectPath,
},
},
});
if (errors.length) {
throw new Error(errors[0]);
}
} catch (error) {
2023-01-13 00:05:48 +05:30
createAlert({ message: error.message });
2021-09-30 23:02:18 +05:30
} finally {
this.clearTargetProjectPath();
this.getProjects();
}
},
async removeProject(removeTargetPath) {
try {
const {
data: {
ciJobTokenScopeRemoveProject: { errors },
},
} = await this.$apollo.mutate({
mutation: removeProjectCIJobTokenScopeMutation,
variables: {
input: {
projectPath: this.fullPath,
targetProjectPath: removeTargetPath,
},
},
});
if (errors.length) {
throw new Error(errors[0]);
}
} catch (error) {
2023-01-13 00:05:48 +05:30
createAlert({ message: error.message });
2021-09-30 23:02:18 +05:30
} finally {
this.getProjects();
}
},
clearTargetProjectPath() {
this.targetProjectPath = '';
},
getProjects() {
this.$apollo.queries.projects.refetch();
},
},
};
</script>
<template>
<div>
2022-07-23 23:45:48 +05:30
<gl-loading-icon v-if="$apollo.loading" size="lg" class="gl-mt-5" />
2021-09-30 23:02:18 +05:30
<template v-else>
<gl-toggle
v-model="jobTokenScopeEnabled"
:label="$options.i18n.toggleLabelTitle"
@change="updateCIJobTokenScope"
2022-10-11 01:57:18 +05:30
>
<template #help>
<gl-sprintf :message="$options.i18n.toggleHelpText">
<template #link="{ content }">
<gl-link :href="ciJobTokenHelpPage" class="inline-link" target="_blank">
{{ content }}
</gl-link>
</template>
</gl-sprintf>
</template>
</gl-toggle>
2022-11-25 23:54:43 +05:30
<div>
<gl-card class="gl-mt-5 gl-mb-3">
2021-09-30 23:02:18 +05:30
<template #header>
<h5 class="gl-my-0">{{ $options.i18n.cardHeaderTitle }}</h5>
</template>
<template #default>
<gl-form-input
v-model="targetProjectPath"
:placeholder="$options.i18n.addProjectPlaceholder"
/>
</template>
<template #footer>
2021-10-27 15:23:28 +05:30
<gl-button variant="confirm" :disabled="isProjectPathEmpty" @click="addProject">
2021-09-30 23:02:18 +05:30
{{ $options.i18n.addProject }}
</gl-button>
<gl-button @click="clearTargetProjectPath">{{ $options.i18n.cancel }}</gl-button>
</template>
</gl-card>
2022-11-25 23:54:43 +05:30
<gl-alert
v-if="!jobTokenScopeEnabled"
class="gl-mb-3"
variant="warning"
:dismissible="false"
:show-icon="false"
data-testid="token-disabled-alert"
>
{{ $options.i18n.settingDisabledMessage }}
</gl-alert>
2021-09-30 23:02:18 +05:30
<token-projects-table :projects="projects" @removeProject="removeProject" />
</div>
</template>
</div>
</template>