forked from mozilla/web-ext
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun.js
237 lines (210 loc) · 6.07 KB
/
run.js
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
import path from 'path';
import fs from 'fs/promises';
import nodeFs from 'fs';
import defaultBuildExtension from './build.js';
import { showDesktopNotification as defaultDesktopNotifications } from '../util/desktop-notifier.js';
import * as defaultFirefoxApp from '../firefox/index.js';
import { connectWithMaxRetries as defaultFirefoxClient } from '../firefox/remote.js';
import { createLogger } from '../util/logger.js';
import defaultGetValidatedManifest from '../util/manifest.js';
import { UsageError } from '../errors.js';
import {
createExtensionRunner,
defaultReloadStrategy,
MultiExtensionRunner as DefaultMultiExtensionRunner,
} from '../extension-runners/index.js';
const log = createLogger(import.meta.url);
// Run command types and implementation.
export default async function run(
{
artifactsDir,
browserConsole = false,
devtools = false,
pref,
firefox,
firefoxProfile,
profileCreateIfMissing,
keepProfileChanges = false,
ignoreFiles,
noInput = false,
noReload = false,
preInstall = false,
noReloadManagerExtension = false,
sourceDir,
watchFile,
watchIgnored,
startUrl,
target,
args,
// Android CLI options.
adbBin,
adbHost,
adbPort,
adbDevice,
adbDiscoveryTimeout,
adbRemoveOldArtifacts,
firefoxApk,
firefoxApkComponent,
// Chromium CLI options.
chromiumBinary,
chromiumPref,
chromiumProfile,
chromiumPort,
},
{
buildExtension = defaultBuildExtension,
desktopNotifications = defaultDesktopNotifications,
firefoxApp = defaultFirefoxApp,
firefoxClient = defaultFirefoxClient,
reloadStrategy = defaultReloadStrategy,
MultiExtensionRunner = DefaultMultiExtensionRunner,
getValidatedManifest = defaultGetValidatedManifest,
} = {},
) {
sourceDir = path.resolve(sourceDir);
log.info(`Running web extension from ${sourceDir}`);
if (preInstall) {
log.info(
"Disabled auto-reloading because it's not possible with " +
'--pre-install',
);
noReload = true;
}
if (
watchFile != null &&
(!Array.isArray(watchFile) ||
!watchFile.every((el) => typeof el === 'string'))
) {
throw new UsageError('Unexpected watchFile type');
}
// Create an alias for --pref since it has been transformed into an
// object containing one or more preferences.
const customPrefs = { ...pref };
// Create an alias for --chromium-pref since it has been transformed into an
// object containing one or more preferences.
const customChromiumPrefs = { ...chromiumPref };
const manifestData = await getValidatedManifest(sourceDir);
const profileDir = firefoxProfile || chromiumProfile;
if (profileCreateIfMissing) {
if (!profileDir) {
throw new UsageError(
'--profile-create-if-missing requires ' +
'--firefox-profile or --chromium-profile',
);
}
const isDir = nodeFs.existsSync(profileDir);
if (isDir) {
log.info(`Profile directory ${profileDir} already exists`);
} else {
log.info(`Profile directory not found. Creating directory ${profileDir}`);
await fs.mkdir(profileDir);
}
}
const runners = [];
const commonRunnerParams = {
// Common options.
extensions: [{ sourceDir, manifestData }],
keepProfileChanges,
startUrl,
args,
desktopNotifications,
};
if (!target || target.length === 0 || target.includes('firefox-desktop')) {
const firefoxDesktopRunnerParams = {
...commonRunnerParams,
// Firefox specific CLI options.
firefoxBinary: firefox,
profilePath: firefoxProfile,
customPrefs,
browserConsole,
devtools,
preInstall,
// Firefox runner injected dependencies.
firefoxApp,
firefoxClient,
};
const firefoxDesktopRunner = await createExtensionRunner({
target: 'firefox-desktop',
params: firefoxDesktopRunnerParams,
});
runners.push(firefoxDesktopRunner);
}
if (target && target.includes('firefox-android')) {
const firefoxAndroidRunnerParams = {
...commonRunnerParams,
// Firefox specific CLI options.
profilePath: firefoxProfile,
customPrefs,
browserConsole,
preInstall,
firefoxApk,
firefoxApkComponent,
adbDevice,
adbHost,
adbPort,
adbBin,
adbDiscoveryTimeout,
adbRemoveOldArtifacts,
// Injected dependencies.
firefoxApp,
firefoxClient,
desktopNotifications: defaultDesktopNotifications,
buildSourceDir: (extensionSourceDir, tmpArtifactsDir) => {
return buildExtension(
{
sourceDir: extensionSourceDir,
ignoreFiles,
asNeeded: false,
// Use a separate temporary directory for building the extension zip file
// that we are going to upload on the android device.
artifactsDir: tmpArtifactsDir,
},
{
// Suppress the message usually logged by web-ext build.
showReadyMessage: false,
},
);
},
};
const firefoxAndroidRunner = await createExtensionRunner({
target: 'firefox-android',
params: firefoxAndroidRunnerParams,
});
runners.push(firefoxAndroidRunner);
}
if (target && target.includes('chromium')) {
const chromiumRunnerParams = {
...commonRunnerParams,
chromiumBinary,
chromiumProfile,
customChromiumPrefs,
chromiumPort,
noReloadManagerExtension,
};
const chromiumRunner = await createExtensionRunner({
target: 'chromium',
params: chromiumRunnerParams,
});
runners.push(chromiumRunner);
}
const extensionRunner = new MultiExtensionRunner({
desktopNotifications,
runners,
});
await extensionRunner.run();
if (noReload) {
log.info('Automatic extension reloading has been disabled');
} else {
log.info('The extension will reload if any source file changes');
reloadStrategy({
extensionRunner,
sourceDir,
watchFile,
watchIgnored,
artifactsDir,
ignoreFiles,
noInput,
});
}
return extensionRunner;
}