forked from NativeScript/firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.android.ts
329 lines (302 loc) · 8.75 KB
/
index.android.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
import { IRemoteConfig, IConfigSettings, IConfigValue, ConfigDefaults } from './common';
import { firebase, FirebaseApp, FirebaseError, serialize } from '@nativescript/firebase-core';
import lazy from '@nativescript/core/utils/lazy';
import { Utils } from '@nativescript/core';
let defaultRemoteConfig: RemoteConfig;
const fb = firebase();
Object.defineProperty(fb, 'remoteConfig', {
value: (app?: FirebaseApp) => {
if (!app) {
if (!defaultRemoteConfig) {
defaultRemoteConfig = new RemoteConfig();
}
return defaultRemoteConfig;
}
return new RemoteConfig(app);
},
writable: false,
});
const SourceStatic = lazy(() => com.google.firebase.remoteconfig.FirebaseRemoteConfig.VALUE_SOURCE_STATIC);
const SourceDefault = lazy(() => com.google.firebase.remoteconfig.FirebaseRemoteConfig.VALUE_SOURCE_DEFAULT);
const SourceRemote = lazy(() => com.google.firebase.remoteconfig.FirebaseRemoteConfig.VALUE_SOURCE_REMOTE);
const FetchStatusSuccess = lazy(() => com.google.firebase.remoteconfig.FirebaseRemoteConfig.LAST_FETCH_STATUS_SUCCESS);
const FetchStatusNoFetchYet = lazy(() => com.google.firebase.remoteconfig.FirebaseRemoteConfig.LAST_FETCH_STATUS_NO_FETCH_YET);
const FetchStatusFailure = lazy(() => com.google.firebase.remoteconfig.FirebaseRemoteConfig.LAST_FETCH_STATUS_FAILURE);
const FetchStatusThrottled = lazy(() => com.google.firebase.remoteconfig.FirebaseRemoteConfig.LAST_FETCH_STATUS_THROTTLED);
const NSRemoteConfig = lazy(() => org.nativescript.firebase.remote_config.FirebaseRemoteConfig);
export class ConfigValue implements IConfigValue {
_native: com.google.firebase.remoteconfig.FirebaseRemoteConfigValue;
static fromNative(value: com.google.firebase.remoteconfig.FirebaseRemoteConfigValue) {
if (value instanceof com.google.firebase.remoteconfig.FirebaseRemoteConfigValue) {
const val = new ConfigValue();
val._native = value;
return val;
}
return null;
}
get native() {
return this._native;
}
get android() {
return this.native;
}
asBoolean(): boolean {
return this.native.asBoolean();
}
asNumber(): number {
const value = this.native.asString();
return Number(value);
}
asString(): string {
return this.native.asString();
}
getSource(): 'default' | 'static' | 'remote' {
switch (this.native.getSource()) {
case SourceDefault():
return 'default';
case SourceStatic():
return 'static';
case SourceRemote():
return 'remote';
}
}
}
export class ConfigSettings implements IConfigSettings {
_native: com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings;
_builder: com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings.Builder;
constructor() {
this._builder = new com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings.Builder();
}
static fromNative(config: com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings) {
if (config instanceof com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings) {
const val = new ConfigSettings();
val._builder = null;
val._native = config;
return val;
}
return null;
}
get native() {
return this._native;
}
get android() {
return this.native;
}
get fetchTimeMillis(): number {
if (this._builder) {
return this._builder.getFetchTimeoutInSeconds() ?? 0 * 1000;
}
return this.native.getFetchTimeoutInSeconds?.() ?? 0 * 1000;
}
set fetchTimeMillis(value) {
if (!this._builder) {
this._builder = this.native.toBuilder();
}
this._builder.setFetchTimeoutInSeconds(value / 1000);
}
get minimumFetchIntervalMillis(): number {
if (this._builder) {
return this._builder.getMinimumFetchIntervalInSeconds() * 1000;
}
return this.native.getMinimumFetchIntervalInSeconds() * 1000;
}
set minimumFetchIntervalMillis(value) {
if (!this._builder) {
this._builder = this.native.toBuilder();
}
this._builder.setMinimumFetchIntervalInSeconds(value / 1000);
}
}
export class RemoteConfig implements IRemoteConfig {
_native: com.google.firebase.remoteconfig.FirebaseRemoteConfig;
_app: FirebaseApp;
constructor(app?: FirebaseApp) {
if (app?.native) {
this._native = com.google.firebase.remoteconfig.FirebaseRemoteConfig.getInstance(app.native);
} else {
if (defaultRemoteConfig) {
return defaultRemoteConfig;
}
defaultRemoteConfig = this;
this._native = com.google.firebase.remoteconfig.FirebaseRemoteConfig.getInstance();
}
}
get native() {
return this._native;
}
get android() {
return this.native;
}
get app(): FirebaseApp {
if (!this._app) {
// @ts-ignore
this._app = FirebaseApp.fromNative(this.native.app);
}
return this._app;
}
get fetchTimeMillis(): number {
return this.native.getInfo().getFetchTimeMillis?.() * 1000;
}
get lastFetchStatus(): 'success' | 'failure' | 'no_fetch_yet' | 'throttled' {
switch (this.native.getInfo().getLastFetchStatus()) {
case FetchStatusFailure():
return 'failure';
case FetchStatusSuccess():
return 'success';
case FetchStatusNoFetchYet():
return 'no_fetch_yet';
case FetchStatusThrottled():
return 'throttled';
}
}
get settings() {
return ConfigSettings.fromNative(this.native.getInfo().getConfigSettings());
}
set settings(value: ConfigSettings) {
this.native.setConfigSettingsAsync(value.native);
}
activate(): Promise<boolean> {
return new Promise((resolve, reject) => {
NSRemoteConfig().activate(
this.native,
new org.nativescript.firebase.remote_config.FirebaseRemoteConfig.Callback({
onSuccess(done) {
resolve(done as any);
},
onError(error) {
const err = FirebaseError.fromNative(error);
reject(err);
},
})
);
});
}
ensureInitialized(): Promise<void> {
return new Promise((resolve, reject) => {
NSRemoteConfig().ensureInitialized(
this.native,
new org.nativescript.firebase.remote_config.FirebaseRemoteConfig.Callback({
onSuccess(param0) {
resolve();
},
onError(error) {
const err = FirebaseError.fromNative(error);
reject(err);
},
})
);
});
}
fetch(expirationDurationSeconds?: number): Promise<void> {
let time = 43200000 / 1000;
return new Promise((resolve, reject) => {
if (typeof expirationDurationSeconds === 'number') {
time = expirationDurationSeconds;
}
NSRemoteConfig().fetch(
this.native,
time,
new org.nativescript.firebase.remote_config.FirebaseRemoteConfig.Callback({
onSuccess(param0) {
resolve();
},
onError(error) {
const err = FirebaseError.fromNative(error);
reject(err);
},
})
);
});
}
fetchAndActivate(): Promise<boolean> {
this.native.fetchAndActivate();
return new Promise((resolve, reject) => {
NSRemoteConfig().fetchAndActivate(
this.native,
new org.nativescript.firebase.remote_config.FirebaseRemoteConfig.Callback({
onSuccess(done) {
resolve(done as any);
},
onError(error) {
const err = FirebaseError.fromNative(error);
reject(err);
},
})
);
});
}
getAll() {
const nativeAll = this.native.getAll();
const keys = nativeAll.keySet().toArray();
const all = {};
const count = keys.length;
for (let i = 0; i < count; i++) {
const key = keys[i];
all[key] = ConfigValue.fromNative(this.native.getValue(key));
}
return all;
}
getBoolean(key: string): boolean {
return this.getValue(key)?.asBoolean?.();
}
getNumber(key: string): number {
return this.getValue(key)?.asNumber?.();
}
getString(key: string): string {
return this.getValue(key)?.asString?.();
}
getValue(key: string) {
return ConfigValue.fromNative(this.native.getValue(key));
}
reset(): Promise<void> {
return new Promise((resolve, reject) => {
NSRemoteConfig().reset(
this.native,
new org.nativescript.firebase.remote_config.FirebaseRemoteConfig.Callback({
onSuccess(params) {
resolve();
},
onError(error) {
const err = FirebaseError.fromNative(error);
reject(err);
},
})
);
});
}
setDefaults(defaults: ConfigDefaults): Promise<void> {
return new Promise((resolve, reject) => {
NSRemoteConfig().setDefaults(
this.native,
serialize(defaults),
new org.nativescript.firebase.remote_config.FirebaseRemoteConfig.Callback({
onSuccess(params) {
resolve();
},
onError(error) {
const err = FirebaseError.fromNative(error);
reject(err);
},
})
);
});
}
setDefaultsFromResource(resourceName: string): Promise<void> {
return new Promise((resolve, reject) => {
NSRemoteConfig().setDefaultsFromResource(
this.native,
resourceName.replace('res://', ''),
Utils.android.getApplicationContext(),
new org.nativescript.firebase.remote_config.FirebaseRemoteConfig.Callback({
onSuccess(params) {
resolve();
},
onError(error) {
const err = FirebaseError.fromNative(error);
reject(err);
},
})
);
});
}
}