diff --git a/index.html b/index.html index d4a9f5c..cc95bd6 100644 --- a/index.html +++ b/index.html @@ -176,6 +176,18 @@ Pixel-perfect   Retina-ready   Fast   Consistent   Hackable

Downloads

+ + + + + + + + + + + + diff --git a/server.js b/server.js index d208d46..5d766b6 100644 --- a/server.js +++ b/server.js @@ -2076,6 +2076,55 @@ cache(function(data, match, sendBadge, request) { }); })); +// GitHub release-download-count integration. +camp.route(/^\/github\/downloads\/([^\/]+)\/([^\/]+)\/([^\/]+)\/([^\/]+)\.(svg|png|gif|jpg|json)$/, +cache(function(data, match, sendBadge, request) { + var user = match[1]; // eg, qubyte/rubidium + var repo = match[2]; + var tag = match[3]; + var asset_name = match[4].toLowerCase(); // eg. total, atom-amd64.deb, atom.x86_64.rpm + var format = match[5]; + var release_path = tag !== 'latest' ? 'tags/' + match[3] : 'latest'; + var apiUrl = 'https://api.github.com/repos/' + user + '/' + repo + '/releases/' + release_path; + // Using our OAuth App secret grants us 5000 req/hour + // instead of the standard 60 req/hour. + if (serverSecrets) { + apiUrl += '?client_id=' + serverSecrets.gh_client_id + + '&client_secret=' + serverSecrets.gh_client_secret; + } + var badgeData = getBadgeData('downloads', data); + // A special User-Agent is required: + // http://developer.github.com/v3/#user-agent-required + request(apiUrl, { headers: githubHeaders }, function(err, res, buffer) { + if (err != null) { + badgeData.text[1] = 'inaccessible'; + return sendBadge(format, badgeData); + } + try { + if ((+res.headers['x-ratelimit-remaining']) === 0) { + return; // Hope for the best in the cache. + } + var data = JSON.parse(buffer); + var downloads = 0; + data.assets.forEach(function (asset) { + if (asset_name === 'total' || asset_name === asset.name.toLowerCase()) { + downloads += asset.download_count; + } + }); + var label = tag !== 'latest' ? tag : ''; + if (asset_name !== 'total') { + label += ' ' + '[' + asset_name + ']'; + } + badgeData.text[1] = metric(downloads) + ' ' + label; + badgeData.colorscheme = 'brightgreen'; + sendBadge(format, badgeData); + } catch(e) { + badgeData.text[1] = 'none'; + sendBadge(format, badgeData); + } + }); +})); + // GitHub issues integration. camp.route(/^\/github\/issues(-raw)?\/([^\/]+)\/([^\/]+)\.(svg|png|gif|jpg|json)$/, cache(function(data, match, sendBadge, request) { diff --git a/try.html b/try.html index bda9306..5895415 100644 --- a/try.html +++ b/try.html @@ -175,6 +175,18 @@ Pixel-perfect   Retina-ready   Fast   Consistent   Hackable
Github Releases: https://img.shields.io/github/downloads/atom/atom/latest/total.svg
Github Releases (by Release): https://img.shields.io/github/downloads/atom/atom/v0.190.0/total.svg
Github Releases (by Asset): https://img.shields.io/github/downloads/atom/atom/latest/atom-amd64.deb.svg
npm: https://img.shields.io/npm/dm/localeval.svg

Downloads

+ + + + + + + + + + + +
Github Releases: https://img.shields.io/github/downloads/atom/atom/latest/total.svg
Github Releases (by Release): https://img.shields.io/github/downloads/atom/atom/v0.190.0/total.svg
Github Releases (by Asset): https://img.shields.io/github/downloads/atom/atom/latest/atom-amd64.deb.svg
npm: https://img.shields.io/npm/dm/localeval.svg