mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Modified sso details stored procedure to remove policy checks or an organization (#2831)
This commit is contained in:
parent
60bdf77e8b
commit
6551d9176b
@ -16,13 +16,11 @@ public class OrganizationDomainSsoDetailsResponseModel : ResponseModel
|
|||||||
SsoAvailable = data.SsoAvailable;
|
SsoAvailable = data.SsoAvailable;
|
||||||
DomainName = data.DomainName;
|
DomainName = data.DomainName;
|
||||||
OrganizationIdentifier = data.OrganizationIdentifier;
|
OrganizationIdentifier = data.OrganizationIdentifier;
|
||||||
SsoRequired = data.SsoRequired;
|
|
||||||
VerifiedDate = data.VerifiedDate;
|
VerifiedDate = data.VerifiedDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool SsoAvailable { get; private set; }
|
public bool SsoAvailable { get; private set; }
|
||||||
public string DomainName { get; private set; }
|
public string DomainName { get; private set; }
|
||||||
public string OrganizationIdentifier { get; private set; }
|
public string OrganizationIdentifier { get; private set; }
|
||||||
public bool SsoRequired { get; private set; }
|
|
||||||
public DateTime? VerifiedDate { get; private set; }
|
public DateTime? VerifiedDate { get; private set; }
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
using Bit.Core.Enums;
|
namespace Bit.Core.Models.Data.Organizations;
|
||||||
|
|
||||||
namespace Bit.Core.Models.Data.Organizations;
|
|
||||||
|
|
||||||
public class OrganizationDomainSsoDetailsData
|
public class OrganizationDomainSsoDetailsData
|
||||||
{
|
{
|
||||||
@ -9,8 +7,6 @@ public class OrganizationDomainSsoDetailsData
|
|||||||
public string DomainName { get; set; }
|
public string DomainName { get; set; }
|
||||||
public bool SsoAvailable { get; set; }
|
public bool SsoAvailable { get; set; }
|
||||||
public string OrganizationIdentifier { get; set; }
|
public string OrganizationIdentifier { get; set; }
|
||||||
public bool SsoRequired { get; set; }
|
|
||||||
public PolicyType? PolicyType { get; set; }
|
|
||||||
public DateTime? VerifiedDate { get; set; }
|
public DateTime? VerifiedDate { get; set; }
|
||||||
public bool OrganizationEnabled { get; set; }
|
public bool OrganizationEnabled { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
using System.Net.Mail;
|
using System.Net.Mail;
|
||||||
using AutoMapper;
|
using AutoMapper;
|
||||||
using Bit.Core.Enums;
|
|
||||||
using Bit.Core.Models.Data.Organizations;
|
using Bit.Core.Models.Data.Organizations;
|
||||||
using Bit.Core.Repositories;
|
using Bit.Core.Repositories;
|
||||||
using Bit.Infrastructure.EntityFramework.Models;
|
using Bit.Infrastructure.EntityFramework.Models;
|
||||||
@ -78,19 +77,14 @@ public class OrganizationDomainRepository : Repository<Core.Entities.Organizatio
|
|||||||
from od in o.Domains
|
from od in o.Domains
|
||||||
join s in dbContext.SsoConfigs on o.Id equals s.OrganizationId into sJoin
|
join s in dbContext.SsoConfigs on o.Id equals s.OrganizationId into sJoin
|
||||||
from s in sJoin.DefaultIfEmpty()
|
from s in sJoin.DefaultIfEmpty()
|
||||||
join p in dbContext.Policies.Where(p => p.Type == PolicyType.RequireSso) on o.Id
|
|
||||||
equals p.OrganizationId into pJoin
|
|
||||||
from p in pJoin.DefaultIfEmpty()
|
|
||||||
where od.DomainName == domainName && o.Enabled
|
where od.DomainName == domainName && o.Enabled
|
||||||
select new OrganizationDomainSsoDetailsData
|
select new OrganizationDomainSsoDetailsData
|
||||||
{
|
{
|
||||||
OrganizationId = o.Id,
|
OrganizationId = o.Id,
|
||||||
OrganizationName = o.Name,
|
OrganizationName = o.Name,
|
||||||
SsoAvailable = o.SsoConfigs.Any(sc => sc.Enabled),
|
SsoAvailable = o.SsoConfigs.Any(sc => sc.Enabled),
|
||||||
SsoRequired = p != null && p.Enabled,
|
|
||||||
OrganizationIdentifier = o.Identifier,
|
OrganizationIdentifier = o.Identifier,
|
||||||
VerifiedDate = od.VerifiedDate,
|
VerifiedDate = od.VerifiedDate,
|
||||||
PolicyType = p.Type,
|
|
||||||
DomainName = od.DomainName
|
DomainName = od.DomainName
|
||||||
})
|
})
|
||||||
.AsNoTracking()
|
.AsNoTracking()
|
||||||
|
@ -12,20 +12,15 @@ BEGIN
|
|||||||
O.Id AS OrganizationId,
|
O.Id AS OrganizationId,
|
||||||
O.[Name] AS OrganizationName,
|
O.[Name] AS OrganizationName,
|
||||||
S.Enabled AS SsoAvailable,
|
S.Enabled AS SsoAvailable,
|
||||||
P.Enabled AS SsoRequired,
|
|
||||||
O.Identifier AS OrganizationIdentifier,
|
O.Identifier AS OrganizationIdentifier,
|
||||||
OD.VerifiedDate,
|
OD.VerifiedDate,
|
||||||
P.[Type] AS PolicyType,
|
|
||||||
OD.DomainName
|
OD.DomainName
|
||||||
FROM
|
FROM
|
||||||
[dbo].[OrganizationView] O
|
[dbo].[OrganizationView] O
|
||||||
INNER JOIN [dbo].[OrganizationDomainView] OD
|
INNER JOIN [dbo].[OrganizationDomainView] OD
|
||||||
ON O.Id = OD.OrganizationId
|
ON O.Id = OD.OrganizationId
|
||||||
LEFT JOIN [dbo].[PolicyView] P
|
|
||||||
ON O.Id = P.OrganizationId
|
|
||||||
LEFT JOIN [dbo].[Ssoconfig] S
|
LEFT JOIN [dbo].[Ssoconfig] S
|
||||||
ON O.Id = S.OrganizationId
|
ON O.Id = S.OrganizationId
|
||||||
WHERE OD.DomainName = @Domain
|
WHERE OD.DomainName = @Domain
|
||||||
AND O.Enabled = 1
|
AND O.Enabled = 1
|
||||||
AND (P.Id is NULL OR (P.Id IS NOT NULL AND P.[Type] = 4)) -- SSO Type
|
|
||||||
END
|
END
|
@ -0,0 +1,26 @@
|
|||||||
|
CREATE OR ALTER PROCEDURE [dbo].[OrganizationDomainSsoDetails_ReadByEmail]
|
||||||
|
@Email NVARCHAR(256)
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
DECLARE @Domain NVARCHAR(256)
|
||||||
|
|
||||||
|
SELECT @Domain = SUBSTRING(@Email, CHARINDEX( '@', @Email) + 1, LEN(@Email))
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
O.Id AS OrganizationId,
|
||||||
|
O.[Name] AS OrganizationName,
|
||||||
|
S.Enabled AS SsoAvailable,
|
||||||
|
O.Identifier AS OrganizationIdentifier,
|
||||||
|
OD.VerifiedDate,
|
||||||
|
OD.DomainName
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationView] O
|
||||||
|
INNER JOIN [dbo].[OrganizationDomainView] OD
|
||||||
|
ON O.Id = OD.OrganizationId
|
||||||
|
LEFT JOIN [dbo].[Ssoconfig] S
|
||||||
|
ON O.Id = S.OrganizationId
|
||||||
|
WHERE OD.DomainName = @Domain
|
||||||
|
AND O.Enabled = 1
|
||||||
|
END
|
Loading…
x
Reference in New Issue
Block a user