mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 19:15:16 +00:00
b55df9e186
Closes #4098 // FREEBIE
223 lines
8.5 KiB
Java
223 lines
8.5 KiB
Java
package org.thoughtcrime.securesms.preferences;
|
|
|
|
import android.app.Activity;
|
|
import android.content.Context;
|
|
import android.content.DialogInterface;
|
|
import android.content.Intent;
|
|
import android.content.pm.PackageManager;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.preference.CheckBoxPreference;
|
|
import android.preference.Preference;
|
|
import android.provider.ContactsContract;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
import android.support.v4.preference.PreferenceFragment;
|
|
import android.util.Log;
|
|
import android.widget.Toast;
|
|
|
|
import com.afollestad.materialdialogs.AlertDialogWrapper;
|
|
import com.google.android.gms.gcm.GoogleCloudMessaging;
|
|
|
|
import org.thoughtcrime.securesms.ApplicationPreferencesActivity;
|
|
import org.thoughtcrime.securesms.LogSubmitActivity;
|
|
import org.thoughtcrime.securesms.R;
|
|
import org.thoughtcrime.securesms.RegistrationActivity;
|
|
import org.thoughtcrime.securesms.contacts.ContactAccessor;
|
|
import org.thoughtcrime.securesms.contacts.ContactIdentityManager;
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
import org.thoughtcrime.securesms.push.TextSecureCommunicationFactory;
|
|
import org.thoughtcrime.securesms.util.ProgressDialogAsyncTask;
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
import org.whispersystems.libaxolotl.util.guava.Optional;
|
|
import org.whispersystems.textsecure.api.TextSecureAccountManager;
|
|
import org.whispersystems.textsecure.api.push.exceptions.AuthorizationFailedException;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class AdvancedPreferenceFragment extends PreferenceFragment {
|
|
private static final String TAG = AdvancedPreferenceFragment.class.getSimpleName();
|
|
|
|
private static final String PUSH_MESSAGING_PREF = "pref_toggle_push_messaging";
|
|
private static final String SUBMIT_DEBUG_LOG_PREF = "pref_submit_debug_logs";
|
|
|
|
private static final int PICK_IDENTITY_CONTACT = 1;
|
|
|
|
private MasterSecret masterSecret;
|
|
|
|
@Override
|
|
public void onCreate(Bundle paramBundle) {
|
|
super.onCreate(paramBundle);
|
|
masterSecret = getArguments().getParcelable("master_secret");
|
|
addPreferencesFromResource(R.xml.preferences_advanced);
|
|
|
|
initializePushMessagingToggle();
|
|
initializeIdentitySelection();
|
|
|
|
Preference submitDebugLog = this.findPreference(SUBMIT_DEBUG_LOG_PREF);
|
|
submitDebugLog.setOnPreferenceClickListener(new SubmitDebugLogListener());
|
|
submitDebugLog.setSummary(getVersion(getActivity()));
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
((ApplicationPreferencesActivity) getActivity()).getSupportActionBar().setTitle(R.string.preferences__advanced);
|
|
}
|
|
|
|
@Override
|
|
public void onActivityResult(int reqCode, int resultCode, Intent data) {
|
|
super.onActivityResult(reqCode, resultCode, data);
|
|
|
|
Log.w(TAG, "Got result: " + resultCode + " for req: " + reqCode);
|
|
if (resultCode == Activity.RESULT_OK && reqCode == PICK_IDENTITY_CONTACT) {
|
|
handleIdentitySelection(data);
|
|
}
|
|
}
|
|
|
|
private void initializePushMessagingToggle() {
|
|
CheckBoxPreference preference = (CheckBoxPreference)this.findPreference(PUSH_MESSAGING_PREF);
|
|
preference.setChecked(TextSecurePreferences.isPushRegistered(getActivity()));
|
|
preference.setOnPreferenceChangeListener(new PushMessagingClickListener());
|
|
}
|
|
|
|
private void initializeIdentitySelection() {
|
|
ContactIdentityManager identity = ContactIdentityManager.getInstance(getActivity());
|
|
|
|
Preference preference = this.findPreference(TextSecurePreferences.IDENTITY_PREF);
|
|
|
|
if (identity.isSelfIdentityAutoDetected()) {
|
|
this.getPreferenceScreen().removePreference(preference);
|
|
} else {
|
|
Uri contactUri = identity.getSelfIdentityUri();
|
|
|
|
if (contactUri != null) {
|
|
String contactName = ContactAccessor.getInstance().getNameFromContact(getActivity(), contactUri);
|
|
preference.setSummary(String.format(getString(R.string.ApplicationPreferencesActivity_currently_s),
|
|
contactName));
|
|
}
|
|
|
|
preference.setOnPreferenceClickListener(new IdentityPreferenceClickListener());
|
|
}
|
|
}
|
|
|
|
private @NonNull String getVersion(@Nullable Context context) {
|
|
try {
|
|
if (context == null) return "";
|
|
|
|
String app = context.getString(R.string.app_name);
|
|
String version = context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionName;
|
|
|
|
return String.format("%s %s", app, version);
|
|
} catch (PackageManager.NameNotFoundException e) {
|
|
Log.w(TAG, e);
|
|
return context.getString(R.string.app_name);
|
|
}
|
|
}
|
|
|
|
private class IdentityPreferenceClickListener implements Preference.OnPreferenceClickListener {
|
|
@Override
|
|
public boolean onPreferenceClick(Preference preference) {
|
|
Intent intent = new Intent(Intent.ACTION_PICK);
|
|
intent.setType(ContactsContract.Contacts.CONTENT_TYPE);
|
|
startActivityForResult(intent, PICK_IDENTITY_CONTACT);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
private void handleIdentitySelection(Intent data) {
|
|
Uri contactUri = data.getData();
|
|
|
|
if (contactUri != null) {
|
|
TextSecurePreferences.setIdentityContactUri(getActivity(), contactUri.toString());
|
|
initializeIdentitySelection();
|
|
}
|
|
}
|
|
|
|
private class SubmitDebugLogListener implements Preference.OnPreferenceClickListener {
|
|
@Override
|
|
public boolean onPreferenceClick(Preference preference) {
|
|
final Intent intent = new Intent(getActivity(), LogSubmitActivity.class);
|
|
startActivity(intent);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
private class PushMessagingClickListener implements Preference.OnPreferenceChangeListener {
|
|
private static final int SUCCESS = 0;
|
|
private static final int NETWORK_ERROR = 1;
|
|
|
|
private class DisablePushMessagesTask extends ProgressDialogAsyncTask<Void, Void, Integer> {
|
|
private final CheckBoxPreference checkBoxPreference;
|
|
|
|
public DisablePushMessagesTask(final CheckBoxPreference checkBoxPreference) {
|
|
super(getActivity(), R.string.ApplicationPreferencesActivity_unregistering, R.string.ApplicationPreferencesActivity_unregistering_from_textsecure_messages);
|
|
this.checkBoxPreference = checkBoxPreference;
|
|
}
|
|
|
|
@Override
|
|
protected void onPostExecute(Integer result) {
|
|
super.onPostExecute(result);
|
|
switch (result) {
|
|
case NETWORK_ERROR:
|
|
Toast.makeText(getActivity(),
|
|
R.string.ApplicationPreferencesActivity_error_connecting_to_server,
|
|
Toast.LENGTH_LONG).show();
|
|
break;
|
|
case SUCCESS:
|
|
checkBoxPreference.setChecked(false);
|
|
TextSecurePreferences.setPushRegistered(getActivity(), false);
|
|
break;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected Integer doInBackground(Void... params) {
|
|
try {
|
|
Context context = getActivity();
|
|
TextSecureAccountManager accountManager = TextSecureCommunicationFactory.createManager(context);
|
|
|
|
accountManager.setGcmId(Optional.<String>absent());
|
|
GoogleCloudMessaging.getInstance(context).unregister();
|
|
|
|
return SUCCESS;
|
|
} catch (AuthorizationFailedException afe) {
|
|
Log.w(TAG, afe);
|
|
return SUCCESS;
|
|
} catch (IOException ioe) {
|
|
Log.w(TAG, ioe);
|
|
return NETWORK_ERROR;
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onPreferenceChange(final Preference preference, Object newValue) {
|
|
if (((CheckBoxPreference)preference).isChecked()) {
|
|
AlertDialogWrapper.Builder builder = new AlertDialogWrapper.Builder(getActivity());
|
|
builder.setIconAttribute(R.attr.dialog_info_icon);
|
|
builder.setTitle(R.string.ApplicationPreferencesActivity_disable_textsecure_messages);
|
|
builder.setMessage(R.string.ApplicationPreferencesActivity_this_will_disable_textsecure_messages);
|
|
builder.setNegativeButton(android.R.string.cancel, null);
|
|
builder.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
new DisablePushMessagesTask((CheckBoxPreference)preference).execute();
|
|
}
|
|
});
|
|
builder.show();
|
|
} else {
|
|
Intent nextIntent = new Intent(getActivity(), ApplicationPreferencesActivity.class);
|
|
|
|
Intent intent = new Intent(getActivity(), RegistrationActivity.class);
|
|
intent.putExtra("cancel_button", true);
|
|
intent.putExtra("next_intent", nextIntent);
|
|
intent.putExtra("master_secret", masterSecret);
|
|
startActivity(intent);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|