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

database adjustments and storage for attachments

This commit is contained in:
Kyle Spearrin 2017-06-30 14:41:57 -04:00
parent 6cea556ae1
commit 284078e946
17 changed files with 178 additions and 23 deletions

View File

@ -9,8 +9,6 @@ using Bit.Core.Exceptions;
using Bit.Core.Services; using Bit.Core.Services;
using Bit.Core; using Bit.Core;
using Bit.Api.Utilities; using Bit.Api.Utilities;
using Bit.Core.Models.Data;
using Newtonsoft.Json;
namespace Bit.Api.Controllers namespace Bit.Api.Controllers
{ {
@ -240,7 +238,7 @@ namespace Bit.Api.Controllers
await Request.GetFileAsync(async (stream, fileName) => await Request.GetFileAsync(async (stream, fileName) =>
{ {
await _cipherService.AttachAsync(cipher, stream, fileName, Request.ContentLength.GetValueOrDefault(0), userId); await _cipherService.CreateAttachmentAsync(cipher, stream, fileName, Request.ContentLength.GetValueOrDefault(0), userId);
}); });
} }

View File

@ -1,4 +1,5 @@
using System; using Newtonsoft.Json;
using System;
namespace Bit.Core.Models.Data namespace Bit.Core.Models.Data
{ {
@ -12,7 +13,23 @@ namespace Bit.Core.Models.Data
public class MetaData public class MetaData
{ {
public long Size { get; set; } private long _size;
[JsonIgnore]
public long Size
{
get { return _size; }
set { _size = value; }
}
// We serialize Size as a string since JSON (or Javascript) doesn't support full precision for long numbers
[JsonProperty("Size")]
public string SizeString
{
get { return _size.ToString(); }
set { _size = Convert.ToInt64(value); }
}
public string FileName { get; set; } public string FileName { get; set; }
} }
} }

View File

@ -16,6 +16,8 @@ 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 long? Storage { get; set; }
public short? MaxStorageGb { get; set; }
public string StripeCustomerId { get; set; } public string StripeCustomerId { get; set; }
public string StripeSubscriptionId { get; set; } public string StripeSubscriptionId { get; set; }
public bool Enabled { get; set; } = true; public bool Enabled { get; set; } = true;
@ -29,5 +31,21 @@ namespace Bit.Core.Models.Table
Id = CoreHelpers.GenerateComb(); Id = CoreHelpers.GenerateComb();
} }
} }
public long StorageBytesRemaining()
{
if(!MaxStorageGb.HasValue)
{
return 0;
}
var maxStorageBytes = MaxStorageGb.Value * 1073741824L;
if(!Storage.HasValue)
{
return maxStorageBytes;
}
return maxStorageBytes - Storage.Value;
}
} }
} }

View File

@ -27,6 +27,9 @@ namespace Bit.Core.Models.Table
public string Key { get; set; } public string Key { get; set; }
public string PublicKey { get; set; } public string PublicKey { get; set; }
public string PrivateKey { get; set; } public string PrivateKey { get; set; }
public bool Premium { get; set; }
public long? Storage { get; set; }
public short? MaxStorageGb { get; set; }
public DateTime CreationDate { get; internal set; } = DateTime.UtcNow; public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow; public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow;
@ -99,5 +102,21 @@ namespace Bit.Core.Models.Table
return providers[provider]; return providers[provider];
} }
public long StorageBytesRemaining()
{
if(!MaxStorageGb.HasValue)
{
return 0;
}
var maxStorageBytes = MaxStorageGb.Value * 1073741824L;
if(!Storage.HasValue)
{
return maxStorageBytes;
}
return maxStorageBytes - Storage.Value;
}
} }
} }

View File

@ -11,7 +11,7 @@ namespace Bit.Core.Services
{ {
Task SaveAsync(Cipher cipher, Guid savingUserId, bool orgAdmin = false); Task SaveAsync(Cipher cipher, Guid savingUserId, bool orgAdmin = false);
Task SaveDetailsAsync(CipherDetails cipher, Guid savingUserId); Task SaveDetailsAsync(CipherDetails cipher, Guid savingUserId);
Task AttachAsync(Cipher cipher, Stream stream, string fileName, long requestLength, Guid savingUserId, Task CreateAttachmentAsync(Cipher cipher, Stream stream, string fileName, long requestLength, Guid savingUserId,
bool orgAdmin = false); bool orgAdmin = false);
Task DeleteAsync(Cipher cipher, Guid deletingUserId, bool orgAdmin = false); Task DeleteAsync(Cipher cipher, Guid deletingUserId, bool orgAdmin = false);
Task DeleteManyAsync(IEnumerable<Guid> cipherIds, Guid deletingUserId); Task DeleteManyAsync(IEnumerable<Guid> cipherIds, Guid deletingUserId);

View File

@ -92,7 +92,7 @@ namespace Bit.Core.Services
} }
} }
public async Task AttachAsync(Cipher cipher, Stream stream, string fileName, long requestLength, public async Task CreateAttachmentAsync(Cipher cipher, Stream stream, string fileName, long requestLength,
Guid savingUserId, bool orgAdmin = false) Guid savingUserId, bool orgAdmin = false)
{ {
if(!orgAdmin && !(await UserCanEditAsync(cipher, savingUserId))) if(!orgAdmin && !(await UserCanEditAsync(cipher, savingUserId)))
@ -102,30 +102,55 @@ namespace Bit.Core.Services
if(requestLength < 1) if(requestLength < 1)
{ {
throw new BadRequestException("No data."); throw new BadRequestException("No data to attach.");
} }
// TODO: check available space against requestLength var storageBytesRemaining = 0L;
if(cipher.UserId.HasValue)
{
var user = await _userRepository.GetByIdAsync(cipher.UserId.Value);
storageBytesRemaining = user.StorageBytesRemaining();
}
else if(cipher.OrganizationId.HasValue)
{
var org = await _organizationRepository.GetByIdAsync(cipher.OrganizationId.Value);
storageBytesRemaining = org.StorageBytesRemaining();
}
if(storageBytesRemaining < requestLength)
{
throw new BadRequestException("Not enough storage available.");
}
var attachmentId = Utilities.CoreHelpers.SecureRandomString(32, upper: false, special: false); var attachmentId = Utilities.CoreHelpers.SecureRandomString(32, upper: false, special: false);
await _attachmentStorageService.UploadAttachmentAsync(stream, $"{cipher.Id}/{attachmentId}"); var storageId = $"{cipher.Id}/{attachmentId}";
await _attachmentStorageService.UploadAttachmentAsync(stream, storageId);
var data = new CipherAttachment.MetaData try
{ {
FileName = fileName, var data = new CipherAttachment.MetaData
Size = stream.Length {
}; FileName = fileName,
Size = stream.Length
};
var attachment = new CipherAttachment var attachment = new CipherAttachment
{
Id = cipher.Id,
UserId = cipher.UserId,
OrganizationId = cipher.OrganizationId,
AttachmentId = attachmentId,
AttachmentData = JsonConvert.SerializeObject(data)
};
await _cipherRepository.UpdateAttachmentAsync(attachment);
}
catch
{ {
Id = cipher.Id, // Clean up since this is not transactional
UserId = cipher.UserId, await _attachmentStorageService.DeleteAttachmentAsync(storageId);
OrganizationId = cipher.OrganizationId, throw;
AttachmentId = attachmentId, }
AttachmentData = JsonConvert.SerializeObject(data)
};
await _cipherRepository.UpdateAttachmentAsync(attachment);
// push // push
await _pushService.PushSyncCipherUpdateAsync(cipher); await _pushService.PushSyncCipherUpdateAsync(cipher);

View File

@ -201,5 +201,10 @@
<Build Include="dbo\User Defined Types\GuidIdArray.sql" /> <Build Include="dbo\User Defined Types\GuidIdArray.sql" />
<Build Include="dbo\User Defined Types\SelectionReadOnlyArray.sql" /> <Build Include="dbo\User Defined Types\SelectionReadOnlyArray.sql" />
<Build Include="dbo\Stored Procedures\Cipher_UpdateAttachment.sql" /> <Build Include="dbo\Stored Procedures\Cipher_UpdateAttachment.sql" />
<Build Include="dbo\Stored Procedures\Organization_UpdateStorage.sql" />
<Build Include="dbo\Stored Procedures\User_UpdateStorage.sql" />
</ItemGroup>
<ItemGroup>
<RefactorLog Include="Sql.refactorlog" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -10,6 +10,7 @@ BEGIN
DECLARE @AttachmentIdKey VARCHAR(50) = CONCAT('"', @AttachmentId, '"') DECLARE @AttachmentIdKey VARCHAR(50) = CONCAT('"', @AttachmentId, '"')
DECLARE @AttachmentIdPath VARCHAR(50) = CONCAT('$.', @AttachmentIdKey) DECLARE @AttachmentIdPath VARCHAR(50) = CONCAT('$.', @AttachmentIdKey)
DECLARE @Size BIGINT = CAST(JSON_VALUE(@AttachmentData, '$.Size') AS BIGINT)
UPDATE UPDATE
[dbo].[Cipher] [dbo].[Cipher]
@ -26,10 +27,12 @@ BEGIN
IF @OrganizationId IS NOT NULL IF @OrganizationId IS NOT NULL
BEGIN BEGIN
EXEC [dbo].[Organization_UpdateStorage] @OrganizationId, @Size
EXEC [dbo].[User_BumpAccountRevisionDateByOrganizationId] @OrganizationId EXEC [dbo].[User_BumpAccountRevisionDateByOrganizationId] @OrganizationId
END END
ELSE IF @UserId IS NOT NULL ELSE IF @UserId IS NOT NULL
BEGIN BEGIN
EXEC [dbo].[User_UpdateStorage] @UserId, @Size
EXEC [dbo].[User_BumpAccountRevisionDate] @UserId EXEC [dbo].[User_BumpAccountRevisionDate] @UserId
END END
END END

View File

@ -9,6 +9,8 @@
@MaxCollections SMALLINT, @MaxCollections SMALLINT,
@UseGroups BIT, @UseGroups BIT,
@UseDirectory BIT, @UseDirectory BIT,
@Storage BIGINT,
@MaxStorageGb SMALLINT,
@StripeCustomerId VARCHAR(50), @StripeCustomerId VARCHAR(50),
@StripeSubscriptionId VARCHAR(50), @StripeSubscriptionId VARCHAR(50),
@Enabled BIT, @Enabled BIT,
@ -30,6 +32,8 @@ BEGIN
[MaxCollections], [MaxCollections],
[UseGroups], [UseGroups],
[UseDirectory], [UseDirectory],
[Storage],
[MaxStorageGb],
[StripeCustomerId], [StripeCustomerId],
[StripeSubscriptionId], [StripeSubscriptionId],
[Enabled], [Enabled],
@ -48,6 +52,8 @@ BEGIN
@MaxCollections, @MaxCollections,
@UseGroups, @UseGroups,
@UseDirectory, @UseDirectory,
@Storage,
@MaxStorageGb,
@StripeCustomerId, @StripeCustomerId,
@StripeSubscriptionId, @StripeSubscriptionId,
@Enabled, @Enabled,

View File

@ -9,6 +9,8 @@
@MaxCollections SMALLINT, @MaxCollections SMALLINT,
@UseGroups BIT, @UseGroups BIT,
@UseDirectory BIT, @UseDirectory BIT,
@Storage BIGINT,
@MaxStorageGb SMALLINT,
@StripeCustomerId VARCHAR(50), @StripeCustomerId VARCHAR(50),
@StripeSubscriptionId VARCHAR(50), @StripeSubscriptionId VARCHAR(50),
@Enabled BIT, @Enabled BIT,
@ -31,6 +33,8 @@ BEGIN
[MaxCollections] = @MaxCollections, [MaxCollections] = @MaxCollections,
[UseGroups] = @UseGroups, [UseGroups] = @UseGroups,
[UseDirectory] = @UseDirectory, [UseDirectory] = @UseDirectory,
[Storage] = @Storage,
[MaxStorageGb] = @MaxStorageGb,
[StripeCustomerId] = @StripeCustomerId, [StripeCustomerId] = @StripeCustomerId,
[StripeSubscriptionId] = @StripeSubscriptionId, [StripeSubscriptionId] = @StripeSubscriptionId,
[Enabled] = @Enabled, [Enabled] = @Enabled,

View File

@ -0,0 +1,16 @@
CREATE PROCEDURE [dbo].[Organization_UpdateStorage]
@Id UNIQUEIDENTIFIER,
@StorageIncrease BIGINT
AS
BEGIN
SET NOCOUNT ON
UPDATE
[dbo].[Organization]
SET
[Storage] = ISNULL([Storage], 0) + @StorageIncrease,
[RevisionDate] = GETUTCDATE()
WHERE
[Id] = @Id
END

View File

@ -15,6 +15,9 @@
@Key NVARCHAR(MAX), @Key NVARCHAR(MAX),
@PublicKey NVARCHAR(MAX), @PublicKey NVARCHAR(MAX),
@PrivateKey NVARCHAR(MAX), @PrivateKey NVARCHAR(MAX),
@Premium BIT,
@Storage BIGINT,
@MaxStorageGb SMALLINT,
@CreationDate DATETIME2(7), @CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7) @RevisionDate DATETIME2(7)
AS AS
@ -39,6 +42,9 @@ BEGIN
[Key], [Key],
[PublicKey], [PublicKey],
[PrivateKey], [PrivateKey],
[Premium],
[Storage],
[MaxStorageGb],
[CreationDate], [CreationDate],
[RevisionDate] [RevisionDate]
) )
@ -60,6 +66,9 @@ BEGIN
@Key, @Key,
@PublicKey, @PublicKey,
@PrivateKey, @PrivateKey,
@Premium,
@Storage,
@MaxStorageGb,
@CreationDate, @CreationDate,
@RevisionDate @RevisionDate
) )

View File

@ -15,6 +15,9 @@
@Key NVARCHAR(MAX), @Key NVARCHAR(MAX),
@PublicKey NVARCHAR(MAX), @PublicKey NVARCHAR(MAX),
@PrivateKey NVARCHAR(MAX), @PrivateKey NVARCHAR(MAX),
@Premium BIT,
@Storage BIGINT,
@MaxStorageGb SMALLINT,
@CreationDate DATETIME2(7), @CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7) @RevisionDate DATETIME2(7)
AS AS
@ -39,6 +42,9 @@ BEGIN
[Key] = @Key, [Key] = @Key,
[PublicKey] = @PublicKey, [PublicKey] = @PublicKey,
[PrivateKey] = @PrivateKey, [PrivateKey] = @PrivateKey,
[Premium] = @Premium,
[Storage] = @Storage,
[MaxStorageGb] = @MaxStorageGb,
[CreationDate] = @CreationDate, [CreationDate] = @CreationDate,
[RevisionDate] = @RevisionDate [RevisionDate] = @RevisionDate
WHERE WHERE

View File

@ -0,0 +1,16 @@
CREATE PROCEDURE [dbo].[User_UpdateStorage]
@Id UNIQUEIDENTIFIER,
@StorageIncrease BIGINT
AS
BEGIN
SET NOCOUNT ON
UPDATE
[dbo].[User]
SET
[Storage] = ISNULL([Storage], 0) + @StorageIncrease,
[RevisionDate] = GETUTCDATE()
WHERE
[Id] = @Id
END

View File

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

View File

@ -15,6 +15,9 @@
[Key] VARCHAR (MAX) NULL, [Key] VARCHAR (MAX) NULL,
[PublicKey] VARCHAR (MAX) NULL, [PublicKey] VARCHAR (MAX) NULL,
[PrivateKey] VARCHAR (MAX) NULL, [PrivateKey] VARCHAR (MAX) NULL,
[Premium] BIT NOT NULL,
[Storage] BIGINT NULL,
[MaxStorageGb] SMALLINT NULL,
[CreationDate] DATETIME2 (7) NOT NULL, [CreationDate] DATETIME2 (7) NOT NULL,
[RevisionDate] DATETIME2 (7) NOT NULL, [RevisionDate] DATETIME2 (7) NOT NULL,
CONSTRAINT [PK_User] PRIMARY KEY CLUSTERED ([Id] ASC) CONSTRAINT [PK_User] PRIMARY KEY CLUSTERED ([Id] ASC)

View File

@ -0,0 +1,8 @@
alter table [user] add [Premium] BIT NULL
go
update [user] set [premium] = 0
go
alter table [user] alter column [premium] BIT NOT NULL
go