mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 07:03:11 +08:00
Tools - Make Entities and Repositories nullable (#3313)
* support nullability in tools' entities and repositories * enables C# nullability checks in these files * includes documentation for affected files * refine documentation per code review * improve comments on SendFileData structure * fix ReferenceEvent.MaxAccessCount documentation * add value notation to SendFileData.FileName
This commit is contained in:
@@ -1,22 +1,64 @@
|
||||
using System.Text.Json.Serialization;
|
||||
#nullable enable
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Text.Json.Serialization;
|
||||
using static System.Text.Json.Serialization.JsonNumberHandling;
|
||||
|
||||
namespace Bit.Core.Tools.Models.Data;
|
||||
|
||||
/// <summary>
|
||||
/// A file secret being sent.
|
||||
/// </summary>
|
||||
public class SendFileData : SendData
|
||||
{
|
||||
/// <summary>
|
||||
/// Instantiates a <see cref="SendFileData"/>.
|
||||
/// </summary>
|
||||
public SendFileData() { }
|
||||
|
||||
public SendFileData(string name, string notes, string fileName)
|
||||
/// <inheritdoc cref="SendFileData()"/>
|
||||
/// <param name="name">Attached file name.</param>
|
||||
/// <param name="notes">User-provided private notes of the send.</param>
|
||||
/// <param name="fileName">Attached file name.</param>
|
||||
public SendFileData(string name, string? notes, string fileName)
|
||||
: base(name, notes)
|
||||
{
|
||||
FileName = fileName;
|
||||
}
|
||||
|
||||
// We serialize Size as a string since JSON (or Javascript) doesn't support full precision for long numbers
|
||||
[JsonNumberHandling(JsonNumberHandling.WriteAsString | JsonNumberHandling.AllowReadingFromString)]
|
||||
/// <summary>
|
||||
/// Size of the attached file in bytes.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Serialized as a string since JSON (or Javascript) doesn't support
|
||||
/// full precision for long numbers
|
||||
/// </remarks>
|
||||
[JsonNumberHandling(WriteAsString | AllowReadingFromString)]
|
||||
public long Size { get; set; }
|
||||
|
||||
public string Id { get; set; }
|
||||
public string FileName { get; set; }
|
||||
/// <summary>
|
||||
/// Uniquely identifies an uploaded file.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// Should contain <see langword="null" /> only when a file
|
||||
/// upload is pending. Should never contain null once the
|
||||
/// file upload completes.
|
||||
/// </value>
|
||||
[DisallowNull]
|
||||
public string? Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Attached file name.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// Should contain a non-empty string once the file upload completes.
|
||||
/// </value>
|
||||
public string FileName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// When true the uploaded file's length was confirmed within
|
||||
/// the expected tolerance and below the maximum supported
|
||||
/// file size.
|
||||
/// </summary>
|
||||
public bool Validated { get; set; } = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user