1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00

org totp and storage flags

This commit is contained in:
Kyle Spearrin 2017-07-07 14:08:30 -04:00
parent 43262e577c
commit fbc189544b
20 changed files with 97 additions and 17 deletions

View File

@ -54,14 +54,15 @@ namespace Bit.Api.Controllers
[HttpGet("{id}/admin")] [HttpGet("{id}/admin")]
public async Task<LoginResponseModel> GetAdmin(string id) public async Task<LoginResponseModel> GetAdmin(string id)
{ {
var login = await _cipherRepository.GetByIdAsync(new Guid(id)); var userId = _userService.GetProperUserId(User).Value;
var login = await _cipherRepository.GetByIdAsync(new Guid(id), userId);
if(login == null || !login.OrganizationId.HasValue || if(login == null || !login.OrganizationId.HasValue ||
!_currentContext.OrganizationAdmin(login.OrganizationId.Value)) !_currentContext.OrganizationAdmin(login.OrganizationId.Value))
{ {
throw new NotFoundException(); throw new NotFoundException();
} }
var response = new LoginResponseModel(login, _globalSettings); var response = new LoginResponseModel(login, _globalSettings, login.OrganizationUseTotp);
return response; return response;
} }
@ -97,7 +98,7 @@ namespace Bit.Api.Controllers
var userId = _userService.GetProperUserId(User).Value; var userId = _userService.GetProperUserId(User).Value;
await _cipherService.SaveAsync(login, userId, true); await _cipherService.SaveAsync(login, userId, true);
var response = new LoginResponseModel(login, _globalSettings); var response = new LoginResponseModel(login, _globalSettings, false);
return response; return response;
} }
@ -129,17 +130,17 @@ namespace Bit.Api.Controllers
[HttpPost("{id}/admin")] [HttpPost("{id}/admin")]
public async Task<LoginResponseModel> PutAdmin(string id, [FromBody]LoginRequestModel model) public async Task<LoginResponseModel> PutAdmin(string id, [FromBody]LoginRequestModel model)
{ {
var login = await _cipherRepository.GetByIdAsync(new Guid(id)); var userId = _userService.GetProperUserId(User).Value;
var login = await _cipherRepository.GetByIdAsync(new Guid(id), userId);
if(login == null || !login.OrganizationId.HasValue || if(login == null || !login.OrganizationId.HasValue ||
!_currentContext.OrganizationAdmin(login.OrganizationId.Value)) !_currentContext.OrganizationAdmin(login.OrganizationId.Value))
{ {
throw new NotFoundException(); throw new NotFoundException();
} }
var userId = _userService.GetProperUserId(User).Value;
await _cipherService.SaveAsync(model.ToCipher(login), userId, true); await _cipherService.SaveAsync(model.ToCipher(login), userId, true);
var response = new LoginResponseModel(login, _globalSettings); var response = new LoginResponseModel(login, _globalSettings, login.OrganizationUseTotp);
return response; return response;
} }

View File

@ -48,11 +48,13 @@ namespace Bit.Core.Models.Api
FolderId = cipher.FolderId?.ToString(); FolderId = cipher.FolderId?.ToString();
Favorite = cipher.Favorite; Favorite = cipher.Favorite;
Edit = cipher.Edit; Edit = cipher.Edit;
OrganizationUseTotp = cipher.OrganizationUseTotp;
} }
public string FolderId { get; set; } public string FolderId { get; set; }
public bool Favorite { get; set; } public bool Favorite { get; set; }
public bool Edit { get; set; } public bool Edit { get; set; }
public bool OrganizationUseTotp { get; set; }
} }
public class CipherDetailsResponseModel : CipherResponseModel public class CipherDetailsResponseModel : CipherResponseModel

View File

@ -7,7 +7,7 @@ namespace Bit.Core.Models.Api
{ {
public class LoginResponseModel : ResponseModel public class LoginResponseModel : ResponseModel
{ {
public LoginResponseModel(Cipher cipher, GlobalSettings globalSettings, string obj = "login") public LoginResponseModel(Cipher cipher, GlobalSettings globalSettings, bool orgUseTotp, string obj = "login")
: base(obj) : base(obj)
{ {
if(cipher == null) if(cipher == null)
@ -32,11 +32,12 @@ namespace Bit.Core.Models.Api
Totp = data.Totp; Totp = data.Totp;
RevisionDate = cipher.RevisionDate; RevisionDate = cipher.RevisionDate;
Edit = true; Edit = true;
OrganizationUseTotp = orgUseTotp;
Attachments = AttachmentResponseModel.FromCipher(cipher, globalSettings); Attachments = AttachmentResponseModel.FromCipher(cipher, globalSettings);
} }
public LoginResponseModel(CipherDetails cipher, GlobalSettings globalSettings, string obj = "login") public LoginResponseModel(CipherDetails cipher, GlobalSettings globalSettings, string obj = "login")
: this(cipher as Cipher, globalSettings, obj) : this(cipher as Cipher, globalSettings, cipher.OrganizationUseTotp, obj)
{ {
FolderId = cipher.FolderId?.ToString(); FolderId = cipher.FolderId?.ToString();
Favorite = cipher.Favorite; Favorite = cipher.Favorite;
@ -48,6 +49,7 @@ namespace Bit.Core.Models.Api
public string FolderId { get; set; } public string FolderId { get; set; }
public bool Favorite { get; set; } public bool Favorite { get; set; }
public bool Edit { get; set; } public bool Edit { get; set; }
public bool OrganizationUseTotp { get; set; }
public string Name { get; set; } public string Name { get; set; }
public string Uri { get; set; } public string Uri { get; set; }
public string Username { get; set; } public string Username { get; set; }

View File

@ -12,8 +12,10 @@ namespace Bit.Core.Models.Api
Name = organization.Name; Name = organization.Name;
UseGroups = organization.UseGroups; UseGroups = organization.UseGroups;
UseDirectory = organization.UseDirectory; UseDirectory = organization.UseDirectory;
UseTotp = organization.UseTotp;
Seats = organization.Seats; Seats = organization.Seats;
MaxCollections = organization.MaxCollections; MaxCollections = organization.MaxCollections;
MaxStorageGb = organization.MaxStorageGb;
Key = organization.Key; Key = organization.Key;
Status = organization.Status; Status = organization.Status;
Type = organization.Type; Type = organization.Type;
@ -24,8 +26,10 @@ namespace Bit.Core.Models.Api
public string Name { get; set; } public string Name { get; set; }
public bool UseGroups { get; set; } public bool UseGroups { get; set; }
public bool UseDirectory { get; set; } public bool UseDirectory { get; set; }
public bool UseTotp { get; set; }
public int Seats { get; set; } public int Seats { get; set; }
public int MaxCollections { get; set; } public int MaxCollections { get; set; }
public short? MaxStorageGb { get; set; }
public string Key { get; set; } public string Key { get; set; }
public OrganizationUserStatusType Status { get; set; } public OrganizationUserStatusType Status { get; set; }
public OrganizationUserType Type { get; set; } public OrganizationUserType Type { get; set; }

View File

@ -8,5 +8,6 @@ namespace Core.Models.Data
public Guid? FolderId { get; set; } public Guid? FolderId { get; set; }
public bool Favorite { get; set; } public bool Favorite { get; set; }
public bool Edit { get; set; } public bool Edit { get; set; }
public bool OrganizationUseTotp { get; set; }
} }
} }

View File

@ -9,8 +9,10 @@ namespace Bit.Core.Models.Data
public string Name { get; set; } public string Name { get; set; }
public bool UseGroups { get; set; } public bool UseGroups { get; set; }
public bool UseDirectory { get; set; } public bool UseDirectory { get; set; }
public bool UseTotp { get; set; }
public int Seats { get; set; } public int Seats { get; set; }
public int MaxCollections { get; set; } public int MaxCollections { get; set; }
public short? MaxStorageGb { get; set; }
public string Key { get; set; } public string Key { get; set; }
public Enums.OrganizationUserStatusType Status { get; set; } public Enums.OrganizationUserStatusType Status { get; set; }
public Enums.OrganizationUserType Type { get; set; } public Enums.OrganizationUserType Type { get; set; }

View File

@ -13,6 +13,8 @@ namespace Bit.Core.Models.StaticStore
public short? MaxAdditionalSeats { get; set; } public short? MaxAdditionalSeats { get; set; }
public bool UseGroups { get; set; } public bool UseGroups { get; set; }
public bool UseDirectory { get; set; } public bool UseDirectory { get; set; }
public bool UseTotp { get; set; }
public short? MaxStorageGb { get; set; }
public decimal BasePrice { get; set; } public decimal BasePrice { get; set; }
public decimal SeatPrice { get; set; } public decimal SeatPrice { get; set; }
public short? MaxCollections { get; set; } public short? MaxCollections { get; set; }

View File

@ -16,6 +16,7 @@ namespace Bit.Core.Models.Table
public short? MaxCollections { get; set; } public short? MaxCollections { get; set; }
public bool UseGroups { get; set; } public bool UseGroups { get; set; }
public bool UseDirectory { get; set; } public bool UseDirectory { get; set; }
public bool UseTotp { get; set; }
public long? Storage { get; set; } public long? Storage { get; set; }
public short? MaxStorageGb { get; set; } public short? MaxStorageGb { get; set; }
public string StripeCustomerId { get; set; } public string StripeCustomerId { get; set; }

View File

@ -79,6 +79,12 @@ namespace Bit.Core.Services
{ {
await _cipherRepository.CreateAsync(cipher); await _cipherRepository.CreateAsync(cipher);
if(cipher.OrganizationId.HasValue)
{
var org = await _organizationRepository.GetByIdAsync(cipher.OrganizationId.Value);
cipher.OrganizationUseTotp = org.UseTotp;
}
// push // push
await _pushService.PushSyncCipherCreateAsync(cipher); await _pushService.PushSyncCipherCreateAsync(cipher);
} }

View File

@ -423,8 +423,10 @@ namespace Bit.Core.Services
PlanType = plan.Type, PlanType = plan.Type,
Seats = (short)(plan.BaseSeats + signup.AdditionalSeats), Seats = (short)(plan.BaseSeats + signup.AdditionalSeats),
MaxCollections = plan.MaxCollections, MaxCollections = plan.MaxCollections,
MaxStorageGb = plan.MaxStorageGb,
UseGroups = plan.UseGroups, UseGroups = plan.UseGroups,
UseDirectory = plan.UseDirectory, UseDirectory = plan.UseDirectory,
UseTotp = plan.UseTotp,
Plan = plan.Name, Plan = plan.Name,
StripeCustomerId = customer?.Id, StripeCustomerId = customer?.Id,
StripeSubscriptionId = subscription?.Id, StripeSubscriptionId = subscription?.Id,

View File

@ -1,6 +1,5 @@
using Bit.Core.Enums; using Bit.Core.Enums;
using Bit.Core.Models.StaticStore; using Bit.Core.Models.StaticStore;
using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Bit.Core.Utilities namespace Bit.Core.Utilities
@ -112,7 +111,9 @@ namespace Bit.Core.Utilities
StripePlanId = "personal-org-annually", StripePlanId = "personal-org-annually",
StripeSeatPlanId = "personal-org-seat-annually", StripeSeatPlanId = "personal-org-seat-annually",
UpgradeSortOrder = 1, UpgradeSortOrder = 1,
TrialPeriodDays = 7 TrialPeriodDays = 7,
UseTotp = true,
MaxStorageGb = 1
}, },
new Plan new Plan
{ {
@ -125,7 +126,9 @@ namespace Bit.Core.Utilities
StripePlanId = "teams-org-monthly", StripePlanId = "teams-org-monthly",
StripeSeatPlanId = "teams-org-seat-monthly", StripeSeatPlanId = "teams-org-seat-monthly",
UpgradeSortOrder = 2, UpgradeSortOrder = 2,
TrialPeriodDays = 7 TrialPeriodDays = 7,
UseTotp = true,
MaxStorageGb = 1
}, },
new Plan new Plan
{ {
@ -138,7 +141,9 @@ namespace Bit.Core.Utilities
StripePlanId = "teams-org-annually", StripePlanId = "teams-org-annually",
StripeSeatPlanId = "teams-org-seat-annually", StripeSeatPlanId = "teams-org-seat-annually",
UpgradeSortOrder = 2, UpgradeSortOrder = 2,
TrialPeriodDays = 7 TrialPeriodDays = 7,
UseTotp = true,
MaxStorageGb = 1
}, },
new Plan new Plan
{ {
@ -153,7 +158,9 @@ namespace Bit.Core.Utilities
UpgradeSortOrder = 3, UpgradeSortOrder = 3,
TrialPeriodDays = 7, TrialPeriodDays = 7,
UseGroups = true, UseGroups = true,
UseDirectory = true UseDirectory = true,
UseTotp = true,
MaxStorageGb = 1
}, },
new Plan new Plan
{ {
@ -168,7 +175,9 @@ namespace Bit.Core.Utilities
UpgradeSortOrder = 3, UpgradeSortOrder = 3,
TrialPeriodDays = 7, TrialPeriodDays = 7,
UseGroups = true, UseGroups = true,
UseDirectory = true UseDirectory = true,
UseTotp = true,
MaxStorageGb = 1
} }
}; };

View File

@ -6,7 +6,11 @@ SELECT
CASE CASE
WHEN C.[UserId] IS NOT NULL OR OU.[AccessAll] = 1 OR CU.[ReadOnly] = 0 OR G.[AccessAll] = 1 OR CG.[ReadOnly] = 0 THEN 1 WHEN C.[UserId] IS NOT NULL OR OU.[AccessAll] = 1 OR CU.[ReadOnly] = 0 OR G.[AccessAll] = 1 OR CG.[ReadOnly] = 0 THEN 1
ELSE 0 ELSE 0
END [Edit] END [Edit],
CASE
WHEN C.[UserId] IS NULL AND O.[UseTotp] = 1 THEN 1
ELSE 0
END [OrganizationUseTotp]
FROM FROM
[dbo].[CipherDetails](@UserId) C [dbo].[CipherDetails](@UserId) C
LEFT JOIN LEFT JOIN

View File

@ -11,7 +11,8 @@
@RevisionDate DATETIME2(7), @RevisionDate DATETIME2(7),
@FolderId UNIQUEIDENTIFIER, @FolderId UNIQUEIDENTIFIER,
@Favorite BIT, @Favorite BIT,
@Edit BIT -- not used @Edit BIT, -- not used
@OrganizationUseTotp BIT -- not used
AS AS
BEGIN BEGIN
SET NOCOUNT ON SET NOCOUNT ON

View File

@ -11,7 +11,8 @@
@RevisionDate DATETIME2(7), @RevisionDate DATETIME2(7),
@FolderId UNIQUEIDENTIFIER, @FolderId UNIQUEIDENTIFIER,
@Favorite BIT, @Favorite BIT,
@Edit BIT -- not used @Edit BIT, -- not used
@OrganizationUseTotp BIT -- not used
AS AS
BEGIN BEGIN
SET NOCOUNT ON SET NOCOUNT ON

View File

@ -9,6 +9,7 @@
@MaxCollections SMALLINT, @MaxCollections SMALLINT,
@UseGroups BIT, @UseGroups BIT,
@UseDirectory BIT, @UseDirectory BIT,
@UseTotp BIT,
@Storage BIGINT, @Storage BIGINT,
@MaxStorageGb SMALLINT, @MaxStorageGb SMALLINT,
@StripeCustomerId VARCHAR(50), @StripeCustomerId VARCHAR(50),
@ -32,6 +33,7 @@ BEGIN
[MaxCollections], [MaxCollections],
[UseGroups], [UseGroups],
[UseDirectory], [UseDirectory],
[UseTotp],
[Storage], [Storage],
[MaxStorageGb], [MaxStorageGb],
[StripeCustomerId], [StripeCustomerId],
@ -52,6 +54,7 @@ BEGIN
@MaxCollections, @MaxCollections,
@UseGroups, @UseGroups,
@UseDirectory, @UseDirectory,
@UseTotp,
@Storage, @Storage,
@MaxStorageGb, @MaxStorageGb,
@StripeCustomerId, @StripeCustomerId,

View File

@ -9,6 +9,7 @@
@MaxCollections SMALLINT, @MaxCollections SMALLINT,
@UseGroups BIT, @UseGroups BIT,
@UseDirectory BIT, @UseDirectory BIT,
@UseTotp BIT,
@Storage BIGINT, @Storage BIGINT,
@MaxStorageGb SMALLINT, @MaxStorageGb SMALLINT,
@StripeCustomerId VARCHAR(50), @StripeCustomerId VARCHAR(50),
@ -33,6 +34,7 @@ BEGIN
[MaxCollections] = @MaxCollections, [MaxCollections] = @MaxCollections,
[UseGroups] = @UseGroups, [UseGroups] = @UseGroups,
[UseDirectory] = @UseDirectory, [UseDirectory] = @UseDirectory,
[UseTotp] = @UseTotp,
[Storage] = @Storage, [Storage] = @Storage,
[MaxStorageGb] = @MaxStorageGb, [MaxStorageGb] = @MaxStorageGb,
[StripeCustomerId] = @StripeCustomerId, [StripeCustomerId] = @StripeCustomerId,

View File

@ -9,6 +9,7 @@
[MaxCollections] SMALLINT NULL, [MaxCollections] SMALLINT NULL,
[UseGroups] BIT NOT NULL, [UseGroups] BIT NOT NULL,
[UseDirectory] BIT NOT NULL, [UseDirectory] BIT NOT NULL,
[UseTotp] BIT NOT NULL,
[Storage] BIGINT NULL, [Storage] BIGINT NULL,
[MaxStorageGb] SMALLINT NULL, [MaxStorageGb] SMALLINT NULL,
[StripeCustomerId] VARCHAR (50) NULL, [StripeCustomerId] VARCHAR (50) NULL,

View File

@ -7,8 +7,10 @@ SELECT
O.[Enabled], O.[Enabled],
O.[UseGroups], O.[UseGroups],
O.[UseDirectory], O.[UseDirectory],
O.[UseTotp],
O.[Seats], O.[Seats],
O.[MaxCollections], O.[MaxCollections],
O.[MaxStorageGb],
OU.[Key], OU.[Key],
OU.[Status], OU.[Status],
OU.[Type] OU.[Type]

View File

@ -6,3 +6,14 @@ go
alter table [user] alter column [premium] BIT NOT NULL alter table [user] alter column [premium] BIT NOT NULL
go go
drop view [dbo].[UserView]
go
CREATE VIEW [dbo].[UserView]
AS
SELECT
*
FROM
[dbo].[User]
GO

View File

@ -0,0 +1,23 @@
alter table [organization] add [UseTotp] BIT NULL
go
-- all but free plans
update [organization]
set
[UseTotp] = CASE WHEN [organization].[plantype] != 0 THEN 1 ELSE 0 END,
[MaxStorageGb] = CASE WHEN [organization].[plantype] != 0 THEN 1 ELSE NULL END
go
alter table [organization] alter column [UseTotp] BIT NOT NULL
go
drop view [dbo].[OrganizationView]
go
CREATE VIEW [dbo].[OrganizationView]
AS
SELECT
*
FROM
[dbo].[Organization]
GO