-
-
Notifications
You must be signed in to change notification settings - Fork 846
/
withMapbox.ts
466 lines (409 loc) · 12 KB
/
withMapbox.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
import { promises } from 'fs';
import path from 'path';
import {
ConfigPlugin,
createRunOncePlugin,
withDangerousMod,
withGradleProperties,
WarningAggregator,
withProjectBuildGradle,
withAppBuildGradle,
} from 'expo/config-plugins';
import {
mergeContents,
createGeneratedHeaderComment,
removeGeneratedContents,
MergeResults,
} from './generateCode';
let pkg: { name: string; version?: string } = {
name: '@rnmapbox/maps',
};
try {
pkg = require('@rnmapbox/maps/package.json');
} catch {
// empty catch block
}
type InstallerBlockName = 'pre' | 'post';
export type MapboxPlugProps = {
/**
* @deprecated
*/
RNMapboxMapsImpl?: 'mapbox';
RNMapboxMapsVersion?: string;
RNMapboxMapsDownloadToken?: string;
RNMapboxMapsUseV11?: boolean;
};
export const addInstallerBlock = (
src: string,
blockName: InstallerBlockName,
): string => {
const matchBlock = new RegExp(`${blockName}_install do \\|installer\\|`);
const tag = `${blockName}_installer`;
for (const line of src.split('\n')) {
const contents = line.trim();
// Ignore comments
if (!contents.startsWith('#')) {
// Prevent adding the block if it exists outside of comments.
if (contents.match(matchBlock)) {
// This helps to still allow revisions, since we enabled the block previously.
// Only continue if the generated block exists...
const modified = removeGeneratedContents(src, tag);
if (!modified) {
return src;
}
}
}
}
return mergeContents({
tag,
src,
newSrc: [` ${blockName}_install do |installer|`, ' end'].join('\n'),
anchor: /use_react_native/,
// We can't go after the use_react_native block because it might have parameters, causing it to be multi-line (see react-native template).
offset: 0,
comment: '#',
}).contents;
};
export const addConstantBlock = (
src: string,
{
RNMapboxMapsImpl,
RNMapboxMapsVersion,
RNMapboxMapsDownloadToken,
RNMapboxMapsUseV11,
}: MapboxPlugProps,
): string => {
const tag = `@rnmapbox/maps-rnmapboxmapsimpl`;
if (
RNMapboxMapsVersion == null &&
RNMapboxMapsDownloadToken == null &&
RNMapboxMapsUseV11 == null
) {
const modified = removeGeneratedContents(src, tag);
if (!modified) {
return src;
} else {
return modified;
}
}
const newSrc = [];
if (RNMapboxMapsDownloadToken) {
newSrc.push(`$RNMapboxMapsDownloadToken = '${RNMapboxMapsDownloadToken}'`);
}
if (RNMapboxMapsImpl) {
newSrc.push(`$RNMapboxMapsImpl = '${RNMapboxMapsImpl}'`);
}
if (RNMapboxMapsVersion) {
newSrc.push(`$RNMapboxMapsVersion = '${RNMapboxMapsVersion}'`);
}
if (RNMapboxMapsUseV11) {
newSrc.push(`$RNMapboxMapsUseV11 = true`);
}
return mergeContents({
tag,
src,
newSrc: newSrc.join('\n'),
anchor: /target .+ do/,
// We can't go after the use_react_native block because it might have parameters, causing it to be multi-line (see react-native template).
offset: 0,
comment: '#',
}).contents;
};
// Only the preinstaller block is required, the post installer block is
// used for spm (swift package manager) which Expo doesn't currently support.
export const applyCocoaPodsModifications = (
contents: string,
{
RNMapboxMapsImpl,
RNMapboxMapsVersion,
RNMapboxMapsDownloadToken,
RNMapboxMapsUseV11,
}: MapboxPlugProps,
): string => {
// Ensure installer blocks exist
let src = addConstantBlock(contents, {
RNMapboxMapsImpl,
RNMapboxMapsVersion,
RNMapboxMapsDownloadToken,
RNMapboxMapsUseV11,
});
src = addInstallerBlock(src, 'pre');
src = addInstallerBlock(src, 'post');
src = addMapboxInstallerBlock(src, 'pre');
src = addMapboxInstallerBlock(src, 'post');
return src;
};
export const addMapboxInstallerBlock = (
src: string,
blockName: InstallerBlockName,
): string =>
mergeContents({
tag: `@rnmapbox/maps-${blockName}_installer`,
src,
newSrc: ` $RNMapboxMaps.${blockName}_install(installer)`,
anchor: new RegExp(`^\\s*${blockName}_install do \\|installer\\|`),
offset: 1,
comment: '#',
}).contents;
/**
* Dangerously adds the custom installer hooks to the Podfile.
* In the future this should be removed in favor of some custom hooks provided by Expo autolinking.
*
* https://github.com/rnmapbox/maps/blob/main/ios/install.md#react-native--0600
*/
const withCocoaPodsInstallerBlocks: ConfigPlugin<MapboxPlugProps> = (
config,
{
RNMapboxMapsImpl,
RNMapboxMapsVersion,
RNMapboxMapsDownloadToken,
RNMapboxMapsUseV11,
},
) =>
withDangerousMod(config, [
'ios',
async (exportedConfig) => {
const file = path.join(
exportedConfig.modRequest.platformProjectRoot,
'Podfile',
);
const contents = await promises.readFile(file, 'utf8');
await promises.writeFile(
file,
applyCocoaPodsModifications(contents, {
RNMapboxMapsImpl,
RNMapboxMapsVersion,
RNMapboxMapsDownloadToken,
RNMapboxMapsUseV11,
}),
'utf-8',
);
return exportedConfig;
},
]);
const withAndroidPropertiesDownloadToken: ConfigPlugin<MapboxPlugProps> = (
config,
{ RNMapboxMapsDownloadToken },
) => {
const key = 'MAPBOX_DOWNLOADS_TOKEN';
if (RNMapboxMapsDownloadToken) {
return withGradleProperties(config, (exportedConfig) => {
exportedConfig.modResults = exportedConfig.modResults.filter(
(item) => !(item.type === 'property' && item.key === key),
);
exportedConfig.modResults.push({
type: 'property',
key,
value: RNMapboxMapsDownloadToken,
});
return exportedConfig;
});
}
return config;
};
const withAndroidPropertiesImpl2: ConfigPlugin<MapboxPlugProps> = (
config,
{ RNMapboxMapsImpl, RNMapboxMapsVersion, RNMapboxMapsUseV11 },
) => {
const keyValues = {
expoRNMapboxMapsImpl: RNMapboxMapsImpl,
expoRNMapboxMapsVersion: RNMapboxMapsVersion,
expoRNMapboxMapsUseV11: RNMapboxMapsUseV11,
} as const;
type Keys = keyof typeof keyValues;
const keys = Object.keys(keyValues) as Keys[];
const values = Object.values(keyValues);
if (values.filter((v) => v).length > 0) {
return withGradleProperties(config, (exportedConfig) => {
exportedConfig.modResults = exportedConfig.modResults.filter(
(item) =>
!(item.type === 'property' && (keys as string[]).includes(item.key)),
);
keys.forEach((key) => {
const value = keyValues[key];
if (value != null) {
exportedConfig.modResults.push({
type: 'property',
key: key,
value: value.toString(),
});
}
});
return exportedConfig;
});
}
return config;
};
const withAndroidProperties: ConfigPlugin<MapboxPlugProps> = (
config,
{
RNMapboxMapsImpl,
RNMapboxMapsDownloadToken,
RNMapboxMapsVersion,
RNMapboxMapsUseV11,
},
) => {
config = withAndroidPropertiesDownloadToken(config, {
RNMapboxMapsDownloadToken,
});
config = withAndroidPropertiesImpl2(config, {
RNMapboxMapsImpl,
RNMapboxMapsVersion,
RNMapboxMapsUseV11,
});
return config;
};
const addLibCppFilter = (appBuildGradle: string): string => {
if (appBuildGradle.includes("pickFirst 'lib/x86/libc++_shared.so'")) {
return appBuildGradle;
}
return mergeContents({
tag: `@rnmapbox/maps-libcpp`,
src: appBuildGradle,
newSrc: `packagingOptions {
pickFirst 'lib/x86/libc++_shared.so'
pickFirst 'lib/x86_64/libc++_shared.so'
pickFirst 'lib/arm64-v8a/libc++_shared.so'
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
}`,
anchor: new RegExp(`^\\s*android\\s*{`),
offset: 1,
comment: '//',
}).contents;
};
// Because we need the package to be added AFTER the React and Google maven packages, we create a new allprojects.
// It's ok to have multiple allprojects.repositories, so we create a new one since it's cheaper than tokenizing
// the existing block to find the correct place to insert our mapbox maven.
const gradleMaven = `
allprojects {
repositories {
maven {
url 'https://api.mapbox.com/downloads/v2/releases/maven'
authentication { basic(BasicAuthentication) }
credentials {
username = 'mapbox'
password = project.properties['MAPBOX_DOWNLOADS_TOKEN'] ?: ""
}
}
}
}
`;
// Fork of config-plugins mergeContents, but appends the contents to the end of the file.
const appendContents = ({
src,
newSrc,
tag,
comment,
}: {
src: string;
newSrc: string;
tag: string;
comment: string;
}): MergeResults => {
const header = createGeneratedHeaderComment(newSrc, tag, comment);
if (!src.includes(header)) {
// Ensure the old generated contents are removed.
const sanitizedTarget = removeGeneratedContents(src, tag);
const contentsToAdd = [
// @something
header,
// contents
newSrc,
// @end
`${comment} @generated end ${tag}`,
].join('\n');
return {
contents: sanitizedTarget ?? src + contentsToAdd,
didMerge: true,
didClear: !!sanitizedTarget,
};
}
return { contents: src, didClear: false, didMerge: false };
};
export const addMapboxMavenRepo = (src: string): string =>
appendContents({
tag: '@rnmapbox/maps-v2-maven',
src,
newSrc: gradleMaven,
comment: '//',
}).contents;
const withAndroidAppGradle: ConfigPlugin<MapboxPlugProps> = (config) =>
withAppBuildGradle(config, ({ modResults, ...exportedConfig }) => {
if (modResults.language !== 'groovy') {
WarningAggregator.addWarningAndroid(
'withMapbox',
`Cannot automatically configure app build.gradle if it's not groovy`,
);
return { modResults, ...exportedConfig };
}
modResults.contents = addLibCppFilter(modResults.contents);
return { modResults, ...exportedConfig };
});
const withAndroidProjectGradle: ConfigPlugin<MapboxPlugProps> = (config) =>
withProjectBuildGradle(config, ({ modResults, ...exportedConfig }) => {
if (modResults.language !== 'groovy') {
WarningAggregator.addWarningAndroid(
'withMapbox',
`Cannot automatically configure app build.gradle if it's not groovy`,
);
return { modResults, ...exportedConfig };
}
modResults.contents = addMapboxMavenRepo(modResults.contents);
return { modResults, ...exportedConfig };
});
const withMapboxAndroid: ConfigPlugin<MapboxPlugProps> = (
config,
{
RNMapboxMapsImpl,
RNMapboxMapsDownloadToken,
RNMapboxMapsVersion,
RNMapboxMapsUseV11,
},
) => {
config = withAndroidProperties(config, {
RNMapboxMapsImpl,
RNMapboxMapsDownloadToken,
RNMapboxMapsVersion,
RNMapboxMapsUseV11,
});
config = withAndroidProjectGradle(config, { RNMapboxMapsImpl });
config = withAndroidAppGradle(config, { RNMapboxMapsImpl });
return config;
};
const withMapbox: ConfigPlugin<MapboxPlugProps> = (
config,
{
RNMapboxMapsImpl,
RNMapboxMapsVersion,
RNMapboxMapsDownloadToken,
RNMapboxMapsUseV11,
},
) => {
config = withMapboxAndroid(config, {
RNMapboxMapsImpl,
RNMapboxMapsVersion,
RNMapboxMapsUseV11,
RNMapboxMapsDownloadToken,
});
config = withCocoaPodsInstallerBlocks(config, {
RNMapboxMapsImpl,
RNMapboxMapsVersion,
RNMapboxMapsDownloadToken,
RNMapboxMapsUseV11,
});
return config;
};
export default createRunOncePlugin(withMapbox, pkg.name, pkg.version);
// TODO: export internal functions for testing purposes
export {
// the following methods accept a string and return a string
addMapboxMavenRepo as _addMapboxMavenRepo,
// addLibCppFilter as _addLibCppFilter,
// Following methods accept a config object
// withAndroidProperties as _withAndroidProperties,
// withAndroidPropertiesDownloadToken as _withAndroidPropertiesDownloadToken,
// withAndroidPropertiesImpl2 as _withAndroidPropertiesImpl2,
// withAndroidAppGradle as _withAndroidAppGradle,
// withAndroidProjectGradle as _withAndroidProjectGradle,
// withMapboxAndroid as _withMapboxAndroid,
};