-
Notifications
You must be signed in to change notification settings - Fork 2k
/
mirror.ts
294 lines (256 loc) · 7.94 KB
/
mirror.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/* This file is a part of @mdn/browser-compat-data
* See LICENSE file for more information. */
import {
BrowserName,
SimpleSupportStatement,
SupportStatement,
} from '../../types/types.js';
import { InternalSupportBlock } from '../../types/index.js';
type Notes = string | string[] | null;
import { compareVersions, compare } from 'compare-versions';
import bcd from '../../index.js';
const { browsers } = bcd;
/**
* @typedef {import('../types').Identifier} Identifier
* @typedef {import('../types').SupportStatement} SupportStatement
* @typedef {import('../types').ReleaseStatement} ReleaseStatement
*/
const matchingSafariVersions = new Map([
['≤4', '≤3'],
['1', '1'],
['1.1', '1'],
['1.2', '1'],
['1.3', '1'],
['2', '1'],
['3', '2'],
['3.1', '2'],
['4', '3.2'],
['5', '4.2'],
['5.1', '6'],
['9.1', '9.3'],
['10.1', '10.3'],
['11.1', '11.3'],
['12.1', '12.2'],
['13.1', '13.4'],
['14.1', '14.5'],
]);
/**
* Convert a version number to the matching version of the target browser
*
* @param {string} targetBrowser The browser to mirror to
* @param {string} sourceVersion The version from the source browser
* @returns {ReleaseStatement|boolean} The matching browser version
*/
export const getMatchingBrowserVersion = (
targetBrowser: BrowserName,
sourceVersion: string,
) => {
const browserData = browsers[targetBrowser];
/* c8 ignore start */
if (!browserData.upstream) {
// This should never be reached
throw new Error('Browser does not have an upstream browser set.');
}
/* c8 ignore stop */
if (targetBrowser === 'safari_ios') {
// The mapping between Safari macOS and iOS releases is complicated and
// cannot be entirely derived from the WebKit versions. After Safari 15
// the versions have been the same, so map earlier versions manually
// and then assume if the versions are identical it's also a match.
const v = matchingSafariVersions.get(sourceVersion);
if (v) {
return v;
}
if (sourceVersion in browserData.releases) {
return sourceVersion;
}
throw new Error(`Cannot find iOS version matching Safari ${sourceVersion}`);
}
const releaseKeys = Object.keys(browserData.releases);
releaseKeys.sort(compareVersions);
if (sourceVersion == 'preview') {
return 'preview';
}
const range = sourceVersion.includes('≤');
const sourceRelease =
browsers[browserData.upstream].releases[sourceVersion.replace('≤', '')];
if (!sourceRelease) {
throw new Error(
`Could not find source release "${browserData.upstream} ${sourceVersion}"!`,
);
}
for (const r of releaseKeys) {
const release = browserData.releases[r];
if (
['chrome', 'chrome_android'].includes(browserData.upstream) &&
targetBrowser !== 'chrome_android' &&
release.engine == 'Blink' &&
sourceRelease.engine == 'WebKit'
) {
// Handle mirroring for Chromium forks when upstream version is pre-Blink
return range ? `≤${r}` : r;
} else if (release.engine == sourceRelease.engine) {
if (
['beta', 'nightly'].includes(release.status) &&
release.status == sourceRelease.status
) {
return r;
} else if (
release.engine_version &&
sourceRelease.engine_version &&
compare(release.engine_version, sourceRelease.engine_version, '>=')
) {
return r;
}
}
}
return false;
};
/**
* Update the notes by mirroring the version and replacing the browser name
*
* @param {Notes?} notes The notes to update
* @param {RegExp} regex The regex to check and search
* @param {string} replace The text to replace with
* @param {Function} versionMapper - Receives the source browser version and returns the target browser version.
* @returns {Notes?} The notes with replacement performed
*/
const updateNotes = (
notes: Notes | null,
regex: RegExp,
replace: string,
versionMapper: (v: string) => string | false,
): Notes | null => {
if (!notes) {
return null;
}
if (Array.isArray(notes)) {
return notes.map((note) =>
updateNotes(note, regex, replace, versionMapper),
) as Notes;
}
return notes
.replace(regex, replace)
.replace(
new RegExp(`(${replace}|version)\\s(\\d+)`, 'g'),
(match, p1, p2) => p1 + ' ' + versionMapper(p2),
);
};
/**
* Copy a support statement
*
* @param {SimpleSupportStatement} data The data to copied
* @returns {SimpleSupportStatement} The new copied object
*/
const copyStatement = (
data: SimpleSupportStatement,
): SimpleSupportStatement => {
const newData: Partial<SimpleSupportStatement> = {};
for (const i in data) {
newData[i] = data[i];
}
return newData as SimpleSupportStatement;
};
/**
* Perform mirroring of data
*
* @param {SupportStatement} sourceData The data to mirror from
* @param {BrowserName} destination The destination browser
* @returns {SupportStatement} The mirrored support statement
*/
export const bumpSupport = (
sourceData: SupportStatement,
destination: BrowserName,
): SupportStatement => {
if (Array.isArray(sourceData)) {
// Bump the individual support statements and filter out results with a
// falsy version_added. It's not possible for sourceData to have a falsy
// version_added (enforced by the lint) so there can be no notes or similar
// to preserve from such statements.
const newData = sourceData
.map((data) => bumpSupport(data, destination) as SimpleSupportStatement)
.filter((item) => item.version_added);
switch (newData.length) {
case 0:
return { version_added: false };
case 1:
return newData[0];
default:
return newData;
}
}
let notesRepl: [RegExp, string] | undefined;
if (destination === 'edge') {
notesRepl = [/Chrome/g, 'Edge'];
} else if (destination.includes('opera')) {
notesRepl = [/Chrome/g, 'Opera'];
} else if (destination === 'samsunginternet_android') {
notesRepl = [/Chrome/g, 'Samsung Internet'];
}
const newData: SimpleSupportStatement = copyStatement(sourceData);
if (typeof sourceData.version_added === 'string') {
newData.version_added = getMatchingBrowserVersion(
destination,
sourceData.version_added,
);
}
if (
sourceData.version_removed &&
typeof sourceData.version_removed === 'string'
) {
newData.version_removed = getMatchingBrowserVersion(
destination,
sourceData.version_removed,
);
}
if (notesRepl && sourceData.notes) {
const newNotes = updateNotes(
sourceData.notes,
notesRepl[0],
notesRepl[1],
(v: string) => getMatchingBrowserVersion(destination, v),
);
if (newNotes) {
newData.notes = newNotes;
}
}
if (!browsers[destination].accepts_flags && newData.flags) {
// Remove flag data if the target browser doesn't accept flags
return { version_added: false };
}
if (newData.version_added === newData.version_removed) {
// If version_added and version_removed are the same, feature is unsupported
return { version_added: false };
}
return newData;
};
/**
* Perform mirroring for the target browser
*
* @param {BrowserName} destination The browser to mirror to
* @param {InternalSupportBlock} data The data to mirror with
* @returns {SupportStatement} The mirrored data
*/
const mirrorSupport = (
destination: BrowserName,
data: InternalSupportBlock,
): SupportStatement => {
const upstream: BrowserName | undefined = browsers[destination].upstream;
if (!upstream) {
throw new Error(
`Upstream is not defined for ${destination}, cannot mirror!`,
);
}
let upstreamData = data[upstream] || null;
if (!upstreamData) {
throw new Error(
`The data for ${upstream} is not defined for mirroring to ${destination}, cannot mirror!`,
);
}
if (upstreamData === 'mirror') {
// Perform mirroring upstream if needed
upstreamData = mirrorSupport(upstream, data);
}
return bumpSupport(upstreamData, destination);
};
export default mirrorSupport;