mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Created sso config service with save (#936)
This commit is contained in:
parent
692b3970af
commit
1c6c599b8d
@ -12,17 +12,20 @@ namespace Bit.Portal.Controllers
|
|||||||
public class SsoController : Controller
|
public class SsoController : Controller
|
||||||
{
|
{
|
||||||
private readonly ISsoConfigRepository _ssoConfigRepository;
|
private readonly ISsoConfigRepository _ssoConfigRepository;
|
||||||
|
private readonly ISsoConfigService _ssoConfigService;
|
||||||
private readonly EnterprisePortalCurrentContext _enterprisePortalCurrentContext;
|
private readonly EnterprisePortalCurrentContext _enterprisePortalCurrentContext;
|
||||||
private readonly II18nService _i18nService;
|
private readonly II18nService _i18nService;
|
||||||
private readonly GlobalSettings _globalSettings;
|
private readonly GlobalSettings _globalSettings;
|
||||||
|
|
||||||
public SsoController(
|
public SsoController(
|
||||||
ISsoConfigRepository ssoConfigRepository,
|
ISsoConfigRepository ssoConfigRepository,
|
||||||
|
ISsoConfigService ssoConfigService,
|
||||||
EnterprisePortalCurrentContext enterprisePortalCurrentContext,
|
EnterprisePortalCurrentContext enterprisePortalCurrentContext,
|
||||||
II18nService i18nService,
|
II18nService i18nService,
|
||||||
GlobalSettings globalSettings)
|
GlobalSettings globalSettings)
|
||||||
{
|
{
|
||||||
_ssoConfigRepository = ssoConfigRepository;
|
_ssoConfigRepository = ssoConfigRepository;
|
||||||
|
_ssoConfigService = ssoConfigService;
|
||||||
_enterprisePortalCurrentContext = enterprisePortalCurrentContext;
|
_enterprisePortalCurrentContext = enterprisePortalCurrentContext;
|
||||||
_i18nService = i18nService;
|
_i18nService = i18nService;
|
||||||
_globalSettings = globalSettings;
|
_globalSettings = globalSettings;
|
||||||
@ -74,16 +77,14 @@ namespace Bit.Portal.Controllers
|
|||||||
var ssoConfig = await _ssoConfigRepository.GetByOrganizationIdAsync(orgId.Value);
|
var ssoConfig = await _ssoConfigRepository.GetByOrganizationIdAsync(orgId.Value);
|
||||||
if (ssoConfig == null)
|
if (ssoConfig == null)
|
||||||
{
|
{
|
||||||
ssoConfig = model.ToSsoConfig();
|
ssoConfig = model.ToSsoConfig(orgId.GetValueOrDefault());
|
||||||
ssoConfig.OrganizationId = orgId.GetValueOrDefault();
|
|
||||||
await _ssoConfigRepository.CreateAsync(ssoConfig);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ssoConfig = model.ToSsoConfig(ssoConfig);
|
ssoConfig = model.ToSsoConfig(ssoConfig);
|
||||||
await _ssoConfigRepository.ReplaceAsync(ssoConfig);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await _ssoConfigService.SaveAsync(ssoConfig);
|
||||||
return View(model);
|
return View(model);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -55,9 +55,9 @@ namespace Bit.Portal.Models
|
|||||||
public List<SelectListItem> SigningBehaviors { get; set; }
|
public List<SelectListItem> SigningBehaviors { get; set; }
|
||||||
public List<SelectListItem> SigningAlgorithms { get; set; }
|
public List<SelectListItem> SigningAlgorithms { get; set; }
|
||||||
|
|
||||||
public SsoConfig ToSsoConfig()
|
public SsoConfig ToSsoConfig(Guid organizationId)
|
||||||
{
|
{
|
||||||
return ToSsoConfig(new SsoConfig());
|
return ToSsoConfig(new SsoConfig { OrganizationId = organizationId });
|
||||||
}
|
}
|
||||||
|
|
||||||
public SsoConfig ToSsoConfig(SsoConfig existingConfig)
|
public SsoConfig ToSsoConfig(SsoConfig existingConfig)
|
||||||
|
@ -57,17 +57,5 @@ namespace Bit.Core.Repositories.SqlServer
|
|||||||
return results.ToList();
|
return results.ToList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public override async Task CreateAsync(SsoConfig obj)
|
|
||||||
{
|
|
||||||
obj.CreationDate = obj.RevisionDate = DateTime.UtcNow;
|
|
||||||
await base.CreateAsync(obj);
|
|
||||||
}
|
|
||||||
|
|
||||||
public override async Task ReplaceAsync(SsoConfig obj)
|
|
||||||
{
|
|
||||||
obj.RevisionDate = DateTime.UtcNow;
|
|
||||||
await base.ReplaceAsync(obj);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10
src/Core/Services/ISsoConfigService.cs
Normal file
10
src/Core/Services/ISsoConfigService.cs
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
using System.Threading.Tasks;
|
||||||
|
using Bit.Core.Models.Table;
|
||||||
|
|
||||||
|
namespace Bit.Core.Services
|
||||||
|
{
|
||||||
|
public interface ISsoConfigService
|
||||||
|
{
|
||||||
|
Task SaveAsync(SsoConfig config);
|
||||||
|
}
|
||||||
|
}
|
29
src/Core/Services/Implementations/SsoConfigService.cs
Normal file
29
src/Core/Services/Implementations/SsoConfigService.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Bit.Core.Models.Table;
|
||||||
|
using Bit.Core.Repositories;
|
||||||
|
|
||||||
|
namespace Bit.Core.Services
|
||||||
|
{
|
||||||
|
public class SsoConfigService : ISsoConfigService
|
||||||
|
{
|
||||||
|
private readonly ISsoConfigRepository _ssoConfigRepository;
|
||||||
|
|
||||||
|
public SsoConfigService(
|
||||||
|
ISsoConfigRepository ssoConfigRepository)
|
||||||
|
{
|
||||||
|
_ssoConfigRepository = ssoConfigRepository;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task SaveAsync(SsoConfig config)
|
||||||
|
{
|
||||||
|
var now = DateTime.UtcNow;
|
||||||
|
config.RevisionDate = now;
|
||||||
|
if (config.Id == default)
|
||||||
|
{
|
||||||
|
config.CreationDate = now;
|
||||||
|
}
|
||||||
|
await _ssoConfigRepository.UpsertAsync(config);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -112,6 +112,7 @@ namespace Bit.Core.Utilities
|
|||||||
services.AddScoped<Services.IEventService, EventService>();
|
services.AddScoped<Services.IEventService, EventService>();
|
||||||
services.AddSingleton<IDeviceService, DeviceService>();
|
services.AddSingleton<IDeviceService, DeviceService>();
|
||||||
services.AddSingleton<IAppleIapService, AppleIapService>();
|
services.AddSingleton<IAppleIapService, AppleIapService>();
|
||||||
|
services.AddSingleton<ISsoConfigService, SsoConfigService>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void AddDefaultServices(this IServiceCollection services, GlobalSettings globalSettings)
|
public static void AddDefaultServices(this IServiceCollection services, GlobalSettings globalSettings)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user