-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathInstabugApi.java
507 lines (433 loc) · 17.4 KB
/
InstabugApi.java
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
package com.instabug.flutter.modules;
import android.app.Application;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.util.Log;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.VisibleForTesting;
import com.instabug.flutter.generated.InstabugPigeon;
import com.instabug.flutter.util.ArgsRegistry;
import com.instabug.flutter.util.Reflection;
import com.instabug.flutter.util.ThreadManager;
import com.instabug.library.internal.crossplatform.CoreFeature;
import com.instabug.library.internal.crossplatform.CoreFeaturesState;
import com.instabug.library.internal.crossplatform.FeaturesStateListener;
import com.instabug.library.internal.crossplatform.InternalCore;
import com.instabug.library.Feature;
import com.instabug.library.Instabug;
import com.instabug.library.InstabugColorTheme;
import com.instabug.library.InstabugCustomTextPlaceHolder;
import com.instabug.library.IssueType;
import com.instabug.library.Platform;
import com.instabug.library.ReproConfigurations;
import com.instabug.library.featuresflags.model.IBGFeatureFlag;
import com.instabug.library.internal.module.InstabugLocale;
import com.instabug.library.invocation.InstabugInvocationEvent;
import com.instabug.library.model.NetworkLog;
import com.instabug.library.ui.onboarding.WelcomeMessage;
import io.flutter.FlutterInjector;
import io.flutter.embedding.engine.loader.FlutterLoader;
import io.flutter.plugin.common.BinaryMessenger;
import org.jetbrains.annotations.NotNull;
import org.json.JSONObject;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.concurrent.Callable;
public class InstabugApi implements InstabugPigeon.InstabugHostApi {
private final String TAG = InstabugApi.class.getName();
private final Context context;
private final Callable<Bitmap> screenshotProvider;
private final InstabugCustomTextPlaceHolder placeHolder = new InstabugCustomTextPlaceHolder();
private final InstabugPigeon.FeatureFlagsFlutterApi featureFlagsFlutterApi;
public static void init(BinaryMessenger messenger, Context context, Callable<Bitmap> screenshotProvider) {
final InstabugPigeon.FeatureFlagsFlutterApi flutterApi = new InstabugPigeon.FeatureFlagsFlutterApi(messenger);
final InstabugApi api = new InstabugApi(context, screenshotProvider, flutterApi);
InstabugPigeon.InstabugHostApi.setup(messenger, api);
}
public InstabugApi(Context context, Callable<Bitmap> screenshotProvider, InstabugPigeon.FeatureFlagsFlutterApi featureFlagsFlutterApi) {
this.context = context;
this.screenshotProvider = screenshotProvider;
this.featureFlagsFlutterApi = featureFlagsFlutterApi;
}
@VisibleForTesting
public void setCurrentPlatform() {
try {
Method method = Reflection.getMethod(Class.forName("com.instabug.library.Instabug"), "setCurrentPlatform", int.class);
if (method != null) {
method.invoke(null, Platform.FLUTTER);
} else {
Log.e(TAG, "setCurrentPlatform was not found by reflection");
}
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void setEnabled(@NonNull Boolean isEnabled) {
try {
if (isEnabled)
Instabug.enable();
else
Instabug.disable();
} catch (Exception e) {
e.printStackTrace();
}
}
@NotNull
@Override
public Boolean isEnabled() {
return Instabug.isEnabled();
}
@NotNull
@Override
public Boolean isBuilt() { return Instabug.isBuilt(); }
@Override
public void init(@NonNull String token, @NonNull List<String> invocationEvents, @NonNull String debugLogsLevel) {
setCurrentPlatform();
InstabugInvocationEvent[] invocationEventsArray = new InstabugInvocationEvent[invocationEvents.size()];
for (int i = 0; i < invocationEvents.size(); i++) {
String key = invocationEvents.get(i);
invocationEventsArray[i] = ArgsRegistry.invocationEvents.get(key);
}
final Application application = (Application) context;
final int parsedLogLevel = ArgsRegistry.sdkLogLevels.get(debugLogsLevel);
new Instabug.Builder(application, token)
.setInvocationEvents(invocationEventsArray)
.setSdkDebugLogsLevel(parsedLogLevel)
.build();
Instabug.setScreenshotProvider(screenshotProvider);
}
@Override
public void show() {
Instabug.show();
}
@Override
public void showWelcomeMessageWithMode(@NonNull String mode) {
WelcomeMessage.State resolvedMode = ArgsRegistry.welcomeMessageStates.get(mode);
Instabug.showWelcomeMessage(resolvedMode);
}
@Override
public void identifyUser(@NonNull String email, @Nullable String name, @Nullable String userId) {
Instabug.identifyUser(name, email, userId);
}
@Override
public void setUserData(@NonNull String data) {
Instabug.setUserData(data);
}
@Override
public void logUserEvent(@NonNull String name) {
Instabug.logUserEvent(name);
}
@Override
public void logOut() {
Instabug.logoutUser();
}
@Override
public void setLocale(@NonNull String locale) {
final InstabugLocale resolvedLocale = ArgsRegistry.locales.get(locale);
Instabug.setLocale(new Locale(resolvedLocale.getCode(), resolvedLocale.getCountry()));
}
@Override
public void setColorTheme(@NonNull String theme) {
InstabugColorTheme resolvedTheme = ArgsRegistry.colorThemes.get(theme);
Instabug.setColorTheme(resolvedTheme);
}
@Override
public void setWelcomeMessageMode(@NonNull String mode) {
WelcomeMessage.State resolvedMode = ArgsRegistry.welcomeMessageStates.get(mode);
Instabug.setWelcomeMessageState(resolvedMode);
}
@Override
public void setPrimaryColor(@NonNull Long color) {
Instabug.setPrimaryColor(color.intValue());
}
@Override
public void setSessionProfilerEnabled(@NonNull Boolean enabled) {
if (enabled) {
Instabug.setSessionProfilerState(Feature.State.ENABLED);
} else {
Instabug.setSessionProfilerState(Feature.State.DISABLED);
}
}
@Override
public void setValueForStringWithKey(@NonNull String value, @NonNull String key) {
if (ArgsRegistry.placeholders.containsKey(key)) {
InstabugCustomTextPlaceHolder.Key resolvedKey = ArgsRegistry.placeholders.get(key);
placeHolder.set(resolvedKey, value);
Instabug.setCustomTextPlaceHolders(placeHolder);
} else {
Log.i(TAG, "Instabug: " + key + " is only relevant to iOS.");
}
}
@Override
public void appendTags(@NonNull List<String> tags) {
Instabug.addTags(tags.toArray(new String[0]));
}
@Override
public void resetTags() {
Instabug.resetTags();
}
@Override
public void getTags(InstabugPigeon.Result<List<String>> result) {
ThreadManager.runOnBackground(
new Runnable() {
@Override
public void run() {
final List<String> tags = Instabug.getTags();
ThreadManager.runOnMainThread(new Runnable() {
@Override
public void run() {
result.success(tags);
}
});
}
}
);
}
@Override
public void addExperiments(@NonNull List<String> experiments) {
Instabug.addExperiments(experiments);
}
@Override
public void removeExperiments(@NonNull List<String> experiments) {
Instabug.removeExperiments(experiments);
}
@Override
public void clearAllExperiments() {
Instabug.clearAllExperiments();
}
@Override
public void addFeatureFlags(@NonNull Map<String, String> featureFlags) {
try {
List<IBGFeatureFlag> features = new ArrayList<>();
for (Map.Entry<String, String> entry : featureFlags.entrySet()) {
features.add(new IBGFeatureFlag(entry.getKey(), entry.getValue().isEmpty() ? null : entry.getValue()));
}
Instabug.addFeatureFlags(features);
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void removeFeatureFlags(@NonNull List<String> featureFlags) {
try {
Instabug.removeFeatureFlag(featureFlags);
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void removeAllFeatureFlags() {
try {
Instabug.removeAllFeatureFlags();
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void setUserAttribute(@NonNull String value, @NonNull String key) {
Instabug.setUserAttribute(key, value);
}
@Override
public void removeUserAttribute(@NonNull String key) {
Instabug.removeUserAttribute(key);
}
@Override
public void getUserAttributeForKey(@NonNull String key, InstabugPigeon.Result<String> result) {
ThreadManager.runOnBackground(
new Runnable() {
@Override
public void run() {
final String attribute = Instabug.getUserAttribute(key);
ThreadManager.runOnMainThread(new Runnable() {
@Override
public void run() {
result.success(attribute);
}
});
}
}
);
}
@Override
public void getUserAttributes(InstabugPigeon.Result<Map<String, String>> result) {
ThreadManager.runOnBackground(
new Runnable() {
@Override
public void run() {
final Map<String, String> attributes = Instabug.getAllUserAttributes();
ThreadManager.runOnMainThread(new Runnable() {
@Override
public void run() {
result.success(attributes);
}
});
}
}
);
}
@Override
public void setReproStepsConfig(@Nullable String bugMode, @Nullable String crashMode, @Nullable String sessionReplayMode) {
try {
final ReproConfigurations.Builder builder = new ReproConfigurations.Builder();
if (bugMode != null) {
final Integer resolvedBugMode = ArgsRegistry.reproModes.get(bugMode);
builder.setIssueMode(IssueType.Bug, resolvedBugMode);
}
if (crashMode != null) {
final Integer resolvedCrashMode = ArgsRegistry.reproModes.get(crashMode);
builder.setIssueMode(IssueType.Crash, resolvedCrashMode);
}
if (sessionReplayMode != null) {
final Integer resolvedSessionReplayMode = ArgsRegistry.reproModes.get(sessionReplayMode);
builder.setIssueMode(IssueType.SessionReplay, resolvedSessionReplayMode);
}
final ReproConfigurations config = builder.build();
Instabug.setReproConfigurations(config);
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void reportScreenChange(@NonNull String screenName) {
try {
Method method = Reflection.getMethod(Class.forName("com.instabug.library.Instabug"), "reportScreenChange",
Bitmap.class, String.class);
if (method != null) {
method.invoke(null, null, screenName);
}
} catch (Exception e) {
e.printStackTrace();
}
}
@VisibleForTesting
public Bitmap getBitmapForAsset(String assetName) {
try {
FlutterLoader loader = FlutterInjector.instance().flutterLoader();
String key = loader.getLookupKeyForAsset(assetName);
InputStream stream = context.getAssets().open(key);
return BitmapFactory.decodeStream(stream);
} catch (IOException exception) {
return null;
}
}
@Override
public void setCustomBrandingImage(@NonNull String light, @NonNull String dark) {
try {
Bitmap lightLogoVariant = getBitmapForAsset(light);
Bitmap darkLogoVariant = getBitmapForAsset(dark);
if (lightLogoVariant == null) {
lightLogoVariant = darkLogoVariant;
}
if (darkLogoVariant == null) {
darkLogoVariant = lightLogoVariant;
}
if (lightLogoVariant == null) {
throw new Exception("Couldn't find the light or dark logo images");
}
Method method = Reflection.getMethod(Class.forName("com.instabug.library.Instabug"), "setCustomBrandingImage", Bitmap.class, Bitmap.class);
if (method != null) {
method.invoke(null, lightLogoVariant, darkLogoVariant);
}
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void setFont(@NonNull String font) {
// iOS Only
}
@Override
public void addFileAttachmentWithURL(@NonNull String filePath, @NonNull String fileName) {
final File file = new File(filePath);
if (file.exists()) {
Instabug.addFileAttachment(Uri.fromFile(file), fileName);
}
}
@Override
public void addFileAttachmentWithData(@NonNull byte[] data, @NonNull String fileName) {
Instabug.addFileAttachment(data, fileName);
}
@Override
public void clearFileAttachments() {
Instabug.clearFileAttachment();
}
@Override
public void networkLog(@NonNull Map<String, Object> data) {
try {
NetworkLog networkLog = new NetworkLog();
String date = System.currentTimeMillis() + "";
networkLog.setDate(date);
networkLog.setUrl((String) data.get("url"));
networkLog.setRequest((String) data.get("requestBody"));
networkLog.setResponse((String) data.get("responseBody"));
networkLog.setMethod((String) data.get("method"));
networkLog.setResponseCode((Integer) data.get("responseCode"));
networkLog.setRequestHeaders((new JSONObject((HashMap<String, String>) data.get("requestHeaders"))).toString(4));
networkLog.setResponseHeaders((new JSONObject((HashMap<String, String>) data.get("responseHeaders"))).toString(4));
networkLog.setTotalDuration(((Number) data.get("duration")).longValue() / 1000);
networkLog.insert();
} catch (Exception e) {
Log.e(TAG, "Network logging failed");
}
}
@Override
public void registerFeatureFlagChangeListener() {
try {
InternalCore.INSTANCE._setFeaturesStateListener(new FeaturesStateListener() {
@Override
public void invoke(@NonNull CoreFeaturesState featuresState) {
ThreadManager.runOnMainThread(new Runnable() {
@Override
public void run() {
featureFlagsFlutterApi.onW3CFeatureFlagChange(featuresState.isW3CExternalTraceIdEnabled(),
featuresState.isAttachingGeneratedHeaderEnabled(),
featuresState.isAttachingCapturedHeaderEnabled(),
new InstabugPigeon.FeatureFlagsFlutterApi.Reply<Void>() {
@Override
public void reply(Void reply) {
}
});
}
});
}
});
} catch (Exception e) {
e.printStackTrace();
}
}
@NonNull
@Override
public Map<String, Boolean> isW3CFeatureFlagsEnabled() {
Map<String, Boolean> params = new HashMap<String, Boolean>();
params.put("isW3cExternalTraceIDEnabled", InternalCore.INSTANCE._isFeatureEnabled(CoreFeature.W3C_EXTERNAL_TRACE_ID));
params.put("isW3cExternalGeneratedHeaderEnabled", InternalCore.INSTANCE._isFeatureEnabled(CoreFeature.W3C_ATTACHING_GENERATED_HEADER));
params.put("isW3cCaughtHeaderEnabled", InternalCore.INSTANCE._isFeatureEnabled(CoreFeature.W3C_ATTACHING_CAPTURED_HEADER));
return params;
}
@Override
public void willRedirectToStore() {
Instabug.willRedirectToStore();
}
@Override
public void setAutoMaskingEnabled(@NonNull Boolean isEnabled) {
try {
if (isEnabled)
Instabug.setNetworkAutoMaskingState(Feature.State.ENABLED);
else
Instabug.setNetworkAutoMaskingState(Feature.State.DISABLED);
} catch (Exception e) {
e.printStackTrace();
}
}
}