blob: e3d10f5ea221a818927d46a33462cbf1443cade3 [file] [log] [blame]
/*
* Copyright (C) 2004-2014 Savoir-Faire Linux Inc.
*
* Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
*
* 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Additional permission under GNU GPL version 3 section 7:
*
* If you modify this program, or any covered work, by linking or
* combining it with the OpenSSL project's OpenSSL library (or a
* modified version of that library), containing parts covered by the
* terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
* grants you additional permission to convey the resulting work.
* Corresponding Source for a non-source form of such a combination
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
package org.sflphone.fragments;
import android.content.Intent;
import android.os.RemoteException;
import org.sflphone.R;
import org.sflphone.account.CredentialsManager;
import org.sflphone.account.SRTPManager;
import org.sflphone.account.TLSManager;
import org.sflphone.model.Account;
import android.app.Activity;
import android.os.Bundle;
import android.preference.PreferenceFragment;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.View;
import android.view.ViewGroup;
import org.sflphone.service.ISipService;
import java.util.ArrayList;
public class NestedSettingsFragment extends PreferenceFragment {
@SuppressWarnings("unused")
private static final String TAG = AdvancedAccountFragment.class.getSimpleName();
private Callbacks mCallbacks = sDummyCallbacks;
CredentialsManager mCredsManager;
SRTPManager mSrtpManager;
TLSManager mTlsManager;
private static Callbacks sDummyCallbacks = new Callbacks() {
@Override
public Account getAccount() {
return null;
}
@Override
public ISipService getService() {
return null;
}
};
public String[] getTlsMethods() {
ArrayList<String> methods = null;
try {
methods = (ArrayList<String>) mCallbacks.getService().getTlsSupportedMethods();
} catch (RemoteException e) {
e.printStackTrace();
}
String[] results = new String[methods.size()];
methods.toArray(results);
return results;
}
public interface Callbacks {
public Account getAccount();
public ISipService getService();
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
if (!(activity instanceof Callbacks)) {
throw new IllegalStateException("Activity must implement fragment's callbacks.");
}
mCallbacks = (Callbacks) activity;
}
@Override
public void onDetach() {
super.onDetach();
mCallbacks = sDummyCallbacks;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setHasOptionsMenu(true);
// Load the preferences from an XML resource
switch (getArguments().getInt("MODE")) {
case 0: // Credentials
addPreferencesFromResource(R.xml.account_credentials);
mCredsManager = new CredentialsManager();
mCredsManager.onCreate(getActivity(), getPreferenceScreen(), mCallbacks.getAccount());
mCredsManager.reloadCredentials();
mCredsManager.setAddCredentialListener();
break;
case 1: // SRTP
mSrtpManager = new SRTPManager();
if (mCallbacks.getAccount().hasSDESEnabled()) { // SDES
addPreferencesFromResource(R.xml.account_sdes);
mSrtpManager.onCreate(getPreferenceScreen(), mCallbacks.getAccount());
mSrtpManager.setSDESListener();
} else { // ZRTP
addPreferencesFromResource(R.xml.account_zrtp);
mSrtpManager.onCreate(getPreferenceScreen(), mCallbacks.getAccount());
mSrtpManager.setZRTPListener();
}
break;
case 2:
addPreferencesFromResource(R.xml.account_tls);
mTlsManager = new TLSManager();
mTlsManager.onCreate(this, getPreferenceScreen(), mCallbacks.getAccount());
mTlsManager.setTLSListener();
break;
}
}
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
super.onCreateOptionsMenu(menu, inflater);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = super.onCreateView(inflater, container, savedInstanceState);
view.setBackgroundColor(getResources().getColor(android.R.color.white));
return view;
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (mTlsManager != null) {
mTlsManager.onActivityResult(requestCode, resultCode, data);
}
}
}