mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-08 14:30:55 -05:00
392 lines
13 KiB
TypeScript
392 lines
13 KiB
TypeScript
import {
|
|
type AliasedRawBuilder,
|
|
type ColumnType,
|
|
type Expression,
|
|
type ExpressionBuilder,
|
|
sql,
|
|
} from "kysely";
|
|
import { jsonArrayFrom, jsonBuildObject } from "kysely/helpers/sqlite";
|
|
import { Config } from "~/config";
|
|
import { db } from "~/db/sql";
|
|
import type { DB, Tables } from "~/db/tables";
|
|
import { IS_E2E_TEST_RUN } from "./e2e";
|
|
import { safeNumberParse } from "./number";
|
|
|
|
/**
|
|
* Base query selecting the user matching a URL identifier, which can be their user id, their Discord
|
|
* id or their custom URL. Extend it with the columns the caller needs.
|
|
*/
|
|
export function userByIdentifierQuery(identifier: string) {
|
|
return db
|
|
.selectFrom("User")
|
|
.select("User.id")
|
|
.where((eb) => {
|
|
// we don't want to parse discord id's as numbers (length = 18)
|
|
const parsedId =
|
|
identifier.length < 10 ? safeNumberParse(identifier) : null;
|
|
if (parsedId) {
|
|
return eb("User.id", "=", parsedId);
|
|
}
|
|
|
|
if (/^\d+$/.test(identifier)) {
|
|
return eb("User.discordId", "=", identifier);
|
|
}
|
|
|
|
return eb("User.customUrl", "=", identifier);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* SQLite expression extracting a Splatoon player's overall peak XP from the denormalized `peakXp`
|
|
* JSON column. `"SplatoonPlayer"` must be in scope at the call site.
|
|
*/
|
|
export function peakXpOverallSql<T extends number | null = number | null>() {
|
|
return sql<T>`"SplatoonPlayer"."peakXp" ->> '$.overall'`;
|
|
}
|
|
|
|
type CommonUserSelectOptions = {
|
|
alias?: string;
|
|
prefix?: string;
|
|
idAs?: string;
|
|
};
|
|
|
|
type UserTableAlias<O> = O extends { alias: infer A extends string }
|
|
? A
|
|
: "User";
|
|
|
|
type PrefixedUserColumn<O, C extends string> = O extends {
|
|
prefix: infer P extends string;
|
|
}
|
|
? `${P}${Capitalize<C>}`
|
|
: C;
|
|
|
|
type UserIdColumn<O> = O extends { idAs: infer I extends string }
|
|
? I
|
|
: PrefixedUserColumn<O, "id">;
|
|
|
|
type CommonUserSelectResult<O> = readonly [
|
|
`${UserTableAlias<O>}.id as ${UserIdColumn<O>}`,
|
|
`${UserTableAlias<O>}.username as ${PrefixedUserColumn<O, "username">}`,
|
|
`${UserTableAlias<O>}.discordId as ${PrefixedUserColumn<O, "discordId">}`,
|
|
`${UserTableAlias<O>}.discordAvatar as ${PrefixedUserColumn<O, "discordAvatar">}`,
|
|
`${UserTableAlias<O>}.customUrl as ${PrefixedUserColumn<O, "customUrl">}`,
|
|
AliasedRawBuilder<string | null, PrefixedUserColumn<O, "customAvatarUrl">>,
|
|
];
|
|
|
|
/**
|
|
* Select list for the fields shared by every user representation across the app. Includes
|
|
* `customAvatarUrl`, the full URL of the user's supporter custom avatar (resolved from
|
|
* `User.customAvatarImgId`), or `null` when they have none. By default reads from `"User"` which
|
|
* must be in scope at the call site; pass `alias` when the table is joined under another name
|
|
* (`alias: "LinkedUser"`), `prefix` to prefix every output column (`prefix: "sender"` →
|
|
* `senderId`, `senderUsername`, ...) and `idAs` to rename only the id column (`idAs: "userId"`).
|
|
*/
|
|
export function commonUserSelect<const O extends CommonUserSelectOptions>(
|
|
eb: ExpressionBuilder<DB, any>,
|
|
options?: O,
|
|
): CommonUserSelectResult<O> {
|
|
const alias = options?.alias ?? "User";
|
|
const prefix = options?.prefix;
|
|
|
|
const outputName = (column: string) =>
|
|
prefix ? `${prefix}${column[0].toUpperCase()}${column.slice(1)}` : column;
|
|
const idName = options?.idAs ?? outputName("id");
|
|
|
|
return [
|
|
`${alias}.id as ${idName}`,
|
|
`${alias}.username as ${outputName("username")}`,
|
|
`${alias}.discordId as ${outputName("discordId")}`,
|
|
`${alias}.discordAvatar as ${outputName("discordAvatar")}`,
|
|
`${alias}.customUrl as ${outputName("customUrl")}`,
|
|
customAvatarUrl(eb, alias).as(outputName("customAvatarUrl")),
|
|
] as unknown as CommonUserSelectResult<O>;
|
|
}
|
|
|
|
/**
|
|
* SQL expression resolving to the full URL of a user's supporter custom avatar (from
|
|
* `User.customAvatarImgId`), or `null` when they have none. Alias it
|
|
* (`.as("customAvatarUrl")`) when selecting it directly. Pass `alias` when the `User` table is
|
|
* joined under another name. Prefer {@link commonUserSelect} / {@link commonUserJsonObject};
|
|
* reach for this only when those don't fit (e.g. a hand-built `jsonBuildObject`).
|
|
*/
|
|
export function customAvatarUrl(
|
|
eb: ExpressionBuilder<DB, any>,
|
|
alias = "User",
|
|
) {
|
|
return concatUserSubmittedImagePrefix(
|
|
eb
|
|
.selectFrom("UserSubmittedImage")
|
|
.select("UserSubmittedImage.url")
|
|
.whereRef(
|
|
"UserSubmittedImage.id",
|
|
"=",
|
|
sql.ref(`${alias}.customAvatarImgId`),
|
|
)
|
|
.$asScalar(),
|
|
).$castTo<string | null>();
|
|
}
|
|
|
|
export type CommonUser = Pick<
|
|
Tables["User"],
|
|
"id" | "username" | "discordId" | "discordAvatar" | "customUrl"
|
|
> & { customAvatarUrl: string | null };
|
|
|
|
/** Represents User joined with PlusTier table */
|
|
export type UserWithPlusTier = Tables["User"] & {
|
|
plusTier: Tables["PlusTier"]["tier"] | null;
|
|
};
|
|
|
|
const userChatNameHueRaw = sql<
|
|
string | null
|
|
>`IIF(COALESCE("User"."patronTier", 0) >= 2, "User"."customTheme" ->> '--_chat-h', null)`;
|
|
|
|
export const userChatNameHue = userChatNameHueRaw.as("chatNameHue");
|
|
|
|
/**
|
|
* The {@link CommonUser} fields as a plain record of Kysely expressions, for spreading into a
|
|
* hand-built `jsonBuildObject` alongside extra fields. Prefer {@link commonUserJsonObject} when the
|
|
* common fields are the whole object.
|
|
*/
|
|
export function commonUserObjectFields(eb: ExpressionBuilder<Tables, "User">) {
|
|
return {
|
|
id: eb.ref("User.id"),
|
|
username: eb.ref("User.username"),
|
|
discordId: eb.ref("User.discordId"),
|
|
discordAvatar: eb.ref("User.discordAvatar"),
|
|
customUrl: eb.ref("User.customUrl"),
|
|
customAvatarUrl: customAvatarUrl(eb),
|
|
};
|
|
}
|
|
|
|
export function commonUserJsonObject(eb: ExpressionBuilder<Tables, "User">) {
|
|
return jsonBuildObject(commonUserObjectFields(eb));
|
|
}
|
|
|
|
type ExtractedExpressionTypes<E extends Record<string, Expression<unknown>>> = {
|
|
[K in keyof E]: E[K] extends Expression<infer T> ? T : never;
|
|
};
|
|
|
|
/**
|
|
* `json_group_array` aggregate building one object per member row from the {@link CommonUser}
|
|
* fields plus `extras`. `"User"` must be in scope at the call site. Alias it (`.as("members")`)
|
|
* when selecting.
|
|
*/
|
|
export function commonUserMembersAgg<
|
|
E extends Record<string, Expression<unknown>>,
|
|
>(eb: ExpressionBuilder<DB, any>, extras: E) {
|
|
return eb.fn
|
|
.agg("json_group_array", [
|
|
jsonBuildObject({
|
|
...commonUserObjectFields(
|
|
eb as unknown as ExpressionBuilder<Tables, "User">,
|
|
),
|
|
...extras,
|
|
}),
|
|
])
|
|
.$castTo<Array<CommonUser & ExtractedExpressionTypes<E>>>();
|
|
}
|
|
|
|
const USER_SUBMITTED_IMAGE_ROOT =
|
|
(process.env.NODE_ENV === "development" && !Config.prodMode) ||
|
|
IS_E2E_TEST_RUN ||
|
|
process.env.NODE_ENV === "test"
|
|
? "http://127.0.0.1:9000/sendou"
|
|
: "https://sendou.nyc3.cdn.digitaloceanspaces.com";
|
|
|
|
/**
|
|
* Constructs a SQL expression that returns the full URL for a tournament's logo.
|
|
* If the tournament has a custom logo (via avatarImgId), returns that logo's URL.
|
|
* Otherwise, returns null.
|
|
*
|
|
* @returns A SQL expression that concatenates the image root URL with either the custom logo URL or default logo
|
|
*/
|
|
export function tournamentLogoOrNull(
|
|
eb: ExpressionBuilder<Tables, "CalendarEvent">,
|
|
) {
|
|
return eb.fn<string | null>("iif", [
|
|
eb("CalendarEvent.avatarImgId", "is not", null),
|
|
eb.fn<string>("concat", [
|
|
sql.lit(`${USER_SUBMITTED_IMAGE_ROOT}/`),
|
|
eb
|
|
.selectFrom("UnvalidatedUserSubmittedImage")
|
|
.select(["UnvalidatedUserSubmittedImage.url"])
|
|
.whereRef(
|
|
"CalendarEvent.avatarImgId",
|
|
"=",
|
|
"UnvalidatedUserSubmittedImage.id",
|
|
),
|
|
]),
|
|
sql`null`,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Constructs a SQL expression that returns the full URL for a tournament's logo.
|
|
* If the tournament has a custom logo (via avatarImgId), returns that logo's URL.
|
|
* Otherwise, falls back to the default tournament logo.
|
|
*
|
|
* @returns A SQL expression that concatenates the image root URL with either the custom logo URL or default logo
|
|
*/
|
|
export function tournamentLogoWithDefault(
|
|
eb: ExpressionBuilder<Tables, "CalendarEvent">,
|
|
) {
|
|
return concatUserSubmittedImagePrefix(
|
|
eb.fn.coalesce(
|
|
eb
|
|
.selectFrom("UnvalidatedUserSubmittedImage")
|
|
.select("UnvalidatedUserSubmittedImage.url")
|
|
.whereRef(
|
|
"CalendarEvent.avatarImgId",
|
|
"=",
|
|
"UnvalidatedUserSubmittedImage.id",
|
|
)
|
|
.$asScalar(),
|
|
sql.lit(Config.tournamentDefaultLogo),
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Subquery resolving to the event's earliest `CalendarEventDate` start time, or `null` when it has
|
|
* no dates. Correlates on `"CalendarEvent"."id"`. Alias it `.as("startTime")` when selecting it
|
|
* directly. Can also be passed to `orderBy` as is.
|
|
*/
|
|
export function calendarEventStartTime(
|
|
eb: ExpressionBuilder<Tables, "CalendarEvent">,
|
|
) {
|
|
return eb
|
|
.selectFrom("CalendarEventDate")
|
|
.select((eb2) => eb2.fn.min<number>("startsAt").as("startsAt"))
|
|
.whereRef("CalendarEventDate.eventId", "=", "CalendarEvent.id");
|
|
}
|
|
|
|
/**
|
|
* Subquery counting a tournament's non-placeholder teams. Correlates on `"Tournament"."id"`.
|
|
* Alias it `.as("teamsCount")` when selecting it directly.
|
|
*/
|
|
export function tournamentTeamCount(
|
|
eb: ExpressionBuilder<Tables, "Tournament">,
|
|
) {
|
|
return eb
|
|
.selectFrom("TournamentTeam")
|
|
.select((eb2) => eb2.fn.countAll<number>().as("count"))
|
|
.whereRef("TournamentTeam.tournamentId", "=", "Tournament.id")
|
|
.where("TournamentTeam.isPlaceholder", "=", 0);
|
|
}
|
|
|
|
/**
|
|
* Grouped subquery picking each user's (`by: "userId"`) or team's (`by: "identifier"`) latest
|
|
* Skill row of a season: `latestId` plus that row's `ordinal`, `matchesCount` and the `by`
|
|
* column. Wrap it with `.selectFrom(latestSkillPerSeason(...).as("Latest"))`; extra `.where`s
|
|
* compose before aliasing.
|
|
*/
|
|
export function latestSkillPerSeason<By extends "userId" | "identifier">({
|
|
season,
|
|
by,
|
|
}: {
|
|
season: number;
|
|
by: By;
|
|
}) {
|
|
// The latest row per user/team is picked via SQLite's bare column rule: with a `max()`
|
|
// aggregate the other selected columns come from the row that produced the max.
|
|
// A self-join against a `max(id)` subquery is avoided because it lets the planner
|
|
// pick a nested-loop plan when it misjudges the season's row count (e.g. a freshly
|
|
// started season whose stats are dwarfed by older seasons), which made this query
|
|
// take ~12s. This form is plan-stable regardless of stats: a single grouped scan of
|
|
// the `skill_season_user_id_leaderboard` / `skill_season_identifier_leaderboard`
|
|
// covering index, no temp b-tree per partition.
|
|
return db
|
|
.selectFrom("Skill")
|
|
.select(({ fn }) => [
|
|
fn.max("Skill.id").as("latestId"),
|
|
"Skill.ordinal" as const,
|
|
"Skill.matchesCount" as const,
|
|
`Skill.${by}` as `Skill.${By}`,
|
|
])
|
|
.where("Skill.season", "=", season)
|
|
.where(`Skill.${by}`, "is not", null)
|
|
.groupBy(`Skill.${by}`);
|
|
}
|
|
|
|
/**
|
|
* Predicate for `Skill` rows of the user that represent a played set: either a SendouQ match or
|
|
* a ranked tournament the user has a result in. Filters out e.g. skills of tournament teams the
|
|
* user dropped from before results. `"Skill"` must be in scope at the call site.
|
|
*/
|
|
export function skillCountsAsSeasonSet(
|
|
eb: ExpressionBuilder<DB, "Skill">,
|
|
userId: number,
|
|
) {
|
|
return eb.or([
|
|
eb("Skill.groupMatchId", "is not", null),
|
|
eb.exists(
|
|
eb
|
|
.selectFrom("TournamentResult")
|
|
.select("TournamentResult.userId")
|
|
.whereRef("TournamentResult.tournamentId", "=", "Skill.tournamentId")
|
|
.where("TournamentResult.userId", "=", userId),
|
|
),
|
|
]);
|
|
}
|
|
|
|
/** Concats the file name (a bit misleadingly called `url` in the DB schema) with the root URL, giving the full URL for the image */
|
|
export function concatUserSubmittedImagePrefix<T extends string | null>(
|
|
expr: Expression<T>,
|
|
) {
|
|
// null-propagating || instead of iif(expr is not null, concat(...), null)
|
|
// so a correlated subquery passed as expr is evaluated only once per row
|
|
return sql<T extends null ? string | null : string>`(${sql.lit(
|
|
`${USER_SUBMITTED_IMAGE_ROOT}/`,
|
|
)} || ${expr})`;
|
|
}
|
|
|
|
export type JSONColumnTypeNullable<
|
|
SelectType extends object | string | number | null,
|
|
> = ColumnType<SelectType | null, string | null, string | null>;
|
|
|
|
const TEN_STAR_CASE = sql<number>`case when "TenStarWeapon"."weaponSplId" is not null then 1 else 0 end`;
|
|
|
|
/** Match profile weapons (from UserWeaponPool) with TenStarWeapon join. Correlates on "User"."id". */
|
|
export function matchProfileWeapons(eb: ExpressionBuilder<DB, any>) {
|
|
return jsonArrayFrom(
|
|
eb
|
|
.selectFrom("UserWeaponPool")
|
|
.leftJoin("TenStarWeapon", (join) =>
|
|
join
|
|
.onRef("TenStarWeapon.userId", "=", "UserWeaponPool.userId")
|
|
.onRef(
|
|
"TenStarWeapon.weaponSplId",
|
|
"=",
|
|
"UserWeaponPool.weaponSplId",
|
|
),
|
|
)
|
|
.select([
|
|
"UserWeaponPool.weaponSplId",
|
|
"UserWeaponPool.isFavorite",
|
|
TEN_STAR_CASE.as("isTenStar"),
|
|
])
|
|
.whereRef("UserWeaponPool.userId", "=", "User.id")
|
|
.orderBy("UserWeaponPool.sortOrder", "asc"),
|
|
);
|
|
}
|
|
|
|
/** User profile weapons (from UserWeapon) with TenStarWeapon join. Correlates on "User"."id". */
|
|
export function userProfileWeapons(eb: ExpressionBuilder<DB, any>) {
|
|
return jsonArrayFrom(
|
|
eb
|
|
.selectFrom("UserWeapon")
|
|
.leftJoin("TenStarWeapon", (join) =>
|
|
join
|
|
.onRef("TenStarWeapon.userId", "=", "UserWeapon.userId")
|
|
.onRef("TenStarWeapon.weaponSplId", "=", "UserWeapon.weaponSplId"),
|
|
)
|
|
.select([
|
|
"UserWeapon.weaponSplId",
|
|
"UserWeapon.isFavorite",
|
|
TEN_STAR_CASE.as("isTenStar"),
|
|
])
|
|
.whereRef("UserWeapon.userId", "=", "User.id")
|
|
.orderBy("UserWeapon.order", "asc"),
|
|
);
|
|
}
|