From 764446a2d901d3a27e138ee890987dee7ac72504 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Mon, 21 Oct 2024 19:06:02 -0400 Subject: [PATCH] update small missing ' --- .../ldap-config/ldap-config-service.ts | 2 +- .../services/permission/permission-service.ts | 2 +- .../saml-config/saml-config-service.ts | 2 +- .../secret-approval-policy-service.ts | 2 +- .../integration-auth-service.ts | 44 +++++++++---------- .../integration/integration-service.ts | 12 ++--- 6 files changed, 32 insertions(+), 32 deletions(-) diff --git a/backend/src/ee/services/ldap-config/ldap-config-service.ts b/backend/src/ee/services/ldap-config/ldap-config-service.ts index 1d444df88..0cbab8c32 100644 --- a/backend/src/ee/services/ldap-config/ldap-config-service.ts +++ b/backend/src/ee/services/ldap-config/ldap-config-service.ts @@ -249,7 +249,7 @@ export const ldapConfigServiceFactory = ({ const orgBot = await orgBotDAL.findOne({ orgId }); if (!orgBot) throw new NotFoundError({ - message: `Organization bot in organiation with ID '${orgId}' not found`, + message: `Organization bot in organization with ID '${orgId}' not found`, name: "OrgBotNotFound" }); const key = infisicalSymmetricDecrypt({ diff --git a/backend/src/ee/services/permission/permission-service.ts b/backend/src/ee/services/permission/permission-service.ts index f178759d5..900be4b38 100644 --- a/backend/src/ee/services/permission/permission-service.ts +++ b/backend/src/ee/services/permission/permission-service.ts @@ -181,7 +181,7 @@ export const permissionServiceFactory = ({ const orgRole = await orgRoleDAL.findOne({ slug: role, orgId }); if (!orgRole) throw new NotFoundError({ - message: `Specified role ''${role} was not found in the organization with ID '${orgId}'` + message: `Specified role '${role}' was not found in the organization with ID '${orgId}'` }); return { permission: buildOrgPermission([{ role: OrgMembershipRole.Custom, permissions: orgRole.permissions }]), diff --git a/backend/src/ee/services/saml-config/saml-config-service.ts b/backend/src/ee/services/saml-config/saml-config-service.ts index 1ece5ea11..2930d06f9 100644 --- a/backend/src/ee/services/saml-config/saml-config-service.ts +++ b/backend/src/ee/services/saml-config/saml-config-service.ts @@ -193,7 +193,7 @@ export const samlConfigServiceFactory = ({ const orgBot = await orgBotDAL.findOne({ orgId }); if (!orgBot) throw new NotFoundError({ - message: `Organization bot not found for organization with ID ${orgId}`, + message: `Organization bot not found for organization with ID '${orgId}'`, name: "OrgBotNotFound" }); const key = infisicalSymmetricDecrypt({ diff --git a/backend/src/ee/services/secret-approval-policy/secret-approval-policy-service.ts b/backend/src/ee/services/secret-approval-policy/secret-approval-policy-service.ts index bc2a04e01..e43a0d801 100644 --- a/backend/src/ee/services/secret-approval-policy/secret-approval-policy-service.ts +++ b/backend/src/ee/services/secret-approval-policy/secret-approval-policy-service.ts @@ -381,7 +381,7 @@ export const secretApprovalPolicyServiceFactory = ({ if (!sapPolicy) { throw new NotFoundError({ - message: `Secret approval policy with ID ${sapId} not found` + message: `Secret approval policy with ID '${sapId}' not found` }); } diff --git a/backend/src/services/integration-auth/integration-auth-service.ts b/backend/src/services/integration-auth/integration-auth-service.ts index 6f90c583e..7efc485e0 100644 --- a/backend/src/services/integration-auth/integration-auth-service.ts +++ b/backend/src/services/integration-auth/integration-auth-service.ts @@ -110,7 +110,7 @@ export const integrationAuthServiceFactory = ({ const getIntegrationAuth = async ({ actor, id, actorId, actorAuthMethod, actorOrgId }: TGetIntegrationAuthDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -496,7 +496,7 @@ export const integrationAuthServiceFactory = ({ workspaceSlug }: TIntegrationAuthAppsDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -530,7 +530,7 @@ export const integrationAuthServiceFactory = ({ id }: TIntegrationAuthTeamsDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -560,7 +560,7 @@ export const integrationAuthServiceFactory = ({ actorOrgId }: TIntegrationAuthVercelBranchesDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -601,7 +601,7 @@ export const integrationAuthServiceFactory = ({ accountId }: TIntegrationAuthChecklyGroupsDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -629,7 +629,7 @@ export const integrationAuthServiceFactory = ({ const getGithubOrgs = async ({ actorId, actor, actorOrgId, actorAuthMethod, id }: TIntegrationAuthGithubOrgsDTO) => { const appCfg = getConfig(); const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -703,7 +703,7 @@ export const integrationAuthServiceFactory = ({ repoName }: TIntegrationAuthGithubEnvsDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -750,7 +750,7 @@ export const integrationAuthServiceFactory = ({ const getQoveryOrgs = async ({ actorId, actor, actorOrgId, actorAuthMethod, id }: TIntegrationAuthQoveryOrgsDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -784,7 +784,7 @@ export const integrationAuthServiceFactory = ({ region }: TIntegrationAuthAwsKmsKeyDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -842,7 +842,7 @@ export const integrationAuthServiceFactory = ({ orgId }: TIntegrationAuthQoveryProjectDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -878,7 +878,7 @@ export const integrationAuthServiceFactory = ({ actorOrgId }: TIntegrationAuthQoveryEnvironmentsDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -919,7 +919,7 @@ export const integrationAuthServiceFactory = ({ environmentId }: TIntegrationAuthQoveryScopesDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -959,7 +959,7 @@ export const integrationAuthServiceFactory = ({ environmentId }: TIntegrationAuthQoveryScopesDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -1038,7 +1038,7 @@ export const integrationAuthServiceFactory = ({ actorOrgId }: TIntegrationAuthHerokuPipelinesDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -1078,7 +1078,7 @@ export const integrationAuthServiceFactory = ({ appId }: TIntegrationAuthRailwayEnvDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -1146,7 +1146,7 @@ export const integrationAuthServiceFactory = ({ appId }: TIntegrationAuthRailwayServicesDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -1220,7 +1220,7 @@ export const integrationAuthServiceFactory = ({ id }: TIntegrationAuthBitbucketWorkspaceDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -1269,7 +1269,7 @@ export const integrationAuthServiceFactory = ({ appId }: TIntegrationAuthNorthflankSecretGroupDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -1337,7 +1337,7 @@ export const integrationAuthServiceFactory = ({ actor }: TGetIntegrationAuthTeamCityBuildConfigDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -1399,7 +1399,7 @@ export const integrationAuthServiceFactory = ({ actorOrgId }: TDeleteIntegrationAuthByIdDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); - if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + if (!integrationAuth) throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -1412,7 +1412,7 @@ export const integrationAuthServiceFactory = ({ const delIntegrationAuth = await integrationAuthDAL.transaction(async (tx) => { const doc = await integrationAuthDAL.deleteById(integrationAuth.id, tx); - if (!doc) throw new NotFoundError({ message: `Integration auth with ID ${integrationAuth.id} not found` }); + if (!doc) throw new NotFoundError({ message: `Integration auth with ID '${integrationAuth.id}' not found` }); await integrationDAL.delete({ integrationAuthId: doc.id }, tx); return doc; }); @@ -1431,7 +1431,7 @@ export const integrationAuthServiceFactory = ({ }: TDuplicateGithubIntegrationAuthDTO) => { const integrationAuth = await integrationAuthDAL.findById(id); if (!integrationAuth) { - throw new NotFoundError({ message: `Integration auth with ID ${id} not found` }); + throw new NotFoundError({ message: `Integration auth with ID '${id}' not found` }); } const { permission: sourcePermission } = await permissionService.getProjectPermission( diff --git a/backend/src/services/integration/integration-service.ts b/backend/src/services/integration/integration-service.ts index 6830112ae..9b5ff0cf9 100644 --- a/backend/src/services/integration/integration-service.ts +++ b/backend/src/services/integration/integration-service.ts @@ -77,7 +77,7 @@ export const integrationServiceFactory = ({ }: TCreateIntegrationDTO) => { const integrationAuth = await integrationAuthDAL.findById(integrationAuthId); if (!integrationAuth) - throw new NotFoundError({ message: `Integration auth with ID ${integrationAuthId} not found` }); + throw new NotFoundError({ message: `Integration auth with ID '${integrationAuthId}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -150,7 +150,7 @@ export const integrationServiceFactory = ({ metadata }: TUpdateIntegrationDTO) => { const integration = await integrationDAL.findById(id); - if (!integration) throw new NotFoundError({ message: `Integration with ID ${id} not found` }); + if (!integration) throw new NotFoundError({ message: `Integration with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -209,7 +209,7 @@ export const integrationServiceFactory = ({ if (!integration) { throw new NotFoundError({ - message: `Integration with ID ${id} not found` + message: `Integration with ID '${id}' not found` }); } @@ -224,7 +224,7 @@ export const integrationServiceFactory = ({ if (!integration) { throw new NotFoundError({ - message: `Integration with ID ${id} not found` + message: `Integration with ID '${id}' not found` }); } @@ -240,7 +240,7 @@ export const integrationServiceFactory = ({ shouldDeleteIntegrationSecrets }: TDeleteIntegrationDTO) => { const integration = await integrationDAL.findById(id); - if (!integration) throw new NotFoundError({ message: `Integration with ID ${id} not found` }); + if (!integration) throw new NotFoundError({ message: `Integration with ID '${id}' not found` }); const { permission } = await permissionService.getProjectPermission( actor, @@ -294,7 +294,7 @@ export const integrationServiceFactory = ({ const syncIntegration = async ({ id, actorId, actor, actorOrgId, actorAuthMethod }: TSyncIntegrationDTO) => { const integration = await integrationDAL.findById(id); if (!integration) { - throw new NotFoundError({ message: `Integration with ID ${id} not found` }); + throw new NotFoundError({ message: `Integration with ID '${id}' not found` }); } const { permission } = await permissionService.getProjectPermission(