Compare commits
5 Commits
renovate/m
...
renovate/n
Author | SHA1 | Date | |
---|---|---|---|
d62f51c48e | |||
6b5b8bb54f | |||
403c34befd | |||
0185a9ed3e | |||
47a255e48a |
@ -1,10 +1,10 @@
|
|||||||
REACT_APP_HTTP_PROXY=https://proxy.fascinated.cc
|
REACT_APP_HTTP_PROXY=<https://proxy.fascinated.cc>
|
||||||
|
|
||||||
REACT_APP_SITE_NAME=BeatSaber Overlay
|
REACT_APP_SITE_NAME=BeatSaber Overlay
|
||||||
REACT_APP_SITE_TITLE=BeatSaber Overlay - Simple and easy to use BeatSaber overlay
|
REACT_APP_SITE_TITLE=BeatSaber Overlay - Simple and easy to use BeatSaber overlay
|
||||||
REACT_APP_SITE_DESCRIPTION=ScoreSaber and BeatLeader overlay for Twitch streamers - Elevate your Beat Saber streams with our professional, customizable overlay that displays your real-time scores, rankings, and leaderboard information for your viewers.
|
REACT_APP_SITE_DESCRIPTION=ScoreSaber and BeatLeader overlay for Twitch streamers - Elevate your Beat Saber streams with our professional, customizable overlay that displays your real-time scores, rankings, and leaderboard information for your viewers.
|
||||||
REACT_APP_SITE_COLOR=0EBFE9
|
REACT_APP_SITE_COLOR=0EBFE9
|
||||||
REACT_APP_SITE_URL=http://localhost:3000
|
REACT_APP_SITE_URL=<http://localhost:3000>
|
||||||
|
|
||||||
REDIS_PORT=6379
|
REDIS_PORT=6379
|
||||||
REDIS_HOST=localhost
|
REDIS_HOST=localhost
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
"@beam-australia/react-env": "^3.1.1",
|
"@beam-australia/react-env": "^3.1.1",
|
||||||
"@emotion/cache": "^11.11.0",
|
"@emotion/cache": "^11.11.0",
|
||||||
"@emotion/server": "^11.11.0",
|
"@emotion/server": "^11.11.0",
|
||||||
"@nextui-org/react": "1.0.0-beta.10",
|
"@nextui-org/react": "2.2.4",
|
||||||
"@typescript-eslint/eslint-plugin": "^6.7.5",
|
"@typescript-eslint/eslint-plugin": "^6.7.5",
|
||||||
"@typescript-eslint/parser": "^6.7.5",
|
"@typescript-eslint/parser": "^6.7.5",
|
||||||
"axios": "^1.5.1",
|
"axios": "^1.5.1",
|
||||||
|
2518
pnpm-lock.yaml
generated
2518
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -35,11 +35,7 @@ export async function getMapData(hash: string): Promise<MapData | undefined> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const before = Date.now();
|
const before = Date.now();
|
||||||
const response = await axios.get(BEATSAVER_MAP_API.replace("%s", mapHash), {
|
const response = await axios.get(BEATSAVER_MAP_API.replace("%s", mapHash));
|
||||||
headers: {
|
|
||||||
"X-Requested-With": "BeatSaber Overlay",
|
|
||||||
},
|
|
||||||
});
|
|
||||||
if (response.status === 404) {
|
if (response.status === 404) {
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
@ -3,12 +3,7 @@ import LeaderboardType from "../../consts/LeaderboardType";
|
|||||||
|
|
||||||
export async function getPlayerData(leaderboardType, playerId) {
|
export async function getPlayerData(leaderboardType, playerId) {
|
||||||
const data = await axios.get(
|
const data = await axios.get(
|
||||||
LeaderboardType[leaderboardType].ApiUrl.PlayerData.replace("%s", playerId),
|
LeaderboardType[leaderboardType].ApiUrl.PlayerData.replace("%s", playerId)
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
"x-requested-with": "BeatSaber Overlay",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
@ -41,12 +41,7 @@ export default async function handler(req, res) {
|
|||||||
|
|
||||||
const before = Date.now();
|
const before = Date.now();
|
||||||
const reesponse = await axios.get(
|
const reesponse = await axios.get(
|
||||||
WebsiteTypes.BeatLeader.ApiUrl.MapData.replace("%h", mapHash),
|
WebsiteTypes.BeatLeader.ApiUrl.MapData.replace("%h", mapHash)
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
"X-Requested-With": "BeatSaber Overlay",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
if (reesponse.status === 404) {
|
if (reesponse.status === 404) {
|
||||||
return res.status(404).json({
|
return res.status(404).json({
|
||||||
|
@ -40,12 +40,7 @@ export default async function handler(req, res) {
|
|||||||
WebsiteTypes.ScoreSaber.ApiUrl.MapData.replace("%h", mapHash).replace(
|
WebsiteTypes.ScoreSaber.ApiUrl.MapData.replace("%h", mapHash).replace(
|
||||||
"%d",
|
"%d",
|
||||||
diffToScoreSaberDiff(difficulty)
|
diffToScoreSaberDiff(difficulty)
|
||||||
),
|
)
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
"X-Requested-With": "BeatSaber Overlay",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
if (response.status === 404) {
|
if (response.status === 404) {
|
||||||
return res.status(404).json({
|
return res.status(404).json({
|
||||||
|
@ -63,6 +63,21 @@ export default function Overlay(props) {
|
|||||||
<SongInfo />
|
<SongInfo />
|
||||||
<ScoreStats />
|
<ScoreStats />
|
||||||
<CutStats />
|
<CutStats />
|
||||||
|
|
||||||
|
<p
|
||||||
|
style={{
|
||||||
|
fontSize: 50,
|
||||||
|
position: "absolute",
|
||||||
|
top: 0,
|
||||||
|
right: 0,
|
||||||
|
paddingRight: "10px",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
This overlay is deprecated use:{" "}
|
||||||
|
<a href="https://ssr.fascinated.cc/overlay/builder">
|
||||||
|
https://ssr.fascinated.cc/overlay/builder
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -30,11 +30,7 @@ export const usePlayerDataStore = create<PlayerDataState>()((set) => ({
|
|||||||
const apiUrl = Utils.getWebsiteApi(
|
const apiUrl = Utils.getWebsiteApi(
|
||||||
leaderboardType
|
leaderboardType
|
||||||
).ApiUrl.PlayerData.replace("%s", playerId);
|
).ApiUrl.PlayerData.replace("%s", playerId);
|
||||||
const response = await axios.get(apiUrl, {
|
const response = await axios.get(apiUrl);
|
||||||
headers: {
|
|
||||||
"x-requested-with": "BeatSaber Overlay",
|
|
||||||
},
|
|
||||||
});
|
|
||||||
if (response.status !== 200) {
|
if (response.status !== 200) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -20,11 +20,7 @@ export default class Utils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static async isLeaderboardValid(url, steamId) {
|
static async isLeaderboardValid(url, steamId) {
|
||||||
const response = await axios.get(url.replace("%s", steamId), {
|
const response = await axios.get(url.replace("%s", steamId));
|
||||||
headers: {
|
|
||||||
"X-Requested-With": "BeatSaber Overlay",
|
|
||||||
},
|
|
||||||
});
|
|
||||||
if (response.status === 429) {
|
if (response.status === 429) {
|
||||||
return true; // Just assume it's true is we are rate limited
|
return true; // Just assume it's true is we are rate limited
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user