mirror of
https://github.com/bitwarden/server.git
synced 2025-04-09 23:28:12 -05:00
97 lines
3.3 KiB
C#
97 lines
3.3 KiB
C#
using System.Data;
|
|
using Bit.Core.Auth.Entities;
|
|
using Bit.Core.Auth.Models.Data;
|
|
using Bit.Core.Auth.Repositories;
|
|
using Bit.Core.Auth.UserFeatures.UserKey;
|
|
using Bit.Core.Settings;
|
|
using Bit.Core.Utilities;
|
|
using Bit.Infrastructure.Dapper.Repositories;
|
|
using Dapper;
|
|
using Microsoft.Data.SqlClient;
|
|
|
|
#nullable enable
|
|
|
|
|
|
namespace Bit.Infrastructure.Dapper.Auth.Repositories;
|
|
|
|
public class WebAuthnCredentialRepository : Repository<WebAuthnCredential, Guid>, IWebAuthnCredentialRepository
|
|
{
|
|
public WebAuthnCredentialRepository(GlobalSettings globalSettings)
|
|
: this(globalSettings.SqlServer.ConnectionString, globalSettings.SqlServer.ReadOnlyConnectionString)
|
|
{ }
|
|
|
|
public WebAuthnCredentialRepository(string connectionString, string readOnlyConnectionString)
|
|
: base(connectionString, readOnlyConnectionString)
|
|
{ }
|
|
|
|
public async Task<WebAuthnCredential?> GetByIdAsync(Guid id, Guid userId)
|
|
{
|
|
using (var connection = new SqlConnection(ConnectionString))
|
|
{
|
|
var results = await connection.QueryAsync<WebAuthnCredential>(
|
|
$"[{Schema}].[{Table}_ReadByIdUserId]",
|
|
new { Id = id, UserId = userId },
|
|
commandType: CommandType.StoredProcedure);
|
|
|
|
return results.FirstOrDefault();
|
|
}
|
|
}
|
|
|
|
public async Task<ICollection<WebAuthnCredential>> GetManyByUserIdAsync(Guid userId)
|
|
{
|
|
using (var connection = new SqlConnection(ConnectionString))
|
|
{
|
|
var results = await connection.QueryAsync<WebAuthnCredential>(
|
|
$"[{Schema}].[{Table}_ReadByUserId]",
|
|
new { UserId = userId },
|
|
commandType: CommandType.StoredProcedure);
|
|
|
|
return results.ToList();
|
|
}
|
|
}
|
|
|
|
public async Task<bool> UpdateAsync(WebAuthnCredential credential)
|
|
{
|
|
using var connection = new SqlConnection(ConnectionString);
|
|
var affectedRows = await connection.ExecuteAsync(
|
|
$"[{Schema}].[{Table}_Update]",
|
|
credential,
|
|
commandType: CommandType.StoredProcedure);
|
|
|
|
return affectedRows > 0;
|
|
}
|
|
|
|
public UpdateEncryptedDataForKeyRotation UpdateKeysForRotationAsync(Guid userId, IEnumerable<WebAuthnLoginRotateKeyData> credentials)
|
|
{
|
|
return async (SqlConnection connection, SqlTransaction transaction) =>
|
|
{
|
|
const string sql = @"
|
|
UPDATE WC
|
|
SET
|
|
WC.[EncryptedPublicKey] = UW.[encryptedPublicKey],
|
|
WC.[EncryptedUserKey] = UW.[encryptedUserKey]
|
|
FROM
|
|
[dbo].[WebAuthnCredential] WC
|
|
INNER JOIN
|
|
OPENJSON(@JsonCredentials)
|
|
WITH (
|
|
id UNIQUEIDENTIFIER,
|
|
encryptedPublicKey NVARCHAR(MAX),
|
|
encryptedUserKey NVARCHAR(MAX)
|
|
) UW
|
|
ON UW.id = WC.Id
|
|
WHERE
|
|
WC.[UserId] = @UserId";
|
|
|
|
var jsonCredentials = CoreHelpers.ClassToJsonData(credentials);
|
|
|
|
await connection.ExecuteAsync(
|
|
sql,
|
|
new { UserId = userId, JsonCredentials = jsonCredentials },
|
|
transaction: transaction,
|
|
commandType: CommandType.Text);
|
|
};
|
|
}
|
|
|
|
}
|