c7f64cc5097ce0d4119d9d95e47e04e45a4e0e1f
[webi-installers/.git] / _webi / normalize.js
1 'use strict';
2
3 // this may need customizations between packages
4 var osMap = {
5   macos: /(\b|_)(apple|os(\s_-)?x\b|mac|darwin|iPhone|iOS|iPad)/i,
6   linux: /(\b|_)(linux)/i,
7   freebsd: /(\b|_)(freebsd)/i,
8   windows: /(\b|_)(win|microsoft|msft)/i,
9   sunos: /(\b|_)(sun)/i,
10   aix: /(\b|_)(aix)/i
11 };
12
13 var maps = {
14   oses: {},
15   arches: {},
16   formats: {}
17 };
18
19 Object.keys(osMap).forEach(function (name) {
20   maps.oses[name] = true;
21 });
22
23 var formats = ['zip', 'xz', 'tar', 'pkg', 'msi', 'git', 'exe', 'dmg'];
24 formats.forEach(function (name) {
25   maps.formats[name] = true;
26 });
27
28 // evaluation order matters
29 // (i.e. otherwise x86 and x64 can cross match)
30 var arches = [
31   'amd64', // first and most likely match
32   'arm64',
33   'x86',
34   'ppc64le',
35   'ppc64',
36   'armv7l',
37   'armv6l',
38   's390x'
39 ];
40 var archMap = {
41   //amd64: /(amd.?64|x64|[_\-]64)/i,
42   amd64:
43     /(\b|_|amd|(dar)?win(dows)?|mac(os)?|linux|osx|x)64([_\-]?bit)?(\b|_)/i,
44   //x86: /(86)(\b|_)/i,
45   x86: /(\b|_|amd|(dar)?win(dows)?|mac(os)?|linux|osx|x)(86|32)([_\-]?bit)(\b|_)/i,
46   ppc64le: /(\b|_)(ppc64le)/i,
47   ppc64: /(\b|_)(ppc64)(\b|_)/i,
48   arm64: /(\b|_)((aarch|arm)64|arm)/i,
49   armv7l: /(\b|_)(armv?7l)/i,
50   armv6l: /(\b|_)(aarch32|armv?6l)/i,
51   s390x: /(\b|_)(s390x)/i
52 };
53 arches.forEach(function (name) {
54   maps.arches[name] = true;
55 });
56
57 function normalize(all) {
58   var supported = {
59     oses: {},
60     arches: {},
61     formats: {}
62   };
63
64   all.releases.forEach(function (rel) {
65     rel.version = rel.version.replace(/^v/i, '');
66     if (!rel.name) {
67       rel.name = rel.download.replace(/.*\//, '');
68     }
69     if (!rel.os) {
70       rel.os =
71         Object.keys(osMap).find(function (regKey) {
72           return osMap[regKey].test(rel.name || rel.download);
73         }) || 'unknown';
74     }
75     supported.oses[rel.os] = true;
76
77     if (!rel.arch) {
78       arches.some(function (regKey) {
79         var arch = (rel.name || rel.download).match(archMap[regKey]) && regKey;
80         if (arch) {
81           rel.arch = arch;
82           return true;
83         }
84       });
85     }
86     if (!rel.arch) {
87       if ('macos' === rel.os) {
88         rel.arch = 'amd64';
89       }
90     }
91     supported.arches[rel.arch] = true;
92
93     var tarExt;
94     if (!rel.ext) {
95       // pkg-v1.0.tar.gz => ['gz', 'tar', '0', 'pkg-v1']
96       // pkg-v1.0.tar => ['tar', '0' ,'pkg-v1']
97       // pkg-v1.0.zip => ['zip', '0', 'pkg-v1']
98       var exts = (rel.name || rel.download).split('.');
99       if (1 === exts.length) {
100         // for bare releases in the format of foo-linux-amd64
101         rel.ext = 'exe';
102       }
103       exts = exts.reverse().slice(0, 2);
104       if ('tar' === exts[1]) {
105         rel.ext = exts.reverse().join('.');
106         tarExt = 'tar';
107       } else if ('tgz' === exts[0]) {
108         rel.ext = 'tar.gz';
109         tarExt = 'tar';
110       } else {
111         rel.ext = exts[0];
112       }
113       if (/\-|linux|mac|os[_\-]?x|arm|amd|86|64|mip/i.test(rel.ext)) {
114         // for bare releases in the format of foo.linux-amd64
115         rel.ext = 'exe';
116       }
117     }
118     supported.formats[tarExt || rel.ext] = true;
119
120     if (all.download) {
121       rel.download = all.download.replace(/{{ download }}/, rel.download);
122     }
123   });
124
125   all.oses = Object.keys(supported.oses).filter(function (name) {
126     return maps.oses[name];
127   });
128   all.arches = Object.keys(supported.arches).filter(function (name) {
129     return maps.arches[name];
130   });
131   all.formats = Object.keys(supported.formats).filter(function (name) {
132     return maps.formats[name];
133   });
134
135   return all;
136 }
137
138 module.exports = normalize;
139 module.exports._debug = function (all) {
140   all = normalize(all);
141   all.releases = all.releases
142     .filter(function (r) {
143       return ['windows', 'macos', 'linux'].includes(r.os) && 'amd64' === r.arch;
144     })
145     .slice(0, 10);
146   return all;
147 };
148 // NOT in order of priority (which would be tar, xz, zip, ...)
149 module.exports.formats = formats;
150 module.exports.arches = arches;
151 module.exports.formatsMap = maps.formats;