X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=_common%2Fgithub.js;h=aa98074ccfc9ed2fc8af7d5e6c13e4f75badded7;hb=4edf137e5d6b65f9ac847db6694ac387c7e91f3e;hp=09eda590f104f5a12d7274daf0f15b2ba45f74ac;hpb=bee07ff6a9a9fb45aa1eadf4676fa4c33a388db5;p=webi-installers%2F.git diff --git a/_common/github.js b/_common/github.js index 09eda59..aa98074 100644 --- a/_common/github.js +++ b/_common/github.js @@ -1,35 +1,6 @@ 'use strict'; -// this may need customizations between packages -const osMap = { - macos: /\b(mac|darwin|iPhone|iOS|iPad)/i, - linux: /\b(linux)/i, - win: /\b(win|microsoft|msft)/i, - sunos: /\b(sun)/i, - aix: /\b(aix)/i -}; - -const archMap = { - amd64: /(amd64|x64|[_\-]64)/i, - x86: /\b(x86)(?![_\-]64)/i, - ppc64le: /\b(ppc64le)/i, - ppc64: /\b(ppc64)\b/i, - i686: /\b(i686)\b/i, - arm64: /\b(arm64|arm)/i, - armv7l: /\b(armv?7l)/i, - armv6l: /\b(armv?6l)/i, - s390x: /\b(s390x)/i -}; - -const fileExtMap = { - deb: /\.deb$/i, - pkg: /\.pkg$/i, - exe: /\.exe$/i, - msi: /\.msi$/i, - zip: /\.zip$/i, - tar: /\.(tar(\.?(gz)?)|tgz)/i, - '7z': /\.7;$/i -}; +require('dotenv').config(); /** * Gets the releases for 'ripgrep'. This function could be trimmed down and made @@ -40,55 +11,52 @@ const fileExtMap = { * @param {string} repo * @returns {PromiseLike | Promise} */ -function getAllReleases(request, owner = 'BurntSushi', repo = 'ripgrep') { +function getAllReleases( + request, + owner, + repo, + baseurl = 'https://api.github.com' +) { if (!owner) { return Promise.reject('missing owner for repo'); } if (!repo) { return Promise.reject('missing repo name'); } - return request({ - url: `https://api.github.com/repos/${owner}/${repo}/releases`, + + var req = { + url: `${baseurl}/repos/${owner}/${repo}/releases`, json: true - }).then((resp) => { + }; + // TODO I really don't like global config, find a way to do better + if (process.env.GITHUB_USERNAME) { + req.auth = { + user: process.env.GITHUB_USERNAME, + pass: process.env.GITHUB_TOKEN + }; + } + + return request(req).then((resp) => { const gHubResp = resp.body; const all = { releases: [], + // todo make this ':baseurl' + ':releasename' download: '' }; gHubResp.forEach((release) => { release['assets'].forEach((asset) => { - // set the primary download to the first of the releases - if (all.download === '') { - all.download = asset['browser_download_url']; - } - const name = asset['name']; - const os = Object.keys(osMap).find(regKey => { - name.match(osMap[regKey]); - }) || 'linux'; - const arch = Object.keys(archMap) - .find(regKey => name.match(archMap[regKey])); - - let fileExt = ''; - Object.keys(fileExtMap).find(regKey => { - const match = name.match(fileExtMap[regKey]); - if (match) { - fileExt = match[0]; - return true; - } - return false; - }); - all.releases.push({ - download: asset['browser_download_url'], - date: release['published_at'], - version: release['tag_name'], - lts: !release['prerelease'], - ext: fileExt, - arch, - os + name: name, + version: release['tag_name'], // TODO tags aren't always semver / sensical + lts: /(\b|_)(lts)(\b|_)/.test(release['tag_name']), + channel: !release['prerelease'] ? 'stable' : 'beta', + date: (release['published_at'] || '').replace(/T.*/, ''), + os: '', // will be guessed by download filename + arch: '', // will be guessed by download filename + ext: '', // will be normalized + download: asset['browser_download_url'] }); }); }); @@ -100,7 +68,9 @@ function getAllReleases(request, owner = 'BurntSushi', repo = 'ripgrep') { module.exports = getAllReleases; if (module === require.main) { - getAllReleases(require('@root/request'), 'BurntSushi', 'ripgrep').then(function(all) { - console.log(JSON.stringify(all, null, 2)); - }); + getAllReleases(require('@root/request'), 'BurntSushi', 'ripgrep').then( + function (all) { + console.info(JSON.stringify(all, null, 2)); + } + ); }