mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
feat(editor): Enable source environment push button for project admins (#15527)
This commit is contained in:
committed by
GitHub
parent
88caa21bb4
commit
2f648098fd
@@ -31,6 +31,7 @@ export const REGULAR_PROJECT_ADMIN_SCOPES: Scope[] = [
|
||||
'folder:delete',
|
||||
'folder:list',
|
||||
'folder:move',
|
||||
'sourceControl:push',
|
||||
];
|
||||
|
||||
export const PERSONAL_PROJECT_OWNER_SCOPES: Scope[] = [
|
||||
|
||||
@@ -2146,6 +2146,8 @@
|
||||
"settings.sourceControl.sync.prompt.error": "Please enter a commit message",
|
||||
"settings.sourceControl.button.push": "Push",
|
||||
"settings.sourceControl.button.pull": "Pull",
|
||||
"settings.sourceControl.button.pull.forbidden": "Only the instance owner or instance admins can pull changes",
|
||||
"settings.sourceControl.button.push.forbidden": "You can't push changes from a protected instance",
|
||||
"settings.sourceControl.modals.push.title": "Commit and push changes",
|
||||
"settings.sourceControl.modals.push.description": "The following will be committed: ",
|
||||
"settings.sourceControl.modals.push.description.learnMore": "More info",
|
||||
|
||||
@@ -11,11 +11,13 @@ import { useSourceControlStore } from '@/stores/sourceControl.store';
|
||||
import { useUIStore } from '@/stores/ui.store';
|
||||
import { useRBACStore } from '@/stores/rbac.store';
|
||||
import { createComponentRenderer } from '@/__tests__/render';
|
||||
import { useProjectsStore } from '@/stores/projects.store';
|
||||
|
||||
let pinia: ReturnType<typeof createTestingPinia>;
|
||||
let sourceControlStore: ReturnType<typeof useSourceControlStore>;
|
||||
let uiStore: ReturnType<typeof useUIStore>;
|
||||
let rbacStore: ReturnType<typeof useRBACStore>;
|
||||
let projectStore: ReturnType<typeof useProjectsStore>;
|
||||
|
||||
const showMessage = vi.fn();
|
||||
const showError = vi.fn();
|
||||
@@ -38,6 +40,7 @@ describe('MainSidebarSourceControl', () => {
|
||||
});
|
||||
|
||||
rbacStore = useRBACStore(pinia);
|
||||
projectStore = useProjectsStore(pinia);
|
||||
vi.spyOn(rbacStore, 'hasScope').mockReturnValue(true);
|
||||
|
||||
sourceControlStore = useSourceControlStore();
|
||||
@@ -58,8 +61,72 @@ describe('MainSidebarSourceControl', () => {
|
||||
expect(getByTestId('main-sidebar-source-control')).toBeEmptyDOMElement();
|
||||
});
|
||||
|
||||
describe('when connected as project admin', () => {
|
||||
beforeEach(() => {
|
||||
vi.spyOn(rbacStore, 'hasScope').mockReturnValue(false);
|
||||
vi.spyOn(sourceControlStore, 'preferences', 'get').mockReturnValue({
|
||||
branchName: 'main',
|
||||
branches: [],
|
||||
repositoryUrl: '',
|
||||
branchReadOnly: false,
|
||||
branchColor: '#5296D6',
|
||||
connected: true,
|
||||
publicKey: '',
|
||||
});
|
||||
projectStore.myProjects = [
|
||||
{
|
||||
id: '1',
|
||||
name: 'Test Project',
|
||||
type: 'team',
|
||||
scopes: ['sourceControl:push'],
|
||||
icon: { type: 'emoji', value: '🚀' },
|
||||
createdAt: '2023-01-01T00:00:00Z',
|
||||
updatedAt: '2023-01-01T00:00:00Z',
|
||||
role: 'project:admin',
|
||||
},
|
||||
];
|
||||
});
|
||||
|
||||
it('should render the appropriate content', async () => {
|
||||
const { getByTestId, queryByTestId } = renderComponent({
|
||||
pinia,
|
||||
props: { isCollapsed: false },
|
||||
});
|
||||
expect(getByTestId('main-sidebar-source-control-connected')).toBeInTheDocument();
|
||||
expect(queryByTestId('main-sidebar-source-control-setup')).not.toBeInTheDocument();
|
||||
|
||||
const pushButton = queryByTestId('main-sidebar-source-control-push');
|
||||
expect(pushButton).toBeInTheDocument();
|
||||
expect(pushButton).not.toBeDisabled();
|
||||
|
||||
const pullButton = queryByTestId('main-sidebar-source-control-pull');
|
||||
expect(pullButton).toBeInTheDocument();
|
||||
expect(pullButton).toBeDisabled();
|
||||
});
|
||||
|
||||
it('should disable push button if branch is read-only', async () => {
|
||||
vi.spyOn(sourceControlStore, 'preferences', 'get').mockReturnValue({
|
||||
branchName: 'main',
|
||||
branches: [],
|
||||
repositoryUrl: '',
|
||||
branchReadOnly: true,
|
||||
branchColor: '#5296D6',
|
||||
connected: true,
|
||||
publicKey: '',
|
||||
});
|
||||
|
||||
const { getByTestId } = renderComponent({
|
||||
pinia,
|
||||
props: { isCollapsed: false },
|
||||
});
|
||||
const pushButton = getByTestId('main-sidebar-source-control-push');
|
||||
expect(pushButton).toBeDisabled();
|
||||
});
|
||||
});
|
||||
|
||||
describe('when connected', () => {
|
||||
beforeEach(() => {
|
||||
vi.spyOn(rbacStore, 'hasScope').mockReturnValue(true);
|
||||
vi.spyOn(sourceControlStore, 'preferences', 'get').mockReturnValue({
|
||||
branchName: 'main',
|
||||
branches: [],
|
||||
@@ -78,6 +145,32 @@ describe('MainSidebarSourceControl', () => {
|
||||
});
|
||||
expect(getByTestId('main-sidebar-source-control-connected')).toBeInTheDocument();
|
||||
expect(queryByTestId('main-sidebar-source-control-setup')).not.toBeInTheDocument();
|
||||
|
||||
const pushButton = queryByTestId('main-sidebar-source-control-push');
|
||||
expect(pushButton).toBeInTheDocument();
|
||||
expect(pushButton).not.toBeDisabled();
|
||||
|
||||
const pullButton = queryByTestId('main-sidebar-source-control-pull');
|
||||
expect(pullButton).toBeInTheDocument();
|
||||
expect(pullButton).not.toBeDisabled();
|
||||
});
|
||||
|
||||
it('should disable push button if branch is read-only', async () => {
|
||||
vi.spyOn(sourceControlStore, 'preferences', 'get').mockReturnValue({
|
||||
branchName: 'main',
|
||||
branches: [],
|
||||
repositoryUrl: '',
|
||||
branchReadOnly: true,
|
||||
branchColor: '#5296D6',
|
||||
connected: true,
|
||||
publicKey: '',
|
||||
});
|
||||
const { getByTestId } = renderComponent({
|
||||
pinia,
|
||||
props: { isCollapsed: false },
|
||||
});
|
||||
const pushButton = getByTestId('main-sidebar-source-control-push');
|
||||
expect(pushButton).toBeDisabled();
|
||||
});
|
||||
|
||||
it('should show toast error if pull response http status code is not 409', async () => {
|
||||
|
||||
@@ -3,6 +3,7 @@ import { computed, ref } from 'vue';
|
||||
import { createEventBus } from '@n8n/utils/event-bus';
|
||||
import { useI18n } from '@n8n/i18n';
|
||||
import { hasPermission } from '@/utils/rbac/permissions';
|
||||
import { getResourcePermissions } from '@/permissions';
|
||||
import { useToast } from '@/composables/useToast';
|
||||
import { useLoadingService } from '@/composables/useLoadingService';
|
||||
import { useUIStore } from '@/stores/ui.store';
|
||||
@@ -10,6 +11,7 @@ import { useSourceControlStore } from '@/stores/sourceControl.store';
|
||||
import { SOURCE_CONTROL_PULL_MODAL_KEY, SOURCE_CONTROL_PUSH_MODAL_KEY } from '@/constants';
|
||||
import { sourceControlEventBus } from '@/event-bus/source-control';
|
||||
import { notifyUserAboutPullWorkFolderOutcome } from '@/utils/sourceControlUtils';
|
||||
import { useProjectsStore } from '@/stores/projects.store';
|
||||
|
||||
defineProps<{
|
||||
isCollapsed: boolean;
|
||||
@@ -22,6 +24,7 @@ const responseStatuses = {
|
||||
const loadingService = useLoadingService();
|
||||
const uiStore = useUIStore();
|
||||
const sourceControlStore = useSourceControlStore();
|
||||
const projectStore = useProjectsStore();
|
||||
const toast = useToast();
|
||||
const i18n = useI18n();
|
||||
|
||||
@@ -31,10 +34,26 @@ const tooltipOpenDelay = ref(300);
|
||||
const currentBranch = computed(() => {
|
||||
return sourceControlStore.preferences.branchName;
|
||||
});
|
||||
|
||||
// Check if the user has permission to push for at least one project
|
||||
const hasPushPermission = computed(() => {
|
||||
return (
|
||||
hasPermission(['rbac'], { rbac: { scope: 'sourceControl:push' } }) ||
|
||||
projectStore.myProjects.some(
|
||||
(project) =>
|
||||
project.type === 'team' && getResourcePermissions(project?.scopes)?.sourceControl?.push,
|
||||
)
|
||||
);
|
||||
});
|
||||
|
||||
const hasPullPermission = computed(() => {
|
||||
return hasPermission(['rbac'], { rbac: { scope: 'sourceControl:pull' } });
|
||||
});
|
||||
|
||||
const sourceControlAvailable = computed(
|
||||
() =>
|
||||
sourceControlStore.isEnterpriseSourceControlEnabled &&
|
||||
hasPermission(['rbac'], { rbac: { scope: 'sourceControl:manage' } }),
|
||||
(hasPullPermission.value || hasPushPermission.value),
|
||||
);
|
||||
|
||||
async function pushWorkfolder() {
|
||||
@@ -113,17 +132,27 @@ async function pullWorkfolder() {
|
||||
{{ currentBranch }}
|
||||
</span>
|
||||
<div :class="{ 'pt-xs': !isCollapsed }">
|
||||
<n8n-tooltip :disabled="!isCollapsed" :show-after="tooltipOpenDelay" placement="right">
|
||||
<n8n-tooltip
|
||||
:disabled="!isCollapsed && hasPullPermission"
|
||||
:show-after="tooltipOpenDelay"
|
||||
:placement="isCollapsed ? 'right' : 'top'"
|
||||
>
|
||||
<template #content>
|
||||
<div>
|
||||
{{ i18n.baseText('settings.sourceControl.button.pull') }}
|
||||
{{
|
||||
!hasPullPermission
|
||||
? i18n.baseText('settings.sourceControl.button.pull.forbidden')
|
||||
: i18n.baseText('settings.sourceControl.button.pull')
|
||||
}}
|
||||
</div>
|
||||
</template>
|
||||
<n8n-button
|
||||
:class="{
|
||||
'mr-2xs': !isCollapsed,
|
||||
'mb-2xs': isCollapsed && !sourceControlStore.preferences.branchReadOnly,
|
||||
'mb-2xs': isCollapsed,
|
||||
}"
|
||||
:disabled="!hasPullPermission"
|
||||
data-test-id="main-sidebar-source-control-pull"
|
||||
icon="arrow-down"
|
||||
type="tertiary"
|
||||
size="mini"
|
||||
@@ -133,19 +162,26 @@ async function pullWorkfolder() {
|
||||
/>
|
||||
</n8n-tooltip>
|
||||
<n8n-tooltip
|
||||
v-if="!sourceControlStore.preferences.branchReadOnly"
|
||||
:disabled="!isCollapsed"
|
||||
:disabled="
|
||||
!isCollapsed && !sourceControlStore.preferences.branchReadOnly && hasPushPermission
|
||||
"
|
||||
:show-after="tooltipOpenDelay"
|
||||
placement="right"
|
||||
:placement="isCollapsed ? 'right' : 'top'"
|
||||
>
|
||||
<template #content>
|
||||
<div>
|
||||
{{ i18n.baseText('settings.sourceControl.button.push') }}
|
||||
{{
|
||||
sourceControlStore.preferences.branchReadOnly || !hasPushPermission
|
||||
? i18n.baseText('settings.sourceControl.button.push.forbidden')
|
||||
: i18n.baseText('settings.sourceControl.button.push')
|
||||
}}
|
||||
</div>
|
||||
</template>
|
||||
<n8n-button
|
||||
:square="isCollapsed"
|
||||
:label="isCollapsed ? '' : i18n.baseText('settings.sourceControl.button.push')"
|
||||
:disabled="sourceControlStore.preferences.branchReadOnly || !hasPushPermission"
|
||||
data-test-id="main-sidebar-source-control-push"
|
||||
icon="arrow-up"
|
||||
type="tertiary"
|
||||
size="mini"
|
||||
|
||||
Reference in New Issue
Block a user