cleanup and track friends data (if not being already tracked)
This commit is contained in:
14
projects/common/src/config.ts
Normal file
14
projects/common/src/config.ts
Normal file
@ -0,0 +1,14 @@
|
||||
export const Config = {
|
||||
/**
|
||||
* All projects
|
||||
*/
|
||||
websiteUrl: process.env.NEXT_PUBLIC_SITE_URL || "https://ssr.fascinated.cc",
|
||||
apiUrl: process.env.NEXT_PUBLIC_SITE_API || "https://ssr.fascinated.cc/api",
|
||||
|
||||
/**
|
||||
* Backend
|
||||
*/
|
||||
trackedPlayerWebhook: process.env.TRACKED_PLAYERS_WEBHOOK,
|
||||
numberOneWebhook: process.env.NUMBER_ONE_WEBHOOK,
|
||||
mongoUri: process.env.MONGO_URI,
|
||||
} as const;
|
@ -4,6 +4,7 @@ import { PlayerHistory } from "../player-history";
|
||||
import ScoreSaberPlayerToken from "../../token/scoresaber/score-saber-player-token";
|
||||
import { formatDateMinimal, getDaysAgoDate, getMidnightAlignedDate } from "../../../utils/time-utils";
|
||||
import { getPageFromRank } from "../../../utils/utils";
|
||||
import { Config } from "../../../config";
|
||||
|
||||
/**
|
||||
* A ScoreSaber player.
|
||||
@ -75,12 +76,10 @@ export default interface ScoreSaberPlayer extends Player {
|
||||
* Gets the ScoreSaber Player from an {@link ScoreSaberPlayerToken}.
|
||||
*
|
||||
* @param token the player token
|
||||
* @param apiUrl the api url for SSR
|
||||
* @param playerIdCookie the id of the claimed player
|
||||
*/
|
||||
export async function getScoreSaberPlayerFromToken(
|
||||
token: ScoreSaberPlayerToken,
|
||||
apiUrl: string,
|
||||
playerIdCookie?: string
|
||||
): Promise<ScoreSaberPlayer> {
|
||||
const bio: ScoreSaberBio = {
|
||||
@ -105,7 +104,7 @@ export async function getScoreSaberPlayerFromToken(
|
||||
.get<{
|
||||
statistics: { [key: string]: PlayerHistory };
|
||||
}>(
|
||||
`${apiUrl}/player/history/${token.id}${playerIdCookie && playerIdCookie == token.id ? "?createIfMissing=true" : ""}`
|
||||
`${Config.apiUrl}/player/history/${token.id}${playerIdCookie && playerIdCookie == token.id ? "?createIfMissing=true" : ""}`
|
||||
)
|
||||
.json();
|
||||
if (history) {
|
||||
|
@ -1,4 +1,6 @@
|
||||
import { PlayerHistory } from "../types/player/player-history";
|
||||
import { kyFetch } from "./utils";
|
||||
import { Config } from "../config";
|
||||
|
||||
/**
|
||||
* Sorts the player history based on date,
|
||||
@ -11,3 +13,12 @@ export function sortPlayerHistory(history: Map<string, PlayerHistory>) {
|
||||
(a, b) => Date.parse(b[0]) - Date.parse(a[0]) // Sort in descending order
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensure the player is being tracked.
|
||||
*
|
||||
* @param id the player id
|
||||
*/
|
||||
export async function trackPlayer(id: string) {
|
||||
await kyFetch(`${Config.apiUrl}/player/history/${id}?createIfMissing=true`);
|
||||
}
|
||||
|
Reference in New Issue
Block a user