-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathutils.ts
400 lines (373 loc) · 12.6 KB
/
utils.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
import { readFileSync } from "fs";
import { join } from "path";
import {
Rule,
SchematicContext,
SchematicsException,
Tree,
chain,
} from "@angular-devkit/schematics";
import { NodePackageInstallTask } from "@angular-devkit/schematics/tasks";
import { addRootProvider } from "@schematics/angular/utility";
import { parse } from "yaml";
import { overwriteIfExists, safeReadJSON, stringifyFormatted } from "./common";
import {
ConnectorConfig,
ConnectorYaml,
DataConnectConnectorConfig,
DataConnectYaml,
DeployOptions,
FEATURES,
FirebaseApp,
FirebaseRc,
PackageJson,
Workspace,
} from "./interfaces";
import { SetupConfig } from "./setup";
export const shortAppId = (app?: FirebaseApp) => app?.appId?.split("/").pop();
export function getWorkspace(host: Tree): {
path: string;
workspace: Workspace;
} {
const path = "/angular.json";
const configBuffer = path && host.read(path);
if (!configBuffer) {
throw new SchematicsException(`Could not find angular.json`);
}
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { parse } = require("jsonc-parser");
const workspace = parse(configBuffer.toString()) as Workspace | undefined;
if (!workspace) {
throw new SchematicsException("Could not parse angular.json");
}
return {
path,
workspace,
};
}
export const getProject = (options: DeployOptions, host: Tree) => {
const { workspace } = getWorkspace(host);
const projectName = options.project || workspace.defaultProject;
if (!projectName) {
throw new SchematicsException(
"No Angular project selected and no default project in the workspace"
);
}
const project = workspace.projects[projectName];
if (!project) {
throw new SchematicsException(
"The specified Angular project is not defined in this workspace"
);
}
if (project.projectType !== "application") {
throw new SchematicsException(
`Deploy requires an Angular project type of "application" in angular.json`
);
}
return { project, projectName };
};
export function getFirebaseProjectNameFromHost(
host: Tree,
target: string
): [string | undefined, string | undefined] {
const buffer = host.read("/.firebaserc");
if (!buffer) {
return [undefined, undefined];
}
const rc: FirebaseRc = JSON.parse(buffer.toString());
return projectFromRc(rc, target);
}
export function getFirebaseProjectNameFromFs(
root: string,
target: string
): [string | undefined, string | undefined] {
const path = join(root, ".firebaserc");
try {
const buffer = readFileSync(path);
const rc: FirebaseRc = JSON.parse(buffer.toString());
return projectFromRc(rc, target);
} catch (e) {
return [undefined, undefined];
}
}
const projectFromRc = (
rc: FirebaseRc,
target: string
): [string | undefined, string | undefined] => {
const defaultProject = rc.projects?.default;
const project = Object.keys(rc.targets || {}).find(
(project) => !!rc.targets?.[project]?.hosting?.[target]
);
const site = project && rc.targets?.[project]?.hosting?.[target]?.[0];
return [project || defaultProject, site];
};
// TODO rewrite using typescript
export function addFixesToServer(host: Tree) {
const serverPath = `/server.ts`;
if (!host.exists(serverPath)) {
return host;
}
const text = host.read(serverPath);
if (text === null) {
throw new SchematicsException(`File ${serverPath} does not exist.`);
}
const sourceText = text.toString("utf-8");
const addZonePatch = !sourceText.includes(
"import 'zone.js/dist/zone-patch-rxjs';"
);
if (addZonePatch) {
overwriteIfExists(
host,
serverPath,
sourceText.replace(
"import 'zone.js/dist/zone-node';",
`import 'zone.js/dist/zone-node';
${addZonePatch ? "import 'zone.js/dist/zone-patch-rxjs';" : ""}`
)
);
}
return host;
}
export function featureToRules(
features: FEATURES[],
projectName: string,
dataConnectConfig?: DataConnectConnectorConfig | null
) {
return features
.map((feature) => {
switch (feature) {
case FEATURES.AppCheck:
// TODO make this smarter in Angular Universal
return addRootProvider(projectName, ({ code, external }) => {
external("initializeAppCheck", "@angular/fire/app-check");
external("ReCaptchaEnterpriseProvider", "@angular/fire/app-check");
return code`${external(
"provideAppCheck",
"@angular/fire/app-check"
)}(() => {
// TODO get a reCAPTCHA Enterprise here https://console.cloud.google.com/security/recaptcha?project=_
const provider = new ReCaptchaEnterpriseProvider(/* reCAPTCHA Enterprise site key */);
return initializeAppCheck(undefined, { provider, isTokenAutoRefreshEnabled: true });
})`;
});
case FEATURES.Analytics:
return chain([
addRootProvider(projectName, ({ code, external }) => {
external("getAnalytics", "@angular/fire/analytics");
return code`${external(
"provideAnalytics",
"@angular/fire/analytics"
)}(() => getAnalytics())`;
}),
// TODO if using Angular router
addRootProvider(projectName, ({ code, external }) => {
return code`${external(
"ScreenTrackingService",
"@angular/fire/analytics"
)}`;
}),
...(features.includes(FEATURES.Authentication)
? [
addRootProvider(projectName, ({ code, external }) => {
return code`${external(
"UserTrackingService",
"@angular/fire/analytics"
)}`;
}),
]
: []),
]);
case FEATURES.Authentication:
return addRootProvider(projectName, ({ code, external }) => {
external("getAuth", "@angular/fire/auth");
return code`${external(
"provideAuth",
"@angular/fire/auth"
)}(() => getAuth())`;
});
case FEATURES.Database:
return addRootProvider(projectName, ({ code, external }) => {
external("getDatabase", "@angular/fire/database");
return code`${external(
"provideDatabase",
"@angular/fire/database"
)}(() => getDatabase())`;
});
case FEATURES.DataConnect:
return addRootProvider(projectName, ({ code, external }) => {
external("getDataConnect", "@angular/fire/data-connect");
let configAsStr = "{}";
const config = dataConnectConfig;
let angularConfig: undefined | string;
if (config) {
if (config.package) {
configAsStr = external("connectorConfig", config.package);
} else {
configAsStr = `{${Object.keys(config.connectorConfig as ConnectorConfig).map(
(key) => `${key}: "${(config.connectorConfig as ConnectorConfig)[key]}"`
).join(',')}}`;
}
if (config.angular) {
angularConfig = `, ${external(
"provideTanStackQuery",
"@tanstack/angular-query-experimental"
)}(new ${external(
"QueryClient",
"@tanstack/angular-query-experimental"
)}())`;
}
}
return code`${external(
"provideDataConnect",
"@angular/fire/data-connect"
)}(() => getDataConnect(${configAsStr}))${angularConfig ?? ""}`;
});
case FEATURES.Firestore:
return addRootProvider(projectName, ({ code, external }) => {
external("getFirestore", "@angular/fire/firestore");
return code`${external(
"provideFirestore",
"@angular/fire/firestore"
)}(() => getFirestore())`;
});
case FEATURES.Functions:
return addRootProvider(projectName, ({ code, external }) => {
external("getFunctions", "@angular/fire/functions");
return code`${external(
"provideFunctions",
"@angular/fire/functions"
)}(() => getFunctions())`;
});
case FEATURES.Messaging:
// TODO add the service worker
return addRootProvider(projectName, ({ code, external }) => {
external("getMessaging", "@angular/fire/messaging");
return code`${external(
"provideMessaging",
"@angular/fire/messaging"
)}(() => getMessaging())`;
});
case FEATURES.Performance:
return addRootProvider(projectName, ({ code, external }) => {
external("getPerformance", "@angular/fire/performance");
return code`${external(
"providePerformance",
"@angular/fire/performance"
)}(() => getPerformance())`;
});
case FEATURES.Storage:
return addRootProvider(projectName, ({ code, external }) => {
external("getStorage", "@angular/fire/storage");
return code`${external(
"provideStorage",
"@angular/fire/storage"
)}(() => getStorage())`;
});
case FEATURES.RemoteConfig:
// TODO consider downloading the defaults
return addRootProvider(projectName, ({ code, external }) => {
external("getRemoteConfig", "@angular/fire/remote-config");
return code`${external(
"provideRemoteConfig",
"@angular/fire/remote-config"
)}(() => getRemoteConfig())`;
});
case FEATURES.VertexAI:
return addRootProvider(projectName, ({ code, external }) => {
external("getVertexAI", "@angular/fire/vertexai");
return code`${external(
"provideVertexAI",
"@angular/fire/vertexai"
)}(() => getVertexAI())`;
});
default:
return undefined;
}
})
.filter((it): it is Rule => !!it);
}
export const addIgnoreFiles = (host: Tree) => {
const path = "/.gitignore";
if (!host.exists(path)) {
return host;
}
const buffer = host.read(path);
if (!buffer) {
return host;
}
const content = buffer.toString();
if (!content.includes("# Firebase")) {
overwriteIfExists(
host,
path,
content.concat(`
# Firebase
.firebase
*-debug.log
.runtimeconfig.json
`)
);
}
return host;
};
export function parseDataConnectConfig(
config: SetupConfig
): DataConnectConnectorConfig | null {
if (!config.firebaseJsonConfig) {
throw new Error("No firebase json");
}
if (!config.firebaseJsonConfig.dataconnect?.source) {
throw new Error(
"Couldn't find data connect configuration. Running `firebase init dataconnect`"
);
}
const dataConnectFolder = join(
config.firebaseJsonPath,
config.firebaseJsonConfig.dataconnect?.source
);
const sourcePath = join(dataConnectFolder, "dataconnect.yaml");
try {
const fileAsStr = readFileSync(sourcePath).toString();
const dataConnectYaml: DataConnectYaml = parse(fileAsStr);
const connectorPath = join(
dataConnectFolder,
dataConnectYaml.connectorDirs[0],
"connector.yaml"
);
const connectorAsStr = readFileSync(connectorPath).toString();
const connectorJson: ConnectorYaml = parse(connectorAsStr);
if (!connectorJson?.generate?.javascriptSdk) {
return { connectorYaml: connectorJson };
}
return {
connectorYaml: connectorJson,
connectorConfig: {
connector: connectorJson.connectorId,
location: dataConnectYaml.location,
service: dataConnectYaml.serviceId,
},
package: connectorJson.generate.javascriptSdk.package,
angular: connectorJson.generate.javascriptSdk.angular,
};
} catch (e) {
console.error("Couldn't parse dataconnect.yaml", e);
return null;
}
}
export function setupTanstackDependencies(
host: Tree,
context: SchematicContext
) {
const packageJson: PackageJson = safeReadJSON("package.json", host);
const tanstackFirebasePackage = "@tanstack-query-firebase/angular";
if (
!packageJson.dependencies[tanstackFirebasePackage] &&
!packageJson.devDependencies[tanstackFirebasePackage]
) {
packageJson.dependencies[tanstackFirebasePackage] =
"^1.0.0";
packageJson.dependencies["@tanstack/angular-query-experimental"] = "5.66.4";
overwriteIfExists(host, "package.json", stringifyFormatted(packageJson));
context.addTask(new NodePackageInstallTask());
}
}