feat(EnvelopeReceiverReadOnly): Created endpoint for ShowEnvelope view

This commit is contained in:
Developer 02
2024-10-04 11:28:52 +02:00
parent dc997d5ff2
commit bc6955055a
3 changed files with 38 additions and 18 deletions

View File

@@ -64,34 +64,34 @@ namespace EnvelopeGenerator.Extensions
return input.IndexOf('=') == -1; // No padding allowed except at the end
}
public static bool TryDecode(this string encoded, out string[] decoded)
public static bool TryDecode(this string encodedKey, out string[] decodedKeys)
{
if (!encoded.IsBase64String())
if (!encodedKey.IsBase64String())
{
decoded = Array.Empty<string>();
decodedKeys = Array.Empty<string>();
return false;
}
byte[] bytes = Convert.FromBase64String(encoded);
byte[] bytes = Convert.FromBase64String(encodedKey);
string decodedString = Encoding.UTF8.GetString(bytes);
decoded = decodedString.Split(new string[] { "::" }, StringSplitOptions.None);
decodedKeys = decodedString.Split(new string[] { "::" }, StringSplitOptions.None);
return true;
}
public static EncodeType GetEncodeType(this string[] decoded) => decoded.Length switch
public static EncodeType GetEncodeType(this string[] decodedKeys) => decoded.Length switch
{
2 => EncodeType.EnvelopeReceiver,
3 => long.TryParse(decoded[1], out var _) ? EncodeType.EnvelopeReceiverReadOnly : EncodeType.Undefined,
_ => EncodeType.Undefined,
};
public static (string? EnvelopeUuid, string? ReceiverSignature) ToEnvelopeReceiverId(this string[] decoded)
=> decoded.GetEncodeType() == EncodeType.EnvelopeReceiver
? (EnvelopeUuid: decoded[0], ReceiverSignature: decoded[1])
: throw new InvalidOperationException("Attempted to convert a decoded other than type EnvelopeReceiver to EnvelopeReceiver. ");
public static (string? EnvelopeUuid, string? ReceiverSignature) ParseEnvelopeReceiverId(this string[] decodedKeys)
=> decodedKeys.GetEncodeType() == EncodeType.EnvelopeReceiver
? (EnvelopeUuid: decodedKeys[0], ReceiverSignature: decodedKeys[1])
: throw new InvalidOperationException("Attempted to convert a decoded other than type EnvelopeReceiver to EnvelopeReceiver.");
public static long ToReadOnlyId(this string[] decoded)
=> decoded.GetEncodeType() == EncodeType.EnvelopeReceiverReadOnly
? long.Parse(decoded[1])
public static long ParseReadOnlyId(this string[] decodedKeys)
=> decodedKeys.GetEncodeType() == EncodeType.EnvelopeReceiverReadOnly
? long.Parse(decodedKeys[1])
: throw new InvalidOperationException("Attempted to convert a decoded other than type EnvelopeReceiver to EnvelopeReceiver. ");
/// <summary>