Files
instabug-reactnative/android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativeModule.java
T

508 lines
17 KiB
Java
Raw Normal View History

2016-10-04 11:41:36 +02:00
package com.instabug.reactlibrary;
2017-01-23 16:58:39 +02:00
import android.net.Uri;
2016-10-04 11:41:36 +02:00
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactContextBaseJavaModule;
import com.facebook.react.bridge.ReactMethod;
import com.instabug.library.Instabug;
2016-10-18 11:09:06 +02:00
import com.instabug.library.internal.module.InstabugLocale;
import com.instabug.library.invocation.InstabugInvocationEvent;
import com.instabug.library.invocation.InstabugInvocationMode;
2017-01-23 16:58:39 +02:00
2016-11-03 18:09:58 +02:00
import java.util.ArrayList;
2016-10-20 16:24:17 +02:00
import java.util.HashMap;
2016-11-03 18:09:58 +02:00
import java.util.Locale;
2016-10-20 16:24:17 +02:00
import java.util.Map;
2016-10-04 11:41:36 +02:00
public class RNInstabugReactnativeModule extends ReactContextBaseJavaModule {
2017-01-10 13:25:09 -08:00
private Instabug mInstabug;
private InstabugInvocationEvent invocationEvent;
private final String INVOCATION_EVENT_NONE = "none";
private final String INVOCATION_EVENT_SHAKE = "shake";
private final String INVOCATION_EVENT_SCREENSHOT = "screenshot";
private final String INVOCATION_EVENT_TWO_FINGERS_SWIPE = "swipe";
private final String INVOCATION_EVENT_FLOATING_BUTTON = "button";
private final String INVOCATION_MODE_NEW_BUG = "bug";
private final String INVOCATION_MODE_NEW_FEEDBACK = "feedback";
private final String INVOCATION_MODE_NEW_CHAT = "chat";
private final String INVOCATION_MODE_CHATS_LIST = "chats";
private final String LOCALE_ARABIC = "arabic";
private final String LOCALE_CHINESE_SIMPLIFIED = "chinesesimplified";
private final String LOCALE_CHINESE_TRADITIONAL = "chinesetraditional";
private final String LOCALE_CZECH = "czech";
private final String LOCALE_ENGLISH = "english";
private final String LOCALE_FRENCH = "french";
private final String LOCALE_GERMAN = "german";
private final String LOCALE_KOREAN = "korean";
private final String LOCALE_ITALIAN = "italian";
private final String LOCALE_JAPANESE = "japanese";
private final String LOCALE_POLISH = "polish";
private final String LOCALE_PORTUGUESE_BRAZIL = "portuguesebrazil";
private final String LOCALE_RUSSIAN = "russian";
private final String LOCALE_SPANISH = "spanish";
private final String LOCALE_SWEDISH = "swedish";
private final String LOCALE_TURKISH = "turkish";
2016-10-04 11:41:36 +02:00
2017-01-23 16:58:39 +02:00
public RNInstabugReactnativeModule(ReactApplicationContext reactContext, Instabug mInstabug) {
super(reactContext);
this.mInstabug = mInstabug;
}
2016-10-04 11:41:36 +02:00
2017-01-23 16:58:39 +02:00
@Override
public String getName() {
return "Instabug";
}
2016-10-04 11:41:36 +02:00
2017-01-23 16:58:39 +02:00
/**
2016-11-02 15:12:42 +02:00
* invoke sdk manually
2016-10-17 19:58:43 +02:00
*/
@ReactMethod
2017-01-23 16:58:39 +02:00
public void invoke() {
2016-11-03 18:09:58 +02:00
try {
2017-01-23 16:58:39 +02:00
mInstabug.invoke();
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
}
2017-01-23 16:58:39 +02:00
/**
2017-01-10 13:25:09 -08:00
* invoke sdk manually with desire invocation mode
2016-11-03 18:09:58 +02:00
*
* @param invocation mode
*/
@ReactMethod
2017-01-23 16:58:39 +02:00
public void invokeWithInvocationMode(String invocationMode) {
2017-01-10 13:25:09 -08:00
InstabugInvocationMode mode;
if (invocationMode.equals(INVOCATION_MODE_NEW_BUG)) {
2016-11-03 18:09:58 +02:00
mode = InstabugInvocationMode.NEW_BUG;
2017-01-10 13:25:09 -08:00
} else if (invocationMode.equals(INVOCATION_MODE_NEW_FEEDBACK)) {
2016-11-03 18:09:58 +02:00
mode = InstabugInvocationMode.NEW_FEEDBACK;
2017-01-23 16:58:39 +02:00
} else if (invocationMode.equals(INVOCATION_MODE_NEW_CHAT)) {
2016-11-03 18:09:58 +02:00
mode = InstabugInvocationMode.NEW_CHAT;
2017-01-23 16:58:39 +02:00
} else if (invocationMode.equals(INVOCATION_MODE_CHATS_LIST)) {
2016-11-03 18:09:58 +02:00
mode = InstabugInvocationMode.CHATS_LIST;
2017-01-10 13:25:09 -08:00
} else {
2016-11-03 18:09:58 +02:00
mode = InstabugInvocationMode.PROMPT_OPTION;
}
2017-01-10 13:25:09 -08:00
2017-01-23 16:58:39 +02:00
try {
mInstabug.invoke(mode);
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
}
2017-01-23 16:58:39 +02:00
/**
2016-11-03 18:09:58 +02:00
* Dismisses all visible Instabug views
*/
@ReactMethod
2017-01-23 16:58:39 +02:00
public void dismiss() {
2016-11-03 18:09:58 +02:00
try {
2017-01-23 16:58:39 +02:00
mInstabug.dismiss();
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
2016-10-17 19:58:43 +02:00
}
2017-01-23 16:58:39 +02:00
/**
2016-10-04 11:41:36 +02:00
* Adds tag(s) to issues before sending them
*
* @param tags
*/
@ReactMethod
public void addTags(String tags) {
try {
String[] result = tags.split(",");
mInstabug.resetTags(); //clear last commit tags
mInstabug.addTags(result);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Change Locale of Instabug UI elements(defaults to English)
*
2017-01-09 17:11:33 +02:00
* @param String instabugLocale
2016-10-04 11:41:36 +02:00
*/
@ReactMethod
2017-01-09 17:11:33 +02:00
public void changeLocale(String instabugLocale) {
2016-10-04 11:41:36 +02:00
try {
2017-01-09 17:11:33 +02:00
mInstabug.changeLocale(getLocaleByKey(instabugLocale));
2016-10-04 11:41:36 +02:00
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* The file at filePath will be uploaded along upcoming reports with the name fileNameWithExtension
*
* @param fileUri
* @param fileNameWithExtension
*/
@ReactMethod
public void setFileAttachment(String fileUri, String fileNameWithExtension) {
try {
Uri uri = Uri.parse(fileUri);
mInstabug.setFileAttachment(uri, fileNameWithExtension);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* If your app already acquires the user's email address and you provide it to this method,
* Instabug will pre-fill the user email in reports.
*
* @param userEmail
*/
@ReactMethod
public void setUserEmail(String userEmail) {
try {
mInstabug.setUserEmail(userEmail);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Sets the user name that is used in the dashboard's contacts.
*
* @param username
*/
@ReactMethod
2017-05-07 05:05:36 +02:00
public void setUserName(String username) {
2016-10-04 11:41:36 +02:00
try {
2017-05-18 13:31:18 +03:00
mInstabug.setUsername(username);
2016-10-04 11:41:36 +02:00
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Adds specific user data that you need to be added to the reports
*
* @param userData
*/
@ReactMethod
public void setUserData(String userData) {
try {
mInstabug.setUserData(userData);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Call this method to display the discovery dialog explaining the shake gesture or the two
* finger swipe gesture, if you've enabled it.
* i.e: This method is automatically called on first run of the application
*/
@ReactMethod
public void showIntroMessage() {
try {
mInstabug.showIntroMessage();
} catch (Exception e) {
e.printStackTrace();
}
}
2016-10-20 16:24:17 +02:00
2017-01-23 16:58:39 +02:00
/**
* Set the primary color that the SDK will use to tint certain UI elements in the SDK
2016-11-03 18:09:58 +02:00
*
* @param primaryColorValue The value of the primary color ,
2017-01-23 16:58:39 +02:00
* whatever this color was parsed from a resource color or hex color or RGB color values
2016-11-03 18:09:58 +02:00
*/
@ReactMethod
public void setPrimaryColor(int primaryColor) {
2017-01-23 16:58:39 +02:00
try {
2016-11-03 18:09:58 +02:00
mInstabug.setPrimaryColor(primaryColor);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Sets whether attachments in bug reporting and in-app messaging are enabled or not.
2017-01-23 16:58:39 +02:00
*
* @param {boolean} screenShot A boolean to enable or disable screenshot attachments.
* @param {boolean} extraScreenShot A boolean to enable or disable extra screenshot attachments.
* @param {boolean} galleryImage A boolean to enable or disable gallery image attachments.
* @param {boolean} voiceNote A boolean to enable or disable voice note attachments.
* @param {boolean} screenRecording A boolean to enable or disable screen recording attachments.
*/
@ReactMethod
public void setAttachmentTypesEnabled(boolean screenshot, boolean extraScreenshot, boolean galleryImage, boolean voiceNote, boolean screenRecording) {
try {
mInstabug.setAttachmentTypesEnabled(screenshot, extraScreenshot, galleryImage, voiceNote, screenRecording);
} catch (Exception e) {
e.printStackTrace();
}
}
2016-11-03 18:09:58 +02:00
/**
* Appends a log message to Instabug internal log
* <p>
* These logs are then sent along the next uploaded report. All log messages are timestamped <br/>
* Logs aren't cleared per single application run. If you wish to reset the logs, use {@link #clearLog()}
* </p>
* Note: logs passed to this method are <b>NOT</b> printed to Logcat
*
* @param message log message
*/
@ReactMethod
2017-01-19 14:42:39 +02:00
public void IBGLog(String message) {
2016-11-03 18:09:58 +02:00
try {
mInstabug.log(message);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* @return all tags added using {@link #addTags(String...)}
* @see #resetTags()
*/
@ReactMethod
public ArrayList<String> getTags() {
2017-01-23 16:58:39 +02:00
ArrayList<String> tags = new ArrayList<String>();
2016-11-03 18:09:58 +02:00
try {
2017-01-23 16:58:39 +02:00
tags = mInstabug.getTags();
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
return tags;
}
/**
* Reset ALL tags added using {@link #addTags(String...)}
*/
@ReactMethod
public void resetTags() {
try {
mInstabug.resetTags();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* @return {@code true} if Instabug is enabled, {@code false} if it's disabled
* @see #enable()
* @see #disable()
*/
@ReactMethod
public boolean isEnabled() {
2017-01-23 16:58:39 +02:00
boolean isEnabled = false;
2016-11-03 18:09:58 +02:00
try {
2017-01-23 16:58:39 +02:00
isEnabled = mInstabug.isEnabled();
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
return isEnabled;
}
/**
* Enables all Instabug functionality
*/
@ReactMethod
public void enable() {
try {
mInstabug.enable();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Disables all Instabug functionality
*/
@ReactMethod
public void disable() {
try {
mInstabug.disable();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
2017-01-10 13:25:09 -08:00
* @return application token
2016-11-03 18:09:58 +02:00
*/
@ReactMethod
public String getAppToken() {
2017-01-23 16:58:39 +02:00
String appToken = "";
2016-11-03 18:09:58 +02:00
try {
2017-01-23 16:58:39 +02:00
appToken = mInstabug.getAppToken();
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
return appToken;
}
/**
* Get current unread count of messages for this user
*
* @return number of messages that are unread for this user
*/
@ReactMethod
public int getUnreadMessagesCount() {
2017-01-23 16:58:39 +02:00
int unreadMessages = 0;
2016-11-03 18:09:58 +02:00
try {
2017-01-23 16:58:39 +02:00
unreadMessages = mInstabug.getUnreadMessagesCount();
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
return unreadMessages;
}
/**
* Sets the event used to invoke Instabug SDK
2016-11-03 18:09:58 +02:00
*
* @param instabugInvocationEvent to be used to invoke SDK
* @see InstabugInvocationEvent
*/
@ReactMethod
public void setInvocationEvent(String invocationEventValue) {
2017-01-23 16:58:39 +02:00
InstabugInvocationEvent invocationEvent = InstabugInvocationEvent.FLOATING_BUTTON;
2016-11-03 18:09:58 +02:00
try {
2017-01-10 13:25:09 -08:00
//setting invocation event
2017-01-23 16:58:39 +02:00
if (invocationEventValue.equals(INVOCATION_EVENT_FLOATING_BUTTON)) {
invocationEvent = InstabugInvocationEvent.FLOATING_BUTTON;
} else if (invocationEventValue.equals(INVOCATION_EVENT_TWO_FINGERS_SWIPE)) {
invocationEvent = InstabugInvocationEvent.TWO_FINGER_SWIPE_LEFT;
} else if (invocationEventValue.equals(INVOCATION_EVENT_SHAKE)) {
invocationEvent = InstabugInvocationEvent.SHAKE;
} else if (invocationEventValue.equals(INVOCATION_EVENT_SCREENSHOT)) {
invocationEvent = InstabugInvocationEvent.SCREENSHOT_GESTURE;
} else if (invocationEventValue.equals(INVOCATION_EVENT_NONE)) {
invocationEvent = InstabugInvocationEvent.NONE;
2017-01-10 13:25:09 -08:00
}
2017-01-23 16:58:39 +02:00
mInstabug.changeInvocationEvent(invocationEvent);
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
2017-01-10 13:25:09 -08:00
2016-11-03 18:09:58 +02:00
}
/**
* Enabled/disable chat notification
*
* @param isChatNotificationEnable whether chat notification is reburied or not
*/
2017-01-10 13:25:09 -08:00
@ReactMethod
2016-11-03 18:09:58 +02:00
public void setChatNotificationEnabled(boolean isChatNotificationEnable) {
try {
2017-01-23 16:58:39 +02:00
mInstabug.setChatNotificationEnabled(isChatNotificationEnable);
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Enable/Disable debug logs from Instabug SDK
* Default state: disabled
*
* @param isDebugEnabled whether debug logs should be printed or not into LogCat
*/
@ReactMethod
public void setDebugEnabled(boolean isDebugEnabled) {
try {
2017-01-23 16:58:39 +02:00
mInstabug.setDebugEnabled(isDebugEnabled);
2016-11-03 18:09:58 +02:00
} catch (Exception e) {
e.printStackTrace();
}
}
2017-01-09 17:11:33 +02:00
private Locale getLocaleByKey(String instabugLocale) {
2017-01-23 16:58:39 +02:00
String localeInLowerCase = instabugLocale.toLowerCase();
2017-01-30 19:29:36 +02:00
switch (localeInLowerCase) {
case LOCALE_ARABIC:
return new Locale(InstabugLocale.ARABIC.getCode(), InstabugLocale.ARABIC.getCountry());
case LOCALE_ENGLISH:
return new Locale(InstabugLocale.ENGLISH.getCode(), InstabugLocale.ENGLISH.getCountry());
case LOCALE_CZECH:
return new Locale(InstabugLocale.CZECH.getCode(), InstabugLocale.CZECH.getCountry());
case LOCALE_FRENCH:
return new Locale(InstabugLocale.FRENCH.getCode(), InstabugLocale.FRENCH.getCountry());
case LOCALE_GERMAN:
return new Locale(InstabugLocale.GERMAN.getCode(), InstabugLocale.GERMAN.getCountry());
case LOCALE_ITALIAN:
return new Locale(InstabugLocale.ITALIAN.getCode(), InstabugLocale.ITALIAN.getCountry());
case LOCALE_JAPANESE:
return new Locale(InstabugLocale.JAPANESE.getCode(), InstabugLocale.JAPANESE.getCountry());
case LOCALE_POLISH:
return new Locale(InstabugLocale.POLISH.getCode(), InstabugLocale.POLISH.getCountry());
case LOCALE_RUSSIAN:
return new Locale(InstabugLocale.RUSSIAN.getCode(), InstabugLocale.RUSSIAN.getCountry());
case LOCALE_SPANISH:
return new Locale(InstabugLocale.SPANISH.getCode(), InstabugLocale.SPANISH.getCountry());
case LOCALE_SWEDISH:
return new Locale(InstabugLocale.SWEDISH.getCode(), InstabugLocale.SWEDISH.getCountry());
case LOCALE_TURKISH:
return new Locale(InstabugLocale.TURKISH.getCode(), InstabugLocale.TURKISH.getCountry());
case LOCALE_PORTUGUESE_BRAZIL:
return new Locale(InstabugLocale.PORTUGUESE_BRAZIL.getCode(), InstabugLocale.PORTUGUESE_BRAZIL.getCountry());
case LOCALE_CHINESE_SIMPLIFIED:
return new Locale(InstabugLocale.SIMPLIFIED_CHINESE.getCode(), InstabugLocale.SIMPLIFIED_CHINESE.getCountry());
case LOCALE_CHINESE_TRADITIONAL:
return new Locale(InstabugLocale.TRADITIONAL_CHINESE.getCode(), InstabugLocale.TRADITIONAL_CHINESE.getCountry());
case LOCALE_KOREAN:
return new Locale(InstabugLocale.KOREAN.getCode(), InstabugLocale.KOREAN.getCountry());
default:
return new Locale(InstabugLocale.ENGLISH.getCode(), InstabugLocale.ENGLISH.getCountry());
}
2017-01-09 17:11:33 +02:00
}
2016-11-03 18:09:58 +02:00
2016-10-20 16:24:17 +02:00
@Override
public Map<String, Object> getConstants() {
2017-01-10 13:25:09 -08:00
final Map<String, Object> constants = new HashMap<>();
constants.put("invocationEventNone", INVOCATION_EVENT_NONE);
constants.put("invocationEventShake", INVOCATION_EVENT_SHAKE);
constants.put("invocationEventScreenshot", INVOCATION_EVENT_SCREENSHOT);
constants.put("invocationEventTwoFingersSwipe", INVOCATION_EVENT_TWO_FINGERS_SWIPE);
constants.put("invocationEventFloatingButton", INVOCATION_EVENT_FLOATING_BUTTON);
constants.put("invocationModeNewBug", INVOCATION_MODE_NEW_BUG);
constants.put("invocationModeNewFeedback", INVOCATION_MODE_NEW_FEEDBACK);
constants.put("invocationModeNewChat", INVOCATION_MODE_NEW_CHAT);
constants.put("invocationModeChatsList", INVOCATION_MODE_CHATS_LIST);
constants.put("localeArabic", LOCALE_ARABIC);
constants.put("localeChineseSimplified", LOCALE_CHINESE_SIMPLIFIED);
constants.put("localeChineseTraditional", LOCALE_CHINESE_TRADITIONAL);
constants.put("localeCzech", LOCALE_CZECH);
constants.put("localeEnglish", LOCALE_ENGLISH);
constants.put("localeFrench", LOCALE_FRENCH);
constants.put("localeGerman", LOCALE_FRENCH);
constants.put("localeKorean", LOCALE_KOREAN);
constants.put("localeItalian", LOCALE_ITALIAN);
constants.put("localeJapanese", LOCALE_JAPANESE);
constants.put("localePolish", LOCALE_POLISH);
constants.put("localePortugueseBrazil", LOCALE_PORTUGUESE_BRAZIL);
constants.put("localeRussian", LOCALE_RUSSIAN);
constants.put("localeSpanish", LOCALE_SPANISH);
constants.put("localeSwedish", LOCALE_SWEDISH);
constants.put("localeTurkish", LOCALE_TURKISH);
return constants;
2017-01-09 17:11:33 +02:00
}
}