import { ImageResponse } from "@vercel/og"; import { scoresaberService } from "@ssr/common/service/impl/scoresaber"; import React from "react"; import { formatNumberWithCommas, formatPp } from "@ssr/common/utils/number-utils"; import { StarIcon } from "../../components/star-icon"; import { GlobeIcon } from "../../components/globe-icon"; import ScoreSaberPlayer from "@ssr/common/player/impl/scoresaber-player"; import { Jimp } from "jimp"; import { extractColors } from "extract-colors"; import { Config } from "@ssr/common/config"; import { fetchWithCache } from "../common/cache.util"; import { SSRCache } from "@ssr/common/cache"; import { getScoreSaberPlayerFromToken } from "@ssr/common/token-creators"; import LeaderboardService from "./leaderboard.service"; import ScoreSaberLeaderboard from "@ssr/common/model/leaderboard/impl/scoresaber-leaderboard"; const cache = new SSRCache({ ttl: 1000 * 60 * 60, // 1 hour }); const imageOptions = { width: 1200, height: 630 }; export class ImageService { /** * Gets the average color of an image * * @param src the image url * @returns the average color * @private */ public static async getAverageImageColor(src: string): Promise<{ color: string } | undefined> { src = decodeURIComponent(src); return await fetchWithCache<{ color: string }>(cache, `average_color-${src}`, async () => { try { const image = await Jimp.read(src); // Load image using Jimp const { width, height, data } = image.bitmap; // Access image dimensions and pixel data // Convert the Buffer data to Uint8ClampedArray const uint8ClampedArray = new Uint8ClampedArray(data); // Extract the colors using extract-colors const colors = await extractColors({ data: uint8ClampedArray, width, height }); // Return the most dominant color, or fallback if none found if (colors && colors.length > 0) { return { color: colors[2].hex }; // Returning the third most dominant color } return { color: "#fff", // Fallback color in case no colors are found }; } catch (error) { console.error("Error fetching image or extracting colors:", error); return { color: "#fff", // Fallback color in case of an error }; } }); } /** * The base of the OpenGraph image * * @param children the content of the image */ public static BaseImage({ children }: { children: React.ReactNode }) { return (
0 ? "text-green-400" : "text-red-400"}`}> {change > 0 ? "+" : ""} {format(change)}
); } /** * Generates the OpenGraph image for the player * * @param id the player's id */ public static async generatePlayerImage(id: string) { const player = await fetchWithCache{player.name}
{/* Player PP */}{formatPp(player.pp)}pp
{this.renderDailyChange(ppChange)}#{formatNumberWithCommas(player.rank)}
{this.renderDailyChange(rankChange)}#{formatNumberWithCommas(player.countryRank)}
{this.renderDailyChange(countryRankChange)}Joined ScoreSaber in{" "} {player.joinedDate.toLocaleString("en-US", { timeZone: "Europe/London", month: "long", year: "numeric", })}
{leaderboard.songName} {leaderboard.songSubName}
{leaderboard.stars}
{leaderboard.difficulty.difficulty}
Mapped by {leaderboard.levelAuthorName}