-
Notifications
You must be signed in to change notification settings - Fork 909
/
Copy pathinstallPods.ts
201 lines (174 loc) · 5.4 KB
/
installPods.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
import fs from 'fs';
import execa from 'execa';
import type {Ora} from 'ora';
import chalk from 'chalk';
import {
logger,
NoopLoader,
link,
CLIError,
runSudo,
} from '@react-native-community/cli-tools';
import runBundleInstall from './runBundleInstall';
import path from 'path';
interface PodInstallOptions {
skipBundleInstall?: boolean;
newArchEnabled?: boolean;
iosFolderPath?: string;
platform: string;
root: string;
}
interface RunPodInstallOptions {
root: string;
platform: string;
shouldHandleRepoUpdate?: boolean;
newArchEnabled?: boolean;
}
async function runPodInstall(loader: Ora, options: RunPodInstallOptions) {
const shouldHandleRepoUpdate = options?.shouldHandleRepoUpdate || true;
try {
if (fs.existsSync('build')) {
fs.rmSync('build', {recursive: true});
}
loader.start(
`Installing CocoaPods dependencies ${chalk.bold(
options?.newArchEnabled ? 'with New Architecture' : '',
)} ${chalk.dim('(this may take a few minutes)')}`,
);
const reactNativePath = path.dirname(
require.resolve('react-native', {paths: [process.cwd()]}),
);
const codegenScript = path.join(
reactNativePath,
'scripts',
'generate-codegen-artifacts.js',
);
execa.sync('node', [
codegenScript,
'-p',
options.root,
'-o',
process.cwd(),
'-t',
options.platform,
]);
await execa('bundle', ['exec', 'pod', 'install'], {
env: {
RCT_NEW_ARCH_ENABLED: options?.newArchEnabled ? '1' : '0',
},
});
} catch (error) {
logger.debug(error as string);
// "pod" command outputs errors to stdout (at least some of them)
const stderr = (error as any).stderr || (error as any).stdout;
/**
* If CocoaPods failed due to repo being out of date, it will
* include the update command in the error message.
*
* `shouldHandleRepoUpdate` will be set to `false` to
* prevent infinite loop (unlikely scenario)
*/
if (stderr.includes('pod repo update') && shouldHandleRepoUpdate) {
await runPodUpdate(loader);
await runPodInstall(loader, {
shouldHandleRepoUpdate: false,
newArchEnabled: options?.newArchEnabled,
platform: options.platform,
root: options.root,
});
} else {
loader.fail();
logger.error(stderr);
throw new CLIError(
`Looks like your iOS environment is not properly set. Please go to ${link.docs(
'environment-setup',
'ios',
{guide: 'native'},
)} and follow the React Native CLI QuickStart guide for macOS and iOS.`,
);
}
}
}
async function runPodUpdate(loader: Ora) {
try {
loader.start(
`Updating CocoaPods repositories ${chalk.dim(
'(this may take a few minutes)',
)}`,
);
await execa('pod', ['repo', 'update']);
} catch (error) {
// "pod" command outputs errors to stdout (at least some of them)
logger.log((error as any).stderr || (error as any).stdout);
loader.fail();
throw new CLIError(
`Failed to update CocoaPods repositories for iOS project.\nPlease try again manually: "pod repo update".\nCocoaPods documentation: ${chalk.dim.underline(
'https://cocoapods.org/',
)}`,
);
}
}
async function installCocoaPodsWithGem() {
const options = ['install', 'cocoapods', '--no-document'];
try {
// First attempt to install `cocoapods`
await execa('gem', options);
} catch (_error) {
// If that doesn't work then try with sudo
await runSudo(`gem ${options.join(' ')}`);
}
}
async function installCocoaPods(loader: Ora) {
loader.stop();
loader.start('Installing CocoaPods');
try {
await installCocoaPodsWithGem();
return loader.succeed();
} catch (error) {
loader.fail();
logger.error((error as any).stderr);
throw new CLIError(
`An error occured while trying to install CocoaPods, which is required by this template.\nPlease try again manually: sudo gem install cocoapods.\nCocoaPods documentation: ${chalk.dim.underline(
'https://cocoapods.org/',
)}`,
);
}
}
async function installPods(loader?: Ora, options?: PodInstallOptions) {
loader = loader || new NoopLoader();
try {
if (!options?.iosFolderPath && !fs.existsSync('ios')) {
return;
}
process.chdir(options?.iosFolderPath ?? 'ios');
const hasPods = fs.existsSync('Podfile');
if (!hasPods) {
return;
}
if (fs.existsSync('../Gemfile') && !options?.skipBundleInstall) {
await runBundleInstall(loader);
} else if (!fs.existsSync('../Gemfile')) {
throw new CLIError(
'Could not find the Gemfile. Currently the CLI requires to have this file in the root directory of the project to install CocoaPods. If your configuration is different, please install the CocoaPods manually.',
);
}
try {
// Check if "pod" is available and usable. It happens that there are
// multiple versions of "pod" command and even though it's there, it exits
// with a failure
await execa('pod', ['--version']);
} catch (e) {
loader.info();
await installCocoaPods(loader);
}
await runPodInstall(loader, {
newArchEnabled: options?.newArchEnabled,
platform: options?.platform ?? 'ios',
root: options?.root ?? process.cwd(),
});
} finally {
process.chdir('..');
}
}
export {installCocoaPods};
export default installPods;