@aguacerowx/react-native 0.0.50 → 0.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/src/main/java/com/aguacerowx/reactnative/WeatherFrameProcessorModule.java +36 -0
- package/ios/WeatherFrameProcessorModule.swift +33 -2
- package/lib/commonjs/WeatherLayerManager.js +54 -6
- package/lib/commonjs/WeatherLayerManager.js.map +1 -1
- package/lib/commonjs/aguaceroCoreDebugHooks.js +144 -0
- package/lib/commonjs/aguaceroCoreDebugHooks.js.map +1 -0
- package/lib/commonjs/aguaceroRnDebug.js +351 -0
- package/lib/commonjs/aguaceroRnDebug.js.map +1 -0
- package/lib/commonjs/index.js +37 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/nexrad/nexradAndroidController.js +13 -0
- package/lib/commonjs/nexrad/nexradAndroidController.js.map +1 -1
- package/lib/commonjs/nexrad/nexradDiag.js +7 -1
- package/lib/commonjs/nexrad/nexradDiag.js.map +1 -1
- package/lib/commonjs/satellite/satelliteAndroidController.js +9 -0
- package/lib/commonjs/satellite/satelliteAndroidController.js.map +1 -1
- package/lib/module/WeatherLayerManager.js +54 -6
- package/lib/module/WeatherLayerManager.js.map +1 -1
- package/lib/module/aguaceroCoreDebugHooks.js +136 -0
- package/lib/module/aguaceroCoreDebugHooks.js.map +1 -0
- package/lib/module/aguaceroRnDebug.js +334 -0
- package/lib/module/aguaceroRnDebug.js.map +1 -0
- package/lib/module/index.js +1 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/nexrad/nexradAndroidController.js +13 -0
- package/lib/module/nexrad/nexradAndroidController.js.map +1 -1
- package/lib/module/nexrad/nexradDiag.js +7 -1
- package/lib/module/nexrad/nexradDiag.js.map +1 -1
- package/lib/module/satellite/satelliteAndroidController.js +9 -0
- package/lib/module/satellite/satelliteAndroidController.js.map +1 -1
- package/lib/typescript/WeatherLayerManager.d.ts.map +1 -1
- package/lib/typescript/aguaceroCoreDebugHooks.d.ts +10 -0
- package/lib/typescript/aguaceroCoreDebugHooks.d.ts.map +1 -0
- package/lib/typescript/aguaceroRnDebug.d.ts +97 -0
- package/lib/typescript/aguaceroRnDebug.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +1 -0
- package/lib/typescript/nexrad/nexradAndroidController.d.ts.map +1 -1
- package/lib/typescript/nexrad/nexradDiag.d.ts.map +1 -1
- package/lib/typescript/satellite/satelliteAndroidController.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/WeatherLayerManager.js +78 -21
- package/src/aguaceroCoreDebugHooks.js +142 -0
- package/src/aguaceroRnDebug.js +328 -0
- package/src/index.js +8 -0
- package/src/nexrad/nexradAndroidController.js +11 -1
- package/src/nexrad/nexradDiag.js +7 -1
- package/src/satellite/satelliteAndroidController.js +9 -0
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.aguaceroDebug = aguaceroDebug;
|
|
7
|
+
exports.aguaceroDebugWarn = aguaceroDebugWarn;
|
|
8
|
+
exports.augmentProcessFrameOptionsForDebug = augmentProcessFrameOptionsForDebug;
|
|
9
|
+
exports.configureAguaceroRnDebug = configureAguaceroRnDebug;
|
|
10
|
+
exports.describeSecret = describeSecret;
|
|
11
|
+
exports.fingerprintSecret = fingerprintSecret;
|
|
12
|
+
exports.getAguaceroAuthDiagnosticSnapshot = getAguaceroAuthDiagnosticSnapshot;
|
|
13
|
+
exports.installGlobalFetchLogger = installGlobalFetchLogger;
|
|
14
|
+
exports.isAguaceroRnDebugEnabled = isAguaceroRnDebugEnabled;
|
|
15
|
+
exports.redactApiKeyFromUrl = redactApiKeyFromUrl;
|
|
16
|
+
exports.setAguaceroRnDebugEnabled = setAguaceroRnDebugEnabled;
|
|
17
|
+
exports.shouldLogAguaceroUrl = shouldLogAguaceroUrl;
|
|
18
|
+
var _reactNative = require("react-native");
|
|
19
|
+
/**
|
|
20
|
+
* React Native SDK auth / HTTP diagnostics.
|
|
21
|
+
*
|
|
22
|
+
* Enable in your app (pick one):
|
|
23
|
+
*
|
|
24
|
+
* 1. **Recommended** — pass `debug={true}` on {@link WeatherLayerManager}:
|
|
25
|
+
* ```jsx
|
|
26
|
+
* <WeatherLayerManager apiKey={key} debug gridRequestSiteOrigin="https://your-allowed-origin.com" />
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* 2. **Global** — before rendering weather (works in release builds):
|
|
30
|
+
* ```js
|
|
31
|
+
* import { configureAguaceroRnDebug } from '@aguacerowx/react-native';
|
|
32
|
+
* configureAguaceroRnDebug({ enabled: true });
|
|
33
|
+
* ```
|
|
34
|
+
* or: `globalThis.__AGUACERO_DEBUG__ = true` in your entry file.
|
|
35
|
+
*
|
|
36
|
+
* Logs use the prefix `[AguaceroRN][debug]` (Metro, Xcode, Logcat).
|
|
37
|
+
* API keys are never printed in full — only length, fingerprint, and whitespace hints.
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
const LOG_PREFIX = '[AguaceroRN][debug]';
|
|
41
|
+
|
|
42
|
+
/** @type {boolean | null} */
|
|
43
|
+
let _explicitEnabled = null;
|
|
44
|
+
let _fetchLoggerInstalled = false;
|
|
45
|
+
let _fetchSeq = 0;
|
|
46
|
+
const AGUACERO_URL_MARKERS = ['cloudfront.net', 'lambda-url.us-east-2.on.aws', 'amazonaws.com', 'noaa.gov'];
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @param {boolean} enabled
|
|
50
|
+
*/
|
|
51
|
+
function setAguaceroRnDebugEnabled(enabled) {
|
|
52
|
+
configureAguaceroRnDebug({
|
|
53
|
+
enabled: Boolean(enabled)
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @param {{ enabled?: boolean }} opts
|
|
59
|
+
*/
|
|
60
|
+
function configureAguaceroRnDebug(opts = {}) {
|
|
61
|
+
if (opts && typeof opts.enabled === 'boolean') {
|
|
62
|
+
_explicitEnabled = opts.enabled;
|
|
63
|
+
}
|
|
64
|
+
const on = isAguaceroRnDebugEnabled();
|
|
65
|
+
try {
|
|
66
|
+
if (typeof globalThis !== 'undefined') {
|
|
67
|
+
globalThis.__AGUACERO_DEBUG__ = on;
|
|
68
|
+
globalThis.__AGUACERO_WX_GRID_DEBUG__ = on;
|
|
69
|
+
globalThis.__AGUACERO_NEXRAD_DEBUG__ = on;
|
|
70
|
+
}
|
|
71
|
+
} catch {
|
|
72
|
+
/* ignore */
|
|
73
|
+
}
|
|
74
|
+
if (on) {
|
|
75
|
+
installGlobalFetchLogger();
|
|
76
|
+
aguaceroDebug('debug.enabled', {
|
|
77
|
+
platform: _reactNative.Platform.OS,
|
|
78
|
+
explicitFlag: _explicitEnabled,
|
|
79
|
+
globalFlag: safeGlobalDebugFlag()
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* True when `debug={true}`, {@link configureAguaceroRnDebug}, or `globalThis.__AGUACERO_DEBUG__ === true`.
|
|
86
|
+
* @returns {boolean}
|
|
87
|
+
*/
|
|
88
|
+
function isAguaceroRnDebugEnabled() {
|
|
89
|
+
if (_explicitEnabled === true) return true;
|
|
90
|
+
if (_explicitEnabled === false) {
|
|
91
|
+
try {
|
|
92
|
+
return typeof globalThis !== 'undefined' && globalThis.__AGUACERO_DEBUG__ === true;
|
|
93
|
+
} catch {
|
|
94
|
+
return false;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
try {
|
|
98
|
+
if (typeof __DEV__ !== 'undefined' && __DEV__) return false;
|
|
99
|
+
} catch {
|
|
100
|
+
/* ignore */
|
|
101
|
+
}
|
|
102
|
+
try {
|
|
103
|
+
return typeof globalThis !== 'undefined' && globalThis.__AGUACERO_DEBUG__ === true;
|
|
104
|
+
} catch {
|
|
105
|
+
return false;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
function safeGlobalDebugFlag() {
|
|
109
|
+
try {
|
|
110
|
+
return typeof globalThis !== 'undefined' ? globalThis.__AGUACERO_DEBUG__ === true : false;
|
|
111
|
+
} catch {
|
|
112
|
+
return false;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* @param {string | null | undefined} secret
|
|
118
|
+
* @returns {Record<string, unknown>}
|
|
119
|
+
*/
|
|
120
|
+
function describeSecret(secret) {
|
|
121
|
+
if (secret == null || secret === '') {
|
|
122
|
+
return {
|
|
123
|
+
present: false,
|
|
124
|
+
length: 0
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
const s = String(secret);
|
|
128
|
+
const trimmed = s.trim();
|
|
129
|
+
return {
|
|
130
|
+
present: true,
|
|
131
|
+
length: s.length,
|
|
132
|
+
trimmedLength: trimmed.length,
|
|
133
|
+
hasLeadingWhitespace: s.length > 0 && s !== trimmed && /^\s/.test(s),
|
|
134
|
+
hasTrailingWhitespace: s.length > 0 && s !== trimmed && /\s$/.test(s),
|
|
135
|
+
hasInternalWhitespace: /\s/.test(trimmed) && trimmed.indexOf(' ') >= 0,
|
|
136
|
+
fingerprint: fingerprintSecret(trimmed || s),
|
|
137
|
+
looksLikePlaceholder: /^(your[-_]?)?api[-_]?key|xxx+|test+$/i.test(trimmed)
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* @param {string} s
|
|
143
|
+
* @returns {string}
|
|
144
|
+
*/
|
|
145
|
+
function fingerprintSecret(s) {
|
|
146
|
+
if (!s) return '(empty)';
|
|
147
|
+
if (s.length <= 8) return `len${s.length}`;
|
|
148
|
+
return `${s.slice(0, 4)}…${s.slice(-4)} (len=${s.length})`;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* @param {string} u
|
|
153
|
+
* @returns {string}
|
|
154
|
+
*/
|
|
155
|
+
function redactApiKeyFromUrl(u) {
|
|
156
|
+
if (!u || typeof u !== 'string') return String(u);
|
|
157
|
+
return u.replace(/([?&])apiKey=[^&]*/gi, '$1apiKey=(redacted)');
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* @param {string} url
|
|
162
|
+
* @returns {boolean}
|
|
163
|
+
*/
|
|
164
|
+
function shouldLogAguaceroUrl(url) {
|
|
165
|
+
if (!url || typeof url !== 'string') return false;
|
|
166
|
+
const lower = url.toLowerCase();
|
|
167
|
+
return AGUACERO_URL_MARKERS.some(m => lower.includes(m));
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* @param {string} tag
|
|
172
|
+
* @param {Record<string, unknown> | undefined} detail
|
|
173
|
+
*/
|
|
174
|
+
function aguaceroDebug(tag, detail) {
|
|
175
|
+
if (!isAguaceroRnDebugEnabled()) return;
|
|
176
|
+
if (detail !== undefined) {
|
|
177
|
+
console.warn(`${LOG_PREFIX}[${tag}]`, detail);
|
|
178
|
+
} else {
|
|
179
|
+
console.warn(`${LOG_PREFIX}[${tag}]`);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Auth / HTTP failures: logged when debug is on (same prefix).
|
|
185
|
+
* @param {string} tag
|
|
186
|
+
* @param {Record<string, unknown> | undefined} detail
|
|
187
|
+
*/
|
|
188
|
+
function aguaceroDebugWarn(tag, detail) {
|
|
189
|
+
if (!isAguaceroRnDebugEnabled()) return;
|
|
190
|
+
if (detail !== undefined) {
|
|
191
|
+
console.warn(`${LOG_PREFIX}[WARN][${tag}]`, detail);
|
|
192
|
+
} else {
|
|
193
|
+
console.warn(`${LOG_PREFIX}[WARN][${tag}]`);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* @param {import('@aguacerowx/javascript-sdk').AguaceroCore | { apiKey?: string; bundleId?: string | null; gridRequestSiteOrigin?: string | null; baseGridUrl?: string; isReactNative?: boolean }} core
|
|
199
|
+
* @param {Record<string, unknown>} [extra]
|
|
200
|
+
*/
|
|
201
|
+
function getAguaceroAuthDiagnosticSnapshot(core, extra = {}) {
|
|
202
|
+
const apiKey = core?.apiKey;
|
|
203
|
+
const bundleId = core?.bundleId;
|
|
204
|
+
const origin = core?.gridRequestSiteOrigin;
|
|
205
|
+
return {
|
|
206
|
+
platform: _reactNative.Platform.OS,
|
|
207
|
+
isReactNative: Boolean(core?.isReactNative),
|
|
208
|
+
baseGridUrl: core?.baseGridUrl ?? null,
|
|
209
|
+
apiKey: describeSecret(apiKey),
|
|
210
|
+
bundleId: bundleId ? {
|
|
211
|
+
present: true,
|
|
212
|
+
value: String(bundleId),
|
|
213
|
+
length: String(bundleId).length
|
|
214
|
+
} : {
|
|
215
|
+
present: false,
|
|
216
|
+
hint: 'Install react-native-device-info for x-app-identifier on CDN requests'
|
|
217
|
+
},
|
|
218
|
+
gridRequestSiteOrigin: origin ? {
|
|
219
|
+
present: true,
|
|
220
|
+
value: String(origin),
|
|
221
|
+
length: String(origin).length
|
|
222
|
+
} : {
|
|
223
|
+
present: false,
|
|
224
|
+
hint: 'Pass gridRequestSiteOrigin on WeatherLayerManager — many CloudFront rules require Origin + Referer'
|
|
225
|
+
},
|
|
226
|
+
willSendAppIdentifier: Boolean(bundleId && core?.isReactNative),
|
|
227
|
+
willSendOriginHeaders: Boolean(origin && String(origin).trim()),
|
|
228
|
+
...extra
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* @param {Record<string, unknown>} options - {@link buildGridFrameProcessOptions} output
|
|
234
|
+
* @param {import('@aguacerowx/javascript-sdk').AguaceroCore} [core]
|
|
235
|
+
* @returns {Record<string, unknown>}
|
|
236
|
+
*/
|
|
237
|
+
function augmentProcessFrameOptionsForDebug(options, core) {
|
|
238
|
+
const out = {
|
|
239
|
+
...options
|
|
240
|
+
};
|
|
241
|
+
if (!isAguaceroRnDebugEnabled()) {
|
|
242
|
+
return out;
|
|
243
|
+
}
|
|
244
|
+
out.debug = true;
|
|
245
|
+
aguaceroDebug('processFrame.options', {
|
|
246
|
+
url: redactApiKeyFromUrl(out.url),
|
|
247
|
+
hasApiKeyInQuery: typeof out.url === 'string' && /[?&]apiKey=/i.test(out.url),
|
|
248
|
+
apiKey: describeSecret(out.apiKey),
|
|
249
|
+
bundleId: out.bundleId ? {
|
|
250
|
+
present: true,
|
|
251
|
+
value: String(out.bundleId)
|
|
252
|
+
} : {
|
|
253
|
+
present: false
|
|
254
|
+
},
|
|
255
|
+
gridRequestSiteOrigin: out.gridRequestSiteOrigin ?? null,
|
|
256
|
+
coreSnapshot: core ? getAguaceroAuthDiagnosticSnapshot(core) : undefined
|
|
257
|
+
});
|
|
258
|
+
return out;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* @param {string | Request} input
|
|
263
|
+
* @param {RequestInit | undefined} init
|
|
264
|
+
*/
|
|
265
|
+
function summarizeFetchRequest(input, init) {
|
|
266
|
+
const url = typeof input === 'string' ? input : input?.url;
|
|
267
|
+
const headers = new Headers(typeof input !== 'string' && input?.headers || init?.headers || undefined);
|
|
268
|
+
const headerRecord = {};
|
|
269
|
+
headers.forEach((v, k) => {
|
|
270
|
+
const lk = k.toLowerCase();
|
|
271
|
+
if (lk === 'x-api-key' || lk === 'authorization') {
|
|
272
|
+
headerRecord[k] = describeSecret(v);
|
|
273
|
+
} else {
|
|
274
|
+
headerRecord[k] = v;
|
|
275
|
+
}
|
|
276
|
+
});
|
|
277
|
+
return {
|
|
278
|
+
url: redactApiKeyFromUrl(url || ''),
|
|
279
|
+
method: init?.method || (typeof input !== 'string' ? input?.method : undefined) || 'GET',
|
|
280
|
+
headers: headerRecord,
|
|
281
|
+
hasApiKeyQuery: typeof url === 'string' && /[?&]apiKey=/i.test(url)
|
|
282
|
+
};
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* Patches `global.fetch` once to log Aguacero CDN / API traffic when debug is enabled.
|
|
287
|
+
*/
|
|
288
|
+
function installGlobalFetchLogger() {
|
|
289
|
+
if (_fetchLoggerInstalled || !isAguaceroRnDebugEnabled()) return;
|
|
290
|
+
if (typeof globalThis === 'undefined' || typeof globalThis.fetch !== 'function') return;
|
|
291
|
+
const originalFetch = globalThis.fetch.bind(globalThis);
|
|
292
|
+
_fetchLoggerInstalled = true;
|
|
293
|
+
globalThis.fetch = async function aguaceroInstrumentedFetch(input, init) {
|
|
294
|
+
const url = typeof input === 'string' ? input : input?.url;
|
|
295
|
+
const shouldLog = shouldLogAguaceroUrl(url || '');
|
|
296
|
+
const reqId = shouldLog ? `f${++_fetchSeq}` : null;
|
|
297
|
+
const started = Date.now();
|
|
298
|
+
if (shouldLog) {
|
|
299
|
+
aguaceroDebug('fetch.start', {
|
|
300
|
+
reqId,
|
|
301
|
+
...summarizeFetchRequest(input, init)
|
|
302
|
+
});
|
|
303
|
+
}
|
|
304
|
+
try {
|
|
305
|
+
const response = await originalFetch(input, init);
|
|
306
|
+
if (shouldLog) {
|
|
307
|
+
const elapsedMs = Date.now() - started;
|
|
308
|
+
const base = {
|
|
309
|
+
reqId,
|
|
310
|
+
status: response.status,
|
|
311
|
+
statusText: response.statusText,
|
|
312
|
+
ok: response.ok,
|
|
313
|
+
elapsedMs,
|
|
314
|
+
url: redactApiKeyFromUrl(url || '')
|
|
315
|
+
};
|
|
316
|
+
if (!response.ok) {
|
|
317
|
+
let bodySnippet = null;
|
|
318
|
+
try {
|
|
319
|
+
const clone = response.clone();
|
|
320
|
+
const text = await clone.text();
|
|
321
|
+
bodySnippet = text.length > 600 ? `${text.slice(0, 600)}…` : text;
|
|
322
|
+
} catch {
|
|
323
|
+
bodySnippet = '(could not read body)';
|
|
324
|
+
}
|
|
325
|
+
aguaceroDebugWarn('fetch.httpError', {
|
|
326
|
+
...base,
|
|
327
|
+
bodySnippet,
|
|
328
|
+
hint403: response.status === 403 ? '403 usually means: invalid/disabled API key, bundleId not allowlisted (x-app-identifier), or missing/wrong gridRequestSiteOrigin (Origin/Referer). Compare snapshot at core.created / processFrame.options.' : undefined
|
|
329
|
+
});
|
|
330
|
+
} else {
|
|
331
|
+
aguaceroDebug('fetch.ok', base);
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
return response;
|
|
335
|
+
} catch (err) {
|
|
336
|
+
if (shouldLog) {
|
|
337
|
+
aguaceroDebugWarn('fetch.throw', {
|
|
338
|
+
reqId,
|
|
339
|
+
message: err?.message || String(err),
|
|
340
|
+
elapsedMs: Date.now() - started,
|
|
341
|
+
url: redactApiKeyFromUrl(url || '')
|
|
342
|
+
});
|
|
343
|
+
}
|
|
344
|
+
throw err;
|
|
345
|
+
}
|
|
346
|
+
};
|
|
347
|
+
aguaceroDebug('fetch.hookInstalled', {
|
|
348
|
+
platform: _reactNative.Platform.OS
|
|
349
|
+
});
|
|
350
|
+
}
|
|
351
|
+
//# sourceMappingURL=aguaceroRnDebug.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_reactNative","require","LOG_PREFIX","_explicitEnabled","_fetchLoggerInstalled","_fetchSeq","AGUACERO_URL_MARKERS","setAguaceroRnDebugEnabled","enabled","configureAguaceroRnDebug","Boolean","opts","on","isAguaceroRnDebugEnabled","globalThis","__AGUACERO_DEBUG__","__AGUACERO_WX_GRID_DEBUG__","__AGUACERO_NEXRAD_DEBUG__","installGlobalFetchLogger","aguaceroDebug","platform","Platform","OS","explicitFlag","globalFlag","safeGlobalDebugFlag","__DEV__","describeSecret","secret","present","length","s","String","trimmed","trim","trimmedLength","hasLeadingWhitespace","test","hasTrailingWhitespace","hasInternalWhitespace","indexOf","fingerprint","fingerprintSecret","looksLikePlaceholder","slice","redactApiKeyFromUrl","u","replace","shouldLogAguaceroUrl","url","lower","toLowerCase","some","m","includes","tag","detail","undefined","console","warn","aguaceroDebugWarn","getAguaceroAuthDiagnosticSnapshot","core","extra","apiKey","bundleId","origin","gridRequestSiteOrigin","isReactNative","baseGridUrl","value","hint","willSendAppIdentifier","willSendOriginHeaders","augmentProcessFrameOptionsForDebug","options","out","debug","hasApiKeyInQuery","coreSnapshot","summarizeFetchRequest","input","init","headers","Headers","headerRecord","forEach","v","k","lk","method","hasApiKeyQuery","fetch","originalFetch","bind","aguaceroInstrumentedFetch","shouldLog","reqId","started","Date","now","response","elapsedMs","base","status","statusText","ok","bodySnippet","clone","text","hint403","err","message"],"sourceRoot":"..\\..\\src","sources":["aguaceroRnDebug.js"],"mappings":"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","ignoreList":[]}
|
package/lib/commonjs/index.js
CHANGED
|
@@ -33,8 +33,45 @@ Object.defineProperty(exports, "WeatherLayerManager", {
|
|
|
33
33
|
return _WeatherLayerManager.WeatherLayerManager;
|
|
34
34
|
}
|
|
35
35
|
});
|
|
36
|
+
Object.defineProperty(exports, "aguaceroDebug", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function () {
|
|
39
|
+
return _aguaceroRnDebug.aguaceroDebug;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
Object.defineProperty(exports, "aguaceroDebugWarn", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function () {
|
|
45
|
+
return _aguaceroRnDebug.aguaceroDebugWarn;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(exports, "configureAguaceroRnDebug", {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function () {
|
|
51
|
+
return _aguaceroRnDebug.configureAguaceroRnDebug;
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
Object.defineProperty(exports, "getAguaceroAuthDiagnosticSnapshot", {
|
|
55
|
+
enumerable: true,
|
|
56
|
+
get: function () {
|
|
57
|
+
return _aguaceroRnDebug.getAguaceroAuthDiagnosticSnapshot;
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
Object.defineProperty(exports, "isAguaceroRnDebugEnabled", {
|
|
61
|
+
enumerable: true,
|
|
62
|
+
get: function () {
|
|
63
|
+
return _aguaceroRnDebug.isAguaceroRnDebugEnabled;
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
Object.defineProperty(exports, "setAguaceroRnDebugEnabled", {
|
|
67
|
+
enumerable: true,
|
|
68
|
+
get: function () {
|
|
69
|
+
return _aguaceroRnDebug.setAguaceroRnDebugEnabled;
|
|
70
|
+
}
|
|
71
|
+
});
|
|
36
72
|
var _MapManager = require("./MapManager");
|
|
37
73
|
var _WeatherLayerManager = require("./WeatherLayerManager");
|
|
74
|
+
var _aguaceroRnDebug = require("./aguaceroRnDebug");
|
|
38
75
|
var _GridRenderLayerNativeComponent = _interopRequireDefault(require("./GridRenderLayerNativeComponent"));
|
|
39
76
|
var _nwsAndroidConstants = require("./nws/nwsAndroidConstants");
|
|
40
77
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_MapManager","require","_WeatherLayerManager","_GridRenderLayerNativeComponent","_interopRequireDefault","_nwsAndroidConstants","e","__esModule","default"],"sourceRoot":"..\\..\\src","sources":["index.js"],"mappings":"
|
|
1
|
+
{"version":3,"names":["_MapManager","require","_WeatherLayerManager","_aguaceroRnDebug","_GridRenderLayerNativeComponent","_interopRequireDefault","_nwsAndroidConstants","e","__esModule","default"],"sourceRoot":"..\\..\\src","sources":["index.js"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,WAAA,GAAAC,OAAA;AACA,IAAAC,oBAAA,GAAAD,OAAA;AACA,IAAAE,gBAAA,GAAAF,OAAA;AAQA,IAAAG,+BAAA,GAAAC,sBAAA,CAAAJ,OAAA;AACA,IAAAK,oBAAA,GAAAL,OAAA;AAGmC,SAAAI,uBAAAE,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA","ignoreList":[]}
|
|
@@ -13,6 +13,7 @@ var _nexradCrossSectionSampleAtLatLonBundled = require("./nexradCrossSectionSamp
|
|
|
13
13
|
var _nexradLutBuild = require("./nexradLutBuild.js");
|
|
14
14
|
var _reactNative = require("react-native");
|
|
15
15
|
var _nexradDiag = require("./nexradDiag.js");
|
|
16
|
+
var _aguaceroRnDebug = require("../aguaceroRnDebug");
|
|
16
17
|
/**
|
|
17
18
|
* AguaceroCore NEXRAD → Android native custom layer (parity with mapsgl {@link NexradWeatherController}).
|
|
18
19
|
*/
|
|
@@ -220,6 +221,11 @@ class NexradAndroidController {
|
|
|
220
221
|
(0, _radarArchiveCoreBundled.setNexradSitesFetchAuth)(core.apiKey || '', core.bundleId || '');
|
|
221
222
|
}
|
|
222
223
|
(0, _radarArchiveCoreBundled.setNexradArchiveSiteOrigin)(core.gridRequestSiteOrigin || '');
|
|
224
|
+
if ((0, _aguaceroRnDebug.isAguaceroRnDebugEnabled)()) {
|
|
225
|
+
(0, _aguaceroRnDebug.aguaceroDebug)('nexrad.authConfigured', (0, _aguaceroRnDebug.getAguaceroAuthDiagnosticSnapshot)(core, {
|
|
226
|
+
phase: 'NexradAndroidController.constructor'
|
|
227
|
+
}));
|
|
228
|
+
}
|
|
223
229
|
}
|
|
224
230
|
_trimNativeGpuReadyKeys(max) {
|
|
225
231
|
while (this._nativeGpuReadyKeys.size > max) {
|
|
@@ -683,6 +689,13 @@ class NexradAndroidController {
|
|
|
683
689
|
(0, _radarArchiveCoreBundled.setNexradArchiveBundleId)(this.core.bundleId || '');
|
|
684
690
|
(0, _radarArchiveCoreBundled.setNexradArchiveSiteOrigin)(this.core.gridRequestSiteOrigin || '');
|
|
685
691
|
(0, _radarArchiveCoreBundled.setNexradSitesFetchAuth)(this.core.apiKey || '', this.core.bundleId || '');
|
|
692
|
+
if ((0, _aguaceroRnDebug.isAguaceroRnDebugEnabled)()) {
|
|
693
|
+
(0, _aguaceroRnDebug.aguaceroDebug)('nexrad.authConfigured', (0, _aguaceroRnDebug.getAguaceroAuthDiagnosticSnapshot)(this.core, {
|
|
694
|
+
phase: 'NexradAndroidController.preload',
|
|
695
|
+
site: state.nexradSite,
|
|
696
|
+
product: state.nexradProduct
|
|
697
|
+
}));
|
|
698
|
+
}
|
|
686
699
|
const snapshot = {
|
|
687
700
|
...state
|
|
688
701
|
};
|