2020-07-12 01:50:42 +08:00
|
|
|
require("dotenv").config();
|
2020-07-21 00:13:51 +08:00
|
|
|
const {
|
|
|
|
renderError,
|
|
|
|
parseBoolean,
|
2020-07-23 23:31:23 +08:00
|
|
|
parseArray,
|
2020-07-21 00:13:51 +08:00
|
|
|
clampValue,
|
|
|
|
CONSTANTS,
|
2020-08-02 15:37:26 +08:00
|
|
|
} = require("../src/common/utils");
|
|
|
|
const fetchStats = require("../src/fetchers/stats-fetcher");
|
|
|
|
const renderStatsCard = require("../src/cards/stats-card");
|
2020-08-17 16:48:17 +08:00
|
|
|
const blacklist = require("../src/common/blacklist");
|
2020-10-31 17:20:46 +08:00
|
|
|
const { isLocaleAvailable } = require("../src/translations");
|
2020-07-09 20:20:15 +08:00
|
|
|
|
2020-07-09 18:33:41 +08:00
|
|
|
module.exports = async (req, res) => {
|
2020-07-12 03:01:44 +08:00
|
|
|
const {
|
|
|
|
username,
|
|
|
|
hide,
|
2020-07-18 01:31:16 +08:00
|
|
|
hide_title,
|
2020-07-12 03:01:44 +08:00
|
|
|
hide_border,
|
2020-07-13 22:11:47 +08:00
|
|
|
hide_rank,
|
2020-07-12 03:01:44 +08:00
|
|
|
show_icons,
|
2020-07-24 22:04:38 +08:00
|
|
|
count_private,
|
2020-07-31 16:07:39 +08:00
|
|
|
include_all_commits,
|
2020-07-12 03:01:44 +08:00
|
|
|
line_height,
|
|
|
|
title_color,
|
|
|
|
icon_color,
|
|
|
|
text_color,
|
2020-07-12 15:16:08 +08:00
|
|
|
bg_color,
|
2020-07-19 23:04:41 +08:00
|
|
|
theme,
|
2020-07-21 00:13:51 +08:00
|
|
|
cache_seconds,
|
2020-09-27 15:40:39 +08:00
|
|
|
custom_title,
|
2020-10-04 16:05:15 +08:00
|
|
|
locale,
|
2020-11-14 21:22:36 +08:00
|
|
|
disable_animations,
|
2021-03-08 00:53:32 +08:00
|
|
|
border_radius,
|
2020-07-12 03:01:44 +08:00
|
|
|
} = req.query;
|
2020-07-10 20:42:31 +08:00
|
|
|
let stats;
|
2020-07-09 18:33:41 +08:00
|
|
|
|
|
|
|
res.setHeader("Content-Type", "image/svg+xml");
|
2020-07-15 17:29:25 +08:00
|
|
|
|
2020-08-17 16:48:17 +08:00
|
|
|
if (blacklist.includes(username)) {
|
|
|
|
return res.send(renderError("Something went wrong"));
|
|
|
|
}
|
|
|
|
|
2020-10-04 16:05:15 +08:00
|
|
|
if (locale && !isLocaleAvailable(locale)) {
|
|
|
|
return res.send(renderError("Something went wrong", "Language not found"));
|
|
|
|
}
|
|
|
|
|
2020-07-10 20:42:31 +08:00
|
|
|
try {
|
2020-07-31 16:07:39 +08:00
|
|
|
stats = await fetchStats(
|
|
|
|
username,
|
|
|
|
parseBoolean(count_private),
|
2020-09-25 00:08:14 +08:00
|
|
|
parseBoolean(include_all_commits),
|
2020-07-31 16:07:39 +08:00
|
|
|
);
|
2020-07-10 20:42:31 +08:00
|
|
|
|
2020-08-13 23:48:26 +08:00
|
|
|
const cacheSeconds = clampValue(
|
|
|
|
parseInt(cache_seconds || CONSTANTS.TWO_HOURS, 10),
|
|
|
|
CONSTANTS.TWO_HOURS,
|
2020-09-25 00:08:14 +08:00
|
|
|
CONSTANTS.ONE_DAY,
|
2020-08-13 23:48:26 +08:00
|
|
|
);
|
2020-07-21 00:13:51 +08:00
|
|
|
|
2020-08-13 23:48:26 +08:00
|
|
|
res.setHeader("Cache-Control", `public, max-age=${cacheSeconds}`);
|
2020-07-21 00:13:51 +08:00
|
|
|
|
2020-08-13 23:48:26 +08:00
|
|
|
return res.send(
|
|
|
|
renderStatsCard(stats, {
|
|
|
|
hide: parseArray(hide),
|
|
|
|
show_icons: parseBoolean(show_icons),
|
|
|
|
hide_title: parseBoolean(hide_title),
|
|
|
|
hide_border: parseBoolean(hide_border),
|
|
|
|
hide_rank: parseBoolean(hide_rank),
|
|
|
|
include_all_commits: parseBoolean(include_all_commits),
|
|
|
|
line_height,
|
|
|
|
title_color,
|
|
|
|
icon_color,
|
|
|
|
text_color,
|
|
|
|
bg_color,
|
|
|
|
theme,
|
2020-09-27 15:40:39 +08:00
|
|
|
custom_title,
|
2021-03-08 00:53:32 +08:00
|
|
|
border_radius,
|
2020-10-04 16:05:15 +08:00
|
|
|
locale: locale ? locale.toLowerCase() : null,
|
2020-11-14 21:22:36 +08:00
|
|
|
disable_animations: parseBoolean(disable_animations),
|
2020-09-25 00:08:14 +08:00
|
|
|
}),
|
2020-08-13 23:48:26 +08:00
|
|
|
);
|
|
|
|
} catch (err) {
|
|
|
|
return res.send(renderError(err.message, err.secondaryMessage));
|
|
|
|
}
|
2020-07-09 18:33:41 +08:00
|
|
|
};
|