import { Service } from 'typedi'; import path from 'path'; import { getTagsPath, getTrackingInformationFromPostPushResult, getTrackingInformationFromPrePushResult, getTrackingInformationFromPullResult, getVariablesPath, sourceControlFoldersExistCheck, } from './sourceControlHelper.ee'; import type { SourceControlPreferences } from './types/sourceControlPreferences'; import { SOURCE_CONTROL_DEFAULT_EMAIL, SOURCE_CONTROL_DEFAULT_NAME, SOURCE_CONTROL_README, } from './constants'; import { SourceControlGitService } from './sourceControlGit.service.ee'; import type { PushResult } from 'simple-git'; import { SourceControlExportService } from './sourceControlExport.service.ee'; import type { ImportResult } from './types/importResult'; import type { SourceControlPushWorkFolder } from './types/sourceControlPushWorkFolder'; import type { SourceControllPullOptions } from './types/sourceControlPullWorkFolder'; import type { SourceControlledFile } from './types/sourceControlledFile'; import { SourceControlPreferencesService } from './sourceControlPreferences.service.ee'; import { writeFileSync } from 'fs'; import { SourceControlImportService } from './sourceControlImport.service.ee'; import type { User } from '@db/entities/User'; import type { SourceControlGetStatus } from './types/sourceControlGetStatus'; import type { TagEntity } from '@db/entities/TagEntity'; import type { Variables } from '@db/entities/Variables'; import type { SourceControlWorkflowVersionId } from './types/sourceControlWorkflowVersionId'; import type { ExportableCredential } from './types/exportableCredential'; import { EventService } from '@/events/event.service'; import { TagRepository } from '@db/repositories/tag.repository'; import { Logger } from '@/Logger'; import { BadRequestError } from '@/errors/response-errors/bad-request.error'; import { ApplicationError } from 'n8n-workflow'; @Service() export class SourceControlService { /** Path to SSH private key in filesystem. */ private sshKeyName: string; private sshFolder: string; private gitFolder: string; constructor( private readonly logger: Logger, private gitService: SourceControlGitService, private sourceControlPreferencesService: SourceControlPreferencesService, private sourceControlExportService: SourceControlExportService, private sourceControlImportService: SourceControlImportService, private tagRepository: TagRepository, private readonly eventService: EventService, ) { const { gitFolder, sshFolder, sshKeyName } = sourceControlPreferencesService; this.gitFolder = gitFolder; this.sshFolder = sshFolder; this.sshKeyName = sshKeyName; } async init(): Promise { this.gitService.resetService(); sourceControlFoldersExistCheck([this.gitFolder, this.sshFolder]); await this.sourceControlPreferencesService.loadFromDbAndApplySourceControlPreferences(); if (this.sourceControlPreferencesService.isSourceControlLicensedAndEnabled()) { await this.initGitService(); } } private async initGitService(): Promise { await this.gitService.initService({ sourceControlPreferences: this.sourceControlPreferencesService.getPreferences(), gitFolder: this.gitFolder, sshKeyName: this.sshKeyName, sshFolder: this.sshFolder, }); } private async sanityCheck(): Promise { try { const foldersExisted = sourceControlFoldersExistCheck( [this.gitFolder, this.sshFolder], false, ); if (!foldersExisted) { throw new ApplicationError('No folders exist'); } if (!this.gitService.git) { await this.initGitService(); } const branches = await this.gitService.getCurrentBranch(); if ( branches.current === '' || branches.current !== this.sourceControlPreferencesService.sourceControlPreferences.branchName ) { throw new ApplicationError('Branch is not set up correctly'); } } catch (error) { throw new BadRequestError( 'Source control is not properly set up, please disconnect and reconnect.', ); } } async disconnect(options: { keepKeyPair?: boolean } = {}) { try { await this.sourceControlPreferencesService.setPreferences({ connected: false, branchName: '', }); await this.sourceControlExportService.deleteRepositoryFolder(); if (!options.keepKeyPair) { await this.sourceControlPreferencesService.deleteKeyPair(); } this.gitService.resetService(); return this.sourceControlPreferencesService.sourceControlPreferences; } catch (error) { throw new ApplicationError('Failed to disconnect from source control', { cause: error }); } } async initializeRepository(preferences: SourceControlPreferences, user: User) { if (!this.gitService.git) { await this.initGitService(); } this.logger.debug('Initializing repository...'); await this.gitService.initRepository(preferences, user); let getBranchesResult; try { getBranchesResult = await this.getBranches(); } catch (error) { if ((error as Error).message.includes('Warning: Permanently added')) { this.logger.debug('Added repository host to the list of known hosts. Retrying...'); getBranchesResult = await this.getBranches(); } else { throw error; } } if (getBranchesResult.branches.includes(preferences.branchName)) { await this.gitService.setBranch(preferences.branchName); } else { if (getBranchesResult.branches?.length === 0) { try { writeFileSync(path.join(this.gitFolder, '/README.md'), SOURCE_CONTROL_README); await this.gitService.stage(new Set(['README.md'])); await this.gitService.commit('Initial commit'); await this.gitService.push({ branch: preferences.branchName, force: true, }); getBranchesResult = await this.getBranches(); await this.gitService.setBranch(preferences.branchName); } catch (fileError) { this.logger.error(`Failed to create initial commit: ${(fileError as Error).message}`); } } } await this.sourceControlPreferencesService.setPreferences({ branchName: getBranchesResult.currentBranch, connected: true, }); return getBranchesResult; } async getBranches(): Promise<{ branches: string[]; currentBranch: string }> { // fetch first to get include remote changes if (!this.gitService.git) { await this.initGitService(); } await this.gitService.fetch(); return await this.gitService.getBranches(); } async setBranch(branch: string): Promise<{ branches: string[]; currentBranch: string }> { if (!this.gitService.git) { await this.initGitService(); } await this.sourceControlPreferencesService.setPreferences({ branchName: branch, connected: branch?.length > 0, }); return await this.gitService.setBranch(branch); } // will reset the branch to the remote branch and pull // this will discard all local changes async resetWorkfolder(): Promise { if (!this.gitService.git) { await this.initGitService(); } try { await this.gitService.resetBranch(); await this.gitService.pull(); } catch (error) { this.logger.error(`Failed to reset workfolder: ${(error as Error).message}`); throw new ApplicationError( 'Unable to fetch updates from git - your folder might be out of sync. Try reconnecting from the Source Control settings page.', ); } return; } async pushWorkfolder(options: SourceControlPushWorkFolder): Promise<{ statusCode: number; pushResult: PushResult | undefined; statusResult: SourceControlledFile[]; }> { await this.sanityCheck(); if (this.sourceControlPreferencesService.isBranchReadOnly()) { throw new BadRequestError('Cannot push onto read-only branch.'); } // only determine file status if not provided by the frontend let statusResult: SourceControlledFile[] = options.fileNames; if (statusResult.length === 0) { statusResult = (await this.getStatus({ direction: 'push', verbose: false, preferLocalVersion: true, })) as SourceControlledFile[]; } if (!options.force) { const possibleConflicts = statusResult?.filter((file) => file.conflict); if (possibleConflicts?.length > 0) { return { statusCode: 409, pushResult: undefined, statusResult, }; } } const filesToBePushed = new Set(); const filesToBeDeleted = new Set(); options.fileNames.forEach((e) => { if (e.status !== 'deleted') { filesToBePushed.add(e.file); } else { filesToBeDeleted.add(e.file); } }); this.sourceControlExportService.rmFilesFromExportFolder(filesToBeDeleted); const workflowsToBeExported = options.fileNames.filter( (e) => e.type === 'workflow' && e.status !== 'deleted', ); await this.sourceControlExportService.exportWorkflowsToWorkFolder(workflowsToBeExported); const credentialsToBeExported = options.fileNames.filter( (e) => e.type === 'credential' && e.status !== 'deleted', ); const credentialExportResult = await this.sourceControlExportService.exportCredentialsToWorkFolder(credentialsToBeExported); if (credentialExportResult.missingIds && credentialExportResult.missingIds.length > 0) { credentialExportResult.missingIds.forEach((id) => { filesToBePushed.delete(this.sourceControlExportService.getCredentialsPath(id)); statusResult = statusResult.filter( (e) => e.file !== this.sourceControlExportService.getCredentialsPath(id), ); }); } if (options.fileNames.find((e) => e.type === 'tags')) { await this.sourceControlExportService.exportTagsToWorkFolder(); } if (options.fileNames.find((e) => e.type === 'variables')) { await this.sourceControlExportService.exportVariablesToWorkFolder(); } await this.gitService.stage(filesToBePushed, filesToBeDeleted); for (let i = 0; i < statusResult.length; i++) { // eslint-disable-next-line @typescript-eslint/no-loop-func if (options.fileNames.find((file) => file.file === statusResult[i].file)) { statusResult[i].pushed = true; } } await this.gitService.commit(options.message ?? 'Updated Workfolder'); const pushResult = await this.gitService.push({ branch: this.sourceControlPreferencesService.getBranchName(), force: options.force ?? false, }); // #region Tracking Information this.eventService.emit( 'source-control-user-finished-push-ui', getTrackingInformationFromPostPushResult(statusResult), ); // #endregion return { statusCode: 200, pushResult, statusResult, }; } async pullWorkfolder( options: SourceControllPullOptions, ): Promise<{ statusCode: number; statusResult: SourceControlledFile[] }> { await this.sanityCheck(); const statusResult = (await this.getStatus({ direction: 'pull', verbose: false, preferLocalVersion: false, })) as SourceControlledFile[]; // filter out items that will not effect a local change and thus should not // trigger a conflict warning in the frontend const filteredResult = statusResult.filter((e) => { // locally created credentials will not create a conflict on pull if (e.status === 'created' && e.location === 'local') { return false; } // remotely deleted credentials will not delete local credentials if (e.type === 'credential' && e.status === 'deleted') { return false; } return true; }); if (options.force !== true) { const possibleConflicts = filteredResult?.filter( (file) => (file.conflict || file.status === 'modified') && file.type === 'workflow', ); if (possibleConflicts?.length > 0) { await this.gitService.resetBranch(); return { statusCode: 409, statusResult: filteredResult, }; } } const workflowsToBeImported = statusResult.filter( (e) => e.type === 'workflow' && e.status !== 'deleted', ); await this.sourceControlImportService.importWorkflowFromWorkFolder( workflowsToBeImported, options.userId, ); const credentialsToBeImported = statusResult.filter( (e) => e.type === 'credential' && e.status !== 'deleted', ); await this.sourceControlImportService.importCredentialsFromWorkFolder( credentialsToBeImported, options.userId, ); const tagsToBeImported = statusResult.find((e) => e.type === 'tags'); if (tagsToBeImported) { await this.sourceControlImportService.importTagsFromWorkFolder(tagsToBeImported); } const variablesToBeImported = statusResult.find((e) => e.type === 'variables'); if (variablesToBeImported) { await this.sourceControlImportService.importVariablesFromWorkFolder(variablesToBeImported); } // #region Tracking Information this.eventService.emit( 'source-control-user-finished-pull-ui', getTrackingInformationFromPullResult(statusResult), ); // #endregion return { statusCode: 200, statusResult: filteredResult, }; } /** * Does a comparison between the local and remote workfolder based on NOT the git status, * but certain parameters within the items being synced. * For workflows, it compares the versionIds * For credentials, it compares the name and type * For variables, it compares the name * For tags, it compares the name and mapping * @returns either SourceControlledFile[] if verbose is false, * or multiple SourceControlledFile[] with all determined differences for debugging purposes */ async getStatus(options: SourceControlGetStatus) { await this.sanityCheck(); const sourceControlledFiles: SourceControlledFile[] = []; // fetch and reset hard first await this.resetWorkfolder(); const { wfRemoteVersionIds, wfLocalVersionIds, wfMissingInLocal, wfMissingInRemote, wfModifiedInEither, } = await this.getStatusWorkflows(options, sourceControlledFiles); const { credMissingInLocal, credMissingInRemote, credModifiedInEither } = await this.getStatusCredentials(options, sourceControlledFiles); const { varMissingInLocal, varMissingInRemote, varModifiedInEither } = await this.getStatusVariables(options, sourceControlledFiles); const { tagsMissingInLocal, tagsMissingInRemote, tagsModifiedInEither, mappingsMissingInLocal, mappingsMissingInRemote, } = await this.getStatusTagsMappings(options, sourceControlledFiles); // #region Tracking Information if (options.direction === 'push') { this.eventService.emit( 'source-control-user-started-push-ui', getTrackingInformationFromPrePushResult(sourceControlledFiles), ); } else if (options.direction === 'pull') { this.eventService.emit( 'source-control-user-started-pull-ui', getTrackingInformationFromPullResult(sourceControlledFiles), ); } // #endregion if (options?.verbose) { return { wfRemoteVersionIds, wfLocalVersionIds, wfMissingInLocal, wfMissingInRemote, wfModifiedInEither, credMissingInLocal, credMissingInRemote, credModifiedInEither, varMissingInLocal, varMissingInRemote, varModifiedInEither, tagsMissingInLocal, tagsMissingInRemote, tagsModifiedInEither, mappingsMissingInLocal, mappingsMissingInRemote, sourceControlledFiles, }; } else { return sourceControlledFiles; } } private async getStatusWorkflows( options: SourceControlGetStatus, sourceControlledFiles: SourceControlledFile[], ) { const wfRemoteVersionIds = await this.sourceControlImportService.getRemoteVersionIdsFromFiles(); const wfLocalVersionIds = await this.sourceControlImportService.getLocalVersionIdsFromDb(); const wfMissingInLocal = wfRemoteVersionIds.filter( (remote) => wfLocalVersionIds.findIndex((local) => local.id === remote.id) === -1, ); const wfMissingInRemote = wfLocalVersionIds.filter( (local) => wfRemoteVersionIds.findIndex((remote) => remote.id === local.id) === -1, ); const wfModifiedInEither: SourceControlWorkflowVersionId[] = []; wfLocalVersionIds.forEach((local) => { const mismatchingIds = wfRemoteVersionIds.find( (remote) => remote.id === local.id && remote.versionId !== local.versionId, ); let name = (options?.preferLocalVersion ? local?.name : mismatchingIds?.name) ?? 'Workflow'; if (local.name && mismatchingIds?.name && local.name !== mismatchingIds.name) { name = options?.preferLocalVersion ? `${local.name} (Remote: ${mismatchingIds.name})` : (name = `${mismatchingIds.name} (Local: ${local.name})`); } if (mismatchingIds) { wfModifiedInEither.push({ ...local, name, versionId: options.preferLocalVersion ? local.versionId : mismatchingIds.versionId, localId: local.versionId, remoteId: mismatchingIds.versionId, }); } }); wfMissingInLocal.forEach((item) => { sourceControlledFiles.push({ id: item.id, name: item.name ?? 'Workflow', type: 'workflow', status: options.direction === 'push' ? 'deleted' : 'created', location: options.direction === 'push' ? 'local' : 'remote', conflict: false, file: item.filename, updatedAt: item.updatedAt ?? new Date().toISOString(), }); }); wfMissingInRemote.forEach((item) => { sourceControlledFiles.push({ id: item.id, name: item.name ?? 'Workflow', type: 'workflow', status: options.direction === 'push' ? 'created' : 'deleted', location: options.direction === 'push' ? 'local' : 'remote', conflict: false, file: item.filename, updatedAt: item.updatedAt ?? new Date().toISOString(), }); }); wfModifiedInEither.forEach((item) => { sourceControlledFiles.push({ id: item.id, name: item.name ?? 'Workflow', type: 'workflow', status: 'modified', location: options.direction === 'push' ? 'local' : 'remote', conflict: true, file: item.filename, updatedAt: item.updatedAt ?? new Date().toISOString(), }); }); return { wfRemoteVersionIds, wfLocalVersionIds, wfMissingInLocal, wfMissingInRemote, wfModifiedInEither, }; } private async getStatusCredentials( options: SourceControlGetStatus, sourceControlledFiles: SourceControlledFile[], ) { const credRemoteIds = await this.sourceControlImportService.getRemoteCredentialsFromFiles(); const credLocalIds = await this.sourceControlImportService.getLocalCredentialsFromDb(); const credMissingInLocal = credRemoteIds.filter( (remote) => credLocalIds.findIndex((local) => local.id === remote.id) === -1, ); const credMissingInRemote = credLocalIds.filter( (local) => credRemoteIds.findIndex((remote) => remote.id === local.id) === -1, ); // only compares the name, since that is the only change synced for credentials const credModifiedInEither: Array< ExportableCredential & { filename: string; } > = []; credLocalIds.forEach((local) => { const mismatchingCreds = credRemoteIds.find((remote) => { return remote.id === local.id && (remote.name !== local.name || remote.type !== local.type); }); if (mismatchingCreds) { credModifiedInEither.push({ ...local, name: options?.preferLocalVersion ? local.name : mismatchingCreds.name, }); } }); credMissingInLocal.forEach((item) => { sourceControlledFiles.push({ id: item.id, name: item.name ?? 'Credential', type: 'credential', status: options.direction === 'push' ? 'deleted' : 'created', location: options.direction === 'push' ? 'local' : 'remote', conflict: false, file: item.filename, updatedAt: new Date().toISOString(), }); }); credMissingInRemote.forEach((item) => { sourceControlledFiles.push({ id: item.id, name: item.name ?? 'Credential', type: 'credential', status: options.direction === 'push' ? 'created' : 'deleted', location: options.direction === 'push' ? 'local' : 'remote', conflict: false, file: item.filename, updatedAt: new Date().toISOString(), }); }); credModifiedInEither.forEach((item) => { sourceControlledFiles.push({ id: item.id, name: item.name ?? 'Credential', type: 'credential', status: 'modified', location: options.direction === 'push' ? 'local' : 'remote', conflict: true, file: item.filename, updatedAt: new Date().toISOString(), }); }); return { credMissingInLocal, credMissingInRemote, credModifiedInEither, }; } private async getStatusVariables( options: SourceControlGetStatus, sourceControlledFiles: SourceControlledFile[], ) { const varRemoteIds = await this.sourceControlImportService.getRemoteVariablesFromFile(); const varLocalIds = await this.sourceControlImportService.getLocalVariablesFromDb(); const varMissingInLocal = varRemoteIds.filter( (remote) => varLocalIds.findIndex((local) => local.id === remote.id) === -1, ); const varMissingInRemote = varLocalIds.filter( (local) => varRemoteIds.findIndex((remote) => remote.id === local.id) === -1, ); const varModifiedInEither: Variables[] = []; varLocalIds.forEach((local) => { const mismatchingIds = varRemoteIds.find( (remote) => (remote.id === local.id && remote.key !== local.key) || (remote.id !== local.id && remote.key === local.key), ); if (mismatchingIds) { varModifiedInEither.push(options.preferLocalVersion ? local : mismatchingIds); } }); if ( varMissingInLocal.length > 0 || varMissingInRemote.length > 0 || varModifiedInEither.length > 0 ) { if (options.direction === 'pull' && varRemoteIds.length === 0) { // if there's nothing to pull, don't show difference as modified } else { sourceControlledFiles.push({ id: 'variables', name: 'variables', type: 'variables', status: 'modified', location: options.direction === 'push' ? 'local' : 'remote', conflict: false, file: getVariablesPath(this.gitFolder), updatedAt: new Date().toISOString(), }); } } return { varMissingInLocal, varMissingInRemote, varModifiedInEither, }; } private async getStatusTagsMappings( options: SourceControlGetStatus, sourceControlledFiles: SourceControlledFile[], ) { const lastUpdatedTag = await this.tagRepository.find({ order: { updatedAt: 'DESC' }, take: 1, select: ['updatedAt'], }); const tagMappingsRemote = await this.sourceControlImportService.getRemoteTagsAndMappingsFromFile(); const tagMappingsLocal = await this.sourceControlImportService.getLocalTagsAndMappingsFromDb(); const tagsMissingInLocal = tagMappingsRemote.tags.filter( (remote) => tagMappingsLocal.tags.findIndex((local) => local.id === remote.id) === -1, ); const tagsMissingInRemote = tagMappingsLocal.tags.filter( (local) => tagMappingsRemote.tags.findIndex((remote) => remote.id === local.id) === -1, ); const tagsModifiedInEither: TagEntity[] = []; tagMappingsLocal.tags.forEach((local) => { const mismatchingIds = tagMappingsRemote.tags.find( (remote) => remote.id === local.id && remote.name !== local.name, ); if (!mismatchingIds) { return; } tagsModifiedInEither.push(options.preferLocalVersion ? local : mismatchingIds); }); const mappingsMissingInLocal = tagMappingsRemote.mappings.filter( (remote) => tagMappingsLocal.mappings.findIndex( (local) => local.tagId === remote.tagId && local.workflowId === remote.workflowId, ) === -1, ); const mappingsMissingInRemote = tagMappingsLocal.mappings.filter( (local) => tagMappingsRemote.mappings.findIndex( (remote) => remote.tagId === local.tagId && remote.workflowId === remote.workflowId, ) === -1, ); if ( tagsMissingInLocal.length > 0 || tagsMissingInRemote.length > 0 || tagsModifiedInEither.length > 0 || mappingsMissingInLocal.length > 0 || mappingsMissingInRemote.length > 0 ) { if ( options.direction === 'pull' && tagMappingsRemote.tags.length === 0 && tagMappingsRemote.mappings.length === 0 ) { // if there's nothing to pull, don't show difference as modified } else { sourceControlledFiles.push({ id: 'mappings', name: 'tags', type: 'tags', status: 'modified', location: options.direction === 'push' ? 'local' : 'remote', conflict: false, file: getTagsPath(this.gitFolder), updatedAt: lastUpdatedTag[0]?.updatedAt.toISOString(), }); } } return { tagsMissingInLocal, tagsMissingInRemote, tagsModifiedInEither, mappingsMissingInLocal, mappingsMissingInRemote, }; } async setGitUserDetails( name = SOURCE_CONTROL_DEFAULT_NAME, email = SOURCE_CONTROL_DEFAULT_EMAIL, ): Promise { await this.sanityCheck(); await this.gitService.setGitUserDetails(name, email); } }