2020-06-13 19:49:31 +00:00
|
|
|
|
#nullable enable
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
using Dapper;
|
|
|
|
|
|
|
|
|
|
namespace PluralKit.Core
|
|
|
|
|
{
|
|
|
|
|
public static class DatabaseViewsExt
|
|
|
|
|
{
|
2020-06-14 19:37:04 +00:00
|
|
|
|
public static Task<IEnumerable<SystemFronter>> QueryCurrentFronters(this IPKConnection conn, SystemId system) =>
|
2020-06-13 19:49:31 +00:00
|
|
|
|
conn.QueryAsync<SystemFronter>("select * from system_fronters where system = @system", new {system});
|
2020-07-07 18:57:22 +00:00
|
|
|
|
|
|
|
|
|
public static Task<IEnumerable<ListedMember>> QueryMemberList(this IPKConnection conn, SystemId system, MemberListQueryOptions opts)
|
2020-06-13 19:49:31 +00:00
|
|
|
|
{
|
|
|
|
|
StringBuilder query = new StringBuilder("select * from member_list where system = @system");
|
|
|
|
|
|
2020-07-07 18:57:22 +00:00
|
|
|
|
if (opts.PrivacyFilter != null)
|
|
|
|
|
query.Append($" and member_visibility = {(int) opts.PrivacyFilter}");
|
2020-06-13 19:49:31 +00:00
|
|
|
|
|
2020-07-07 18:57:22 +00:00
|
|
|
|
if (opts.Search != null)
|
2020-06-13 19:49:31 +00:00
|
|
|
|
{
|
2020-06-18 15:33:37 +00:00
|
|
|
|
static string Filter(string column) => $"(position(lower(@filter) in lower(coalesce({column}, ''))) > 0)";
|
2020-06-13 19:49:31 +00:00
|
|
|
|
|
|
|
|
|
query.Append($" and ({Filter("name")} or {Filter("display_name")}");
|
2020-07-07 18:57:22 +00:00
|
|
|
|
if (opts.SearchDescription)
|
2020-06-18 15:33:37 +00:00
|
|
|
|
{
|
|
|
|
|
// We need to account for the possibility of description privacy when searching
|
|
|
|
|
// If we're looking up from the outside, only search "public_description" (defined in the view; null if desc is private)
|
|
|
|
|
// If we're the owner, just search the full description
|
2020-07-07 18:57:22 +00:00
|
|
|
|
var descriptionColumn = opts.Context == LookupContext.ByOwner ? "description" : "public_description";
|
2020-06-18 15:33:37 +00:00
|
|
|
|
query.Append($"or {Filter(descriptionColumn)}");
|
|
|
|
|
}
|
2020-06-13 19:49:31 +00:00
|
|
|
|
query.Append(")");
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-07 18:57:22 +00:00
|
|
|
|
return conn.QueryAsync<ListedMember>(query.ToString(), new {system, filter = opts.Search});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public struct MemberListQueryOptions
|
|
|
|
|
{
|
|
|
|
|
public PrivacyLevel? PrivacyFilter;
|
|
|
|
|
public string? Search;
|
|
|
|
|
public bool SearchDescription;
|
|
|
|
|
public LookupContext Context;
|
2020-06-13 19:49:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|