github-readme-stats/api/pin.js

68 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-07-12 01:50:42 +08:00
require("dotenv").config();
const {
renderError,
parseBoolean,
clampValue,
CONSTANTS,
logger,
} = require("../src/utils");
2020-07-12 00:40:13 +08:00
const fetchRepo = require("../src/fetchRepo");
const renderRepoCard = require("../src/renderRepoCard");
2020-07-10 00:53:14 +08:00
module.exports = async (req, res) => {
const {
username,
repo,
title_color,
icon_color,
text_color,
bg_color,
theme,
show_owner,
cache_seconds,
} = req.query;
2020-07-10 00:53:14 +08:00
2020-07-10 20:42:31 +08:00
let repoData;
2020-07-10 00:53:14 +08:00
res.setHeader("Content-Type", "image/svg+xml");
2020-07-10 20:42:31 +08:00
try {
repoData = await fetchRepo(username, repo);
} catch (err) {
logger.error(err);
2020-07-10 20:42:31 +08:00
return res.send(renderError(err.message));
}
let cacheSeconds = clampValue(
parseInt(cache_seconds || CONSTANTS.THIRTY_MINUTES, 10),
CONSTANTS.THIRTY_MINUTES,
CONSTANTS.ONE_DAY
);
/*
if star count & fork count is over 1k then we are kFormating the text
and if both are zero we are not showing the stats
so we can just make the cache longer, since there is no need to frequent updates
*/
const stars = repoData.stargazers.totalCount;
const forks = repoData.forkCount;
const isBothOver1K = stars > 1000 && forks > 1000;
const isBothUnder1 = stars < 1 && forks < 1;
if (!cache_seconds && (isBothOver1K || isBothUnder1)) {
cacheSeconds = CONSTANTS.TWO_HOURS;
}
res.setHeader("Cache-Control", `public, max-age=${cacheSeconds}`);
res.send(
renderRepoCard(repoData, {
title_color,
icon_color,
text_color,
bg_color,
theme,
show_owner: parseBoolean(show_owner),
})
);
2020-07-10 00:53:14 +08:00
};