mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.3 KiB
81 lines
2.3 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Squidex.Infrastructure
|
|
{
|
|
[Equals(DoNotAddEqualityOperators = true)]
|
|
public sealed class RefToken
|
|
{
|
|
public string Type { get; }
|
|
|
|
public string Identifier { get; }
|
|
|
|
[IgnoreDuringEquals]
|
|
public bool IsClient
|
|
{
|
|
get { return string.Equals(Type, RefTokenType.Client, StringComparison.OrdinalIgnoreCase); }
|
|
}
|
|
|
|
[IgnoreDuringEquals]
|
|
public bool IsSubject
|
|
{
|
|
get { return string.Equals(Type, RefTokenType.Subject, StringComparison.OrdinalIgnoreCase); }
|
|
}
|
|
|
|
public RefToken(string type, string identifier)
|
|
{
|
|
Guard.NotNullOrEmpty(type, nameof(type));
|
|
Guard.NotNullOrEmpty(identifier, nameof(identifier));
|
|
|
|
Type = type.ToLowerInvariant();
|
|
|
|
Identifier = identifier;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{Type}:{Identifier}";
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return (Type.GetHashCode() * 397) ^ Identifier.GetHashCode();
|
|
}
|
|
|
|
public static bool TryParse(string value, [MaybeNullWhen(false)] out RefToken result)
|
|
{
|
|
if (value != null)
|
|
{
|
|
var idx = value.IndexOf(':');
|
|
|
|
if (idx > 0 && idx < value.Length - 1)
|
|
{
|
|
result = new RefToken(value.Substring(0, idx), value.Substring(idx + 1));
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
result = null!;
|
|
|
|
return false;
|
|
}
|
|
|
|
public static RefToken Parse(string value)
|
|
{
|
|
if (!TryParse(value, out var result))
|
|
{
|
|
throw new ArgumentException("Ref token must have more than 2 parts divided by colon.", nameof(value));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
|