mirror of
https://github.com/System-End/github-readme-stats.git
synced 2026-04-19 21:05:16 +00:00
140 lines
3.4 KiB
JavaScript
140 lines
3.4 KiB
JavaScript
import { renderStatsCard } from "../src/cards/stats-card.js";
|
|
import { blacklist } from "../src/common/blacklist.js";
|
|
import {
|
|
clampValue,
|
|
CONSTANTS,
|
|
parseArray,
|
|
parseBoolean,
|
|
renderError,
|
|
} from "../src/common/utils.js";
|
|
import { fetchStats } from "../src/fetchers/stats-fetcher.js";
|
|
import { isLocaleAvailable } from "../src/translations.js";
|
|
|
|
export default async (req, res) => {
|
|
const {
|
|
username,
|
|
hide,
|
|
hide_title,
|
|
hide_border,
|
|
card_width,
|
|
hide_rank,
|
|
show_icons,
|
|
include_all_commits,
|
|
line_height,
|
|
title_color,
|
|
ring_color,
|
|
icon_color,
|
|
text_color,
|
|
text_bold,
|
|
bg_color,
|
|
theme,
|
|
cache_seconds,
|
|
exclude_repo,
|
|
custom_title,
|
|
locale,
|
|
disable_animations,
|
|
border_radius,
|
|
number_format,
|
|
border_color,
|
|
rank_icon,
|
|
show,
|
|
} = req.query;
|
|
res.setHeader("Content-Type", "image/svg+xml");
|
|
|
|
if (blacklist.includes(username)) {
|
|
return res.send(
|
|
renderError("Something went wrong", "This username is blacklisted", {
|
|
title_color,
|
|
text_color,
|
|
bg_color,
|
|
border_color,
|
|
theme,
|
|
}),
|
|
);
|
|
}
|
|
|
|
if (locale && !isLocaleAvailable(locale)) {
|
|
return res.send(
|
|
renderError("Something went wrong", "Language not found", {
|
|
title_color,
|
|
text_color,
|
|
bg_color,
|
|
border_color,
|
|
theme,
|
|
}),
|
|
);
|
|
}
|
|
|
|
try {
|
|
const showStats = parseArray(show);
|
|
const stats = await fetchStats(
|
|
username,
|
|
parseBoolean(include_all_commits),
|
|
parseArray(exclude_repo),
|
|
showStats.includes("prs_merged") ||
|
|
showStats.includes("prs_merged_percentage"),
|
|
showStats.includes("discussions_started"),
|
|
showStats.includes("discussions_answered"),
|
|
);
|
|
|
|
let cacheSeconds = clampValue(
|
|
parseInt(cache_seconds || CONSTANTS.CARD_CACHE_SECONDS, 10),
|
|
CONSTANTS.SIX_HOURS,
|
|
CONSTANTS.ONE_DAY,
|
|
);
|
|
cacheSeconds = process.env.CACHE_SECONDS
|
|
? parseInt(process.env.CACHE_SECONDS, 10) || cacheSeconds
|
|
: cacheSeconds;
|
|
|
|
res.setHeader(
|
|
"Cache-Control",
|
|
`max-age=${
|
|
cacheSeconds / 2
|
|
}, s-maxage=${cacheSeconds}, stale-while-revalidate=${CONSTANTS.ONE_DAY}`,
|
|
);
|
|
|
|
return res.send(
|
|
renderStatsCard(stats, {
|
|
hide: parseArray(hide),
|
|
show_icons: parseBoolean(show_icons),
|
|
hide_title: parseBoolean(hide_title),
|
|
hide_border: parseBoolean(hide_border),
|
|
card_width: parseInt(card_width, 10),
|
|
hide_rank: parseBoolean(hide_rank),
|
|
include_all_commits: parseBoolean(include_all_commits),
|
|
line_height,
|
|
title_color,
|
|
ring_color,
|
|
icon_color,
|
|
text_color,
|
|
text_bold: parseBoolean(text_bold),
|
|
bg_color,
|
|
theme,
|
|
custom_title,
|
|
border_radius,
|
|
border_color,
|
|
number_format,
|
|
locale: locale ? locale.toLowerCase() : null,
|
|
disable_animations: parseBoolean(disable_animations),
|
|
rank_icon,
|
|
show: showStats,
|
|
}),
|
|
);
|
|
} catch (err) {
|
|
res.setHeader(
|
|
"Cache-Control",
|
|
`max-age=${CONSTANTS.ERROR_CACHE_SECONDS / 2}, s-maxage=${
|
|
CONSTANTS.ERROR_CACHE_SECONDS
|
|
}, stale-while-revalidate=${CONSTANTS.ONE_DAY}`,
|
|
); // Use lower cache period for errors.
|
|
return res.send(
|
|
renderError(err.message, err.secondaryMessage, {
|
|
title_color,
|
|
text_color,
|
|
bg_color,
|
|
border_color,
|
|
theme,
|
|
}),
|
|
);
|
|
}
|
|
};
|