mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-06 04:55:15 -05:00
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import { db } from "~/db/sql";
|
|
import type { Tables } from "~/db/tables";
|
|
import { commonUserSelect, peakXpOverallSql } from "~/utils/kysely.server";
|
|
import * as StreamRanking from "../sidebar/core/StreamRanking";
|
|
|
|
export function replaceAll(streams: Omit<Tables["LiveStream"], "id">[]) {
|
|
return db.transaction().execute(async (trx) => {
|
|
await trx.deleteFrom("LiveStream").execute();
|
|
|
|
await trx.insertInto("LiveStream").values(streams).execute();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Adds the given accounts as streamers of their tournament. Returns the ids of the
|
|
* rows actually inserted, in insertion order — an account already streaming that
|
|
* tournament is skipped and so has no id among them.
|
|
*/
|
|
export function insertTournamentStreamers(
|
|
rows: Omit<Tables["TournamentStreamer"], "id">[],
|
|
) {
|
|
return db
|
|
.insertInto("TournamentStreamer")
|
|
.values(rows)
|
|
.onConflict((oc) =>
|
|
oc.columns(["twitchAccount", "tournamentId"]).doNothing(),
|
|
)
|
|
.returning("id")
|
|
.execute();
|
|
}
|
|
|
|
export function findXRankStreams() {
|
|
return db
|
|
.selectFrom("LiveStream")
|
|
.innerJoin("User", "User.twitch", "LiveStream.twitch")
|
|
.innerJoin("SplatoonPlayer", "SplatoonPlayer.userId", "User.id")
|
|
.where(peakXpOverallSql(), ">=", StreamRanking.minXpForStreamToBeShown())
|
|
.where("LiveStream.twitch", "is not", null)
|
|
.select((eb) => [
|
|
...commonUserSelect(eb),
|
|
peakXpOverallSql<number>().as("peakXp"),
|
|
"LiveStream.viewerCount",
|
|
"LiveStream.thumbnailUrl",
|
|
"LiveStream.twitch as twitchUsername",
|
|
])
|
|
.execute();
|
|
}
|