-
Notifications
You must be signed in to change notification settings - Fork 922
/
Copy pathinternal.ts
191 lines (173 loc) · 4.45 KB
/
internal.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
/**
* @license
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
FirebaseApp,
FirebaseOptions,
FirebaseServerApp
} from './public-types';
import { Component, Provider, Name } from '@firebase/component';
import { logger } from './logger';
import { DEFAULT_ENTRY_NAME } from './constants';
import { FirebaseAppImpl } from './firebaseApp';
import { FirebaseServerAppImpl } from './firebaseServerApp';
/**
* @internal
*/
export const _apps = new Map<string, FirebaseApp>();
/**
* @internal
*/
export const _serverApps = new Map<string, FirebaseServerApp>();
/**
* Registered components.
*
* @internal
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const _components = new Map<string, Component<any>>();
/**
* @param component - the component being added to this app's container
*
* @internal
*/
export function _addComponent<T extends Name>(
app: FirebaseApp,
component: Component<T>
): void {
try {
(app as FirebaseAppImpl).container.addComponent(component);
} catch (e) {
logger.debug(
`Component ${component.name} failed to register with FirebaseApp ${app.name}`,
e
);
}
}
/**
*
* @internal
*/
export function _addOrOverwriteComponent(
app: FirebaseApp,
component: Component
): void {
(app as FirebaseAppImpl).container.addOrOverwriteComponent(component);
}
/**
*
* @param component - the component to register
* @returns whether or not the component is registered successfully
*
* @internal
*/
export function _registerComponent<T extends Name>(
component: Component<T>
): boolean {
const componentName = component.name;
if (_components.has(componentName)) {
logger.debug(
`There were multiple attempts to register component ${componentName}.`
);
return false;
}
_components.set(componentName, component);
// add the component to existing app instances
for (const app of _apps.values()) {
_addComponent(app as FirebaseAppImpl, component);
}
for (const serverApp of _serverApps.values()) {
_addComponent(serverApp as FirebaseServerAppImpl, component);
}
return true;
}
/**
*
* @param app - FirebaseApp instance
* @param name - service name
*
* @returns the provider for the service with the matching name
*
* @internal
*/
export function _getProvider<T extends Name>(
app: FirebaseApp,
name: T
): Provider<T> {
const heartbeatController = (app as FirebaseAppImpl).container
.getProvider('heartbeat')
.getImmediate({ optional: true });
if (heartbeatController) {
void heartbeatController.triggerHeartbeat();
}
return (app as FirebaseAppImpl).container.getProvider(name);
}
/**
*
* @param app - FirebaseApp instance
* @param name - service name
* @param instanceIdentifier - service instance identifier in case the service supports multiple instances
*
* @internal
*/
export function _removeServiceInstance<T extends Name>(
app: FirebaseApp,
name: T,
instanceIdentifier: string = DEFAULT_ENTRY_NAME
): void {
_getProvider(app, name).clearInstance(instanceIdentifier);
}
/**
*
* @param obj - an object of type FirebaseApp or FirebaseOptions.
*
* @returns true if the provide object is of type FirebaseApp.
*
* @internal
*/
export function _isFirebaseApp(
obj: FirebaseApp | FirebaseOptions
): obj is FirebaseApp {
return (obj as FirebaseApp).options !== undefined;
}
/**
*
* @param obj - an object of type FirebaseApp.
*
* @returns true if the provided object is of type FirebaseServerAppImpl.
*
* @internal
*/
export function _isFirebaseServerApp(
obj: FirebaseApp | FirebaseServerApp | null | undefined
): obj is FirebaseServerApp {
if (obj === null || obj === undefined) {
return false;
}
return (obj as FirebaseServerApp).settings !== undefined;
}
/**
* Test only
*
* @internal
*/
export function _clearComponents(): void {
_components.clear();
}
/**
* Exported in order to be used in app-compat package
*/
export { DEFAULT_ENTRY_NAME as _DEFAULT_ENTRY_NAME };