2020-06-12 23:13:21 +02:00
|
|
|
|
#nullable enable
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace PluralKit.Core
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Model for the `proxy_members` PL/pgSQL function in `functions.sql`
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ProxyMember
|
|
|
|
|
{
|
2020-06-14 21:37:04 +02:00
|
|
|
|
public MemberId Id { get; }
|
2020-06-13 00:42:25 +02:00
|
|
|
|
public IReadOnlyCollection<ProxyTag> ProxyTags { get; } = new ProxyTag[0];
|
|
|
|
|
public bool KeepProxy { get; }
|
2020-06-12 23:24:36 +02:00
|
|
|
|
|
2020-06-13 00:42:25 +02:00
|
|
|
|
public string? ServerName { get; }
|
|
|
|
|
public string? DisplayName { get; }
|
|
|
|
|
public string Name { get; } = "";
|
2020-06-12 23:24:36 +02:00
|
|
|
|
|
2020-06-13 00:42:25 +02:00
|
|
|
|
public string? ServerAvatar { get; }
|
|
|
|
|
public string? Avatar { get; }
|
2020-06-12 23:24:36 +02:00
|
|
|
|
|
2020-11-20 16:40:36 -05:00
|
|
|
|
public bool AllowAutoproxy { get; }
|
|
|
|
|
|
2020-06-12 23:30:10 +02:00
|
|
|
|
public string ProxyName(MessageContext ctx) => ctx.SystemTag != null
|
|
|
|
|
? $"{ServerName ?? DisplayName ?? Name} {ctx.SystemTag}"
|
2020-06-12 23:24:36 +02:00
|
|
|
|
: ServerName ?? DisplayName ?? Name;
|
|
|
|
|
|
2020-06-12 23:30:10 +02:00
|
|
|
|
public string? ProxyAvatar(MessageContext ctx) => ServerAvatar ?? Avatar ?? ctx.SystemAvatar;
|
2020-06-14 18:56:53 +02:00
|
|
|
|
|
|
|
|
|
public ProxyMember() { }
|
|
|
|
|
|
|
|
|
|
public ProxyMember(string name, params ProxyTag[] tags)
|
|
|
|
|
{
|
|
|
|
|
Name = name;
|
|
|
|
|
ProxyTags = tags;
|
|
|
|
|
}
|
2020-06-12 23:13:21 +02:00
|
|
|
|
}
|
|
|
|
|
}
|