2015-02-17 04:31:44 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2014 Open Whisper Systems
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms.preferences;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.os.AsyncTask;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.v4.preference.PreferenceFragment;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.PassphraseRequiredActionBarActivity;
|
|
|
|
import org.thoughtcrime.securesms.R;
|
|
|
|
import org.thoughtcrime.securesms.components.CustomDefaultPreference;
|
|
|
|
import org.thoughtcrime.securesms.database.ApnDatabase;
|
2014-12-29 22:01:02 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.LegacyMmsConnection;
|
2015-02-17 04:31:44 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TelephonyUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
|
|
|
|
public class MmsPreferencesFragment extends PreferenceFragment {
|
|
|
|
|
|
|
|
private static final String TAG = MmsPreferencesFragment.class.getSimpleName();
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle paramBundle) {
|
|
|
|
super.onCreate(paramBundle);
|
|
|
|
addPreferencesFromResource(R.xml.preferences_manual_mms);
|
|
|
|
|
|
|
|
((PassphraseRequiredActionBarActivity) getActivity()).getSupportActionBar()
|
|
|
|
.setTitle(R.string.preferences__advanced_mms_access_point_names);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
new LoadApnDefaultsTask().execute();
|
|
|
|
}
|
|
|
|
|
2014-12-29 22:01:02 +00:00
|
|
|
private class LoadApnDefaultsTask extends AsyncTask<Void, Void, LegacyMmsConnection.Apn> {
|
2015-02-17 04:31:44 +00:00
|
|
|
|
|
|
|
@Override
|
2014-12-29 22:01:02 +00:00
|
|
|
protected LegacyMmsConnection.Apn doInBackground(Void... params) {
|
2015-02-17 04:31:44 +00:00
|
|
|
try {
|
|
|
|
Context context = getActivity();
|
|
|
|
|
|
|
|
if (context != null) {
|
|
|
|
return ApnDatabase.getInstance(context)
|
|
|
|
.getDefaultApnParameters(TelephonyUtil.getMccMnc(context),
|
|
|
|
TelephonyUtil.getApn(context));
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w(TAG, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-12-29 22:01:02 +00:00
|
|
|
protected void onPostExecute(LegacyMmsConnection.Apn apnDefaults) {
|
2015-02-17 04:31:44 +00:00
|
|
|
((CustomDefaultPreference)findPreference(TextSecurePreferences.MMSC_HOST_PREF))
|
|
|
|
.setValidator(new CustomDefaultPreference.UriValidator())
|
|
|
|
.setDefaultValue(apnDefaults.getMmsc());
|
|
|
|
|
|
|
|
((CustomDefaultPreference)findPreference(TextSecurePreferences.MMSC_PROXY_HOST_PREF))
|
|
|
|
.setValidator(new CustomDefaultPreference.HostnameValidator())
|
|
|
|
.setDefaultValue(apnDefaults.getProxy());
|
|
|
|
|
|
|
|
((CustomDefaultPreference)findPreference(TextSecurePreferences.MMSC_PROXY_PORT_PREF))
|
|
|
|
.setValidator(new CustomDefaultPreference.PortValidator())
|
|
|
|
.setDefaultValue(apnDefaults.getPort());
|
|
|
|
|
|
|
|
((CustomDefaultPreference)findPreference(TextSecurePreferences.MMSC_USERNAME_PREF))
|
|
|
|
.setDefaultValue(apnDefaults.getPort());
|
|
|
|
|
|
|
|
((CustomDefaultPreference)findPreference(TextSecurePreferences.MMSC_PASSWORD_PREF))
|
|
|
|
.setDefaultValue(apnDefaults.getPassword());
|
2015-01-18 03:10:46 +00:00
|
|
|
|
|
|
|
((CustomDefaultPreference)findPreference(TextSecurePreferences.MMS_USER_AGENT))
|
|
|
|
.setDefaultValue(LegacyMmsConnection.USER_AGENT);
|
2015-02-17 04:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|