diff --git a/src/Core/Models/Api/Response/OrganizationUserResponseModel.cs b/src/Core/Models/Api/Response/OrganizationUserResponseModel.cs index a19fc9b844..6fb52f0d34 100644 --- a/src/Core/Models/Api/Response/OrganizationUserResponseModel.cs +++ b/src/Core/Models/Api/Response/OrganizationUserResponseModel.cs @@ -72,10 +72,12 @@ namespace Bit.Core.Models.Api Name = organizationUser.Name; Email = organizationUser.Email; TwoFactorEnabled = twoFactorEnabled; + SsoBound = !string.IsNullOrWhiteSpace(organizationUser.SsoExternalId); } public string Name { get; set; } public string Email { get; set; } public bool TwoFactorEnabled { get; set; } + public bool SsoBound { get; set; } } } diff --git a/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs b/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs index 3178f14860..40f43c7218 100644 --- a/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs +++ b/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs @@ -27,6 +27,7 @@ namespace Bit.Core.Models.Api Status = organization.Status; Type = organization.Type; Enabled = organization.Enabled; + SsoBound = !string.IsNullOrWhiteSpace(organization.SsoExternalId); } public string Id { get; set; } @@ -49,5 +50,6 @@ namespace Bit.Core.Models.Api public OrganizationUserStatusType Status { get; set; } public OrganizationUserType Type { get; set; } public bool Enabled { get; set; } + public bool SsoBound { get; set; } } } diff --git a/src/Core/Models/Data/OrganizationUserOrganizationDetails.cs b/src/Core/Models/Data/OrganizationUserOrganizationDetails.cs index 9b336ec9c9..5c365719e8 100644 --- a/src/Core/Models/Data/OrganizationUserOrganizationDetails.cs +++ b/src/Core/Models/Data/OrganizationUserOrganizationDetails.cs @@ -24,5 +24,6 @@ namespace Bit.Core.Models.Data public Enums.OrganizationUserStatusType Status { get; set; } public Enums.OrganizationUserType Type { get; set; } public bool Enabled { get; set; } + public string SsoExternalId { get; set; } } } diff --git a/src/Core/Models/Data/OrganizationUserUserDetails.cs b/src/Core/Models/Data/OrganizationUserUserDetails.cs index 26190b3937..4795a0d598 100644 --- a/src/Core/Models/Data/OrganizationUserUserDetails.cs +++ b/src/Core/Models/Data/OrganizationUserUserDetails.cs @@ -20,6 +20,7 @@ namespace Bit.Core.Models.Data public OrganizationUserType Type { get; set; } public bool AccessAll { get; set; } public string ExternalId { get; set; } + public string SsoExternalId { get; set; } public Dictionary GetTwoFactorProviders() { diff --git a/src/Sql/dbo/Views/OrganizationUserOrganizationDetailsView.sql b/src/Sql/dbo/Views/OrganizationUserOrganizationDetailsView.sql index c6a5ee105a..efa2736792 100644 --- a/src/Sql/dbo/Views/OrganizationUserOrganizationDetailsView.sql +++ b/src/Sql/dbo/Views/OrganizationUserOrganizationDetailsView.sql @@ -20,8 +20,11 @@ SELECT O.[MaxStorageGb], OU.[Key], OU.[Status], - OU.[Type] + OU.[Type], + SU.[ExternalId] SsoExternalId FROM [dbo].[OrganizationUser] OU INNER JOIN - [dbo].[Organization] O ON O.[Id] = OU.[OrganizationId] \ No newline at end of file + [dbo].[Organization] O ON O.[Id] = OU.[OrganizationId] +LEFT JOIN + [dbo].[SsoUser] SU ON SU.[UserId] = OU.[UserId] AND SU.[OrganizationId] = OU.[OrganizationId] \ No newline at end of file diff --git a/src/Sql/dbo/Views/OrganizationUserUserDetailsView.sql b/src/Sql/dbo/Views/OrganizationUserUserDetailsView.sql index 476ac71a39..f0ca706d2f 100644 --- a/src/Sql/dbo/Views/OrganizationUserUserDetailsView.sql +++ b/src/Sql/dbo/Views/OrganizationUserUserDetailsView.sql @@ -11,8 +11,11 @@ SELECT OU.[Status], OU.[Type], OU.[AccessAll], - OU.[ExternalId] + OU.[ExternalId], + SU.[ExternalId] SsoExternalId FROM [dbo].[OrganizationUser] OU LEFT JOIN - [dbo].[User] U ON U.[Id] = OU.[UserId] \ No newline at end of file + [dbo].[User] U ON U.[Id] = OU.[UserId] +LEFT JOIN + [dbo].[SsoUser] SU ON SU.[UserId] = OU.[UserId] AND SU.[OrganizationId] = OU.[OrganizationId] \ No newline at end of file diff --git a/util/Migrator/DbScripts/2020-07-28_00_SsoBound.sql b/util/Migrator/DbScripts/2020-07-28_00_SsoBound.sql new file mode 100644 index 0000000000..5c7360954d --- /dev/null +++ b/util/Migrator/DbScripts/2020-07-28_00_SsoBound.sql @@ -0,0 +1,67 @@ +IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'OrganizationUserOrganizationDetailsView') +BEGIN + DROP VIEW [dbo].[OrganizationUserOrganizationDetailsView] +END +GO + +CREATE VIEW [dbo].[OrganizationUserOrganizationDetailsView] +AS +SELECT + OU.[UserId], + OU.[OrganizationId], + O.[Name], + O.[Enabled], + O.[UsePolicies], + O.[UseSso], + O.[UseGroups], + O.[UseDirectory], + O.[UseEvents], + O.[UseTotp], + O.[Use2fa], + O.[UseApi], + O.[SelfHost], + O.[UsersGetPremium], + O.[Seats], + O.[MaxCollections], + O.[MaxStorageGb], + OU.[Key], + OU.[Status], + OU.[Type], + SU.[ExternalId] SsoExternalId +FROM + [dbo].[OrganizationUser] OU +INNER JOIN + [dbo].[Organization] O ON O.[Id] = OU.[OrganizationId] +LEFT JOIN + [dbo].[SsoUser] SU ON SU.[UserId] = OU.[UserId] AND SU.[OrganizationId] = OU.[OrganizationId] +GO + +IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'OrganizationUserUserDetailsView') +BEGIN + DROP VIEW [dbo].[OrganizationUserUserDetailsView] +END +GO + +CREATE VIEW [dbo].[OrganizationUserUserDetailsView] +AS +SELECT + OU.[Id], + OU.[UserId], + OU.[OrganizationId], + U.[Name], + ISNULL(U.[Email], OU.[Email]) Email, + U.[TwoFactorProviders], + U.[Premium], + OU.[Status], + OU.[Type], + OU.[AccessAll], + OU.[ExternalId], + SU.[ExternalId] SsoExternalId +FROM + [dbo].[OrganizationUser] OU +LEFT JOIN + [dbo].[User] U ON U.[Id] = OU.[UserId] +LEFT JOIN + [dbo].[SsoUser] SU ON SU.[UserId] = OU.[UserId] AND SU.[OrganizationId] = OU.[OrganizationId] +GO +