blob: cd815f76dfe33dcce0f0414baec9dc30404486d8 [file] [log] [blame]
/*
* Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
*
* Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
* Alexandre Savard <alexandre.savard@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.client;
import java.util.ArrayList;
import java.util.Locale;
import org.sflphone.R;
import org.sflphone.account.AccountDetailBasic;
import org.sflphone.fragments.AudioManagementFragment;
import org.sflphone.fragments.EditionFragment;
import org.sflphone.model.Account;
import org.sflphone.service.ISipService;
import org.sflphone.service.SipService;
import android.app.ActionBar;
import android.app.ActionBar.Tab;
import android.app.ActionBar.TabListener;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.content.ComponentName;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.preference.EditTextPreference;
import android.support.v13.app.FragmentStatePagerAdapter;
import android.support.v4.view.ViewPager;
import android.util.Log;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
public class AccountEditionActivity extends Activity implements TabListener, EditionFragment.Callbacks, AudioManagementFragment.Callbacks {
private static final String TAG = "AccoutPreferenceActivity";
public static final String KEY_MODE = "mode";
private boolean mBound = false;
private ISipService service;
private Account acc_selected;
PreferencesPagerAdapter mPreferencesPagerAdapter;
private ServiceConnection mConnection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName className, IBinder binder) {
service = ISipService.Stub.asInterface(binder);
mBound = true;
ArrayList<Fragment> fragments = new ArrayList<Fragment>();
if (acc_selected.isIP2IP()) {
fragments.add(new AudioManagementFragment());
} else {
fragments.add(new EditionFragment());
fragments.add(new AudioManagementFragment());
}
mPreferencesPagerAdapter = new PreferencesPagerAdapter(AccountEditionActivity.this, getFragmentManager(), fragments);
mViewPager.setAdapter(mPreferencesPagerAdapter);
getActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
for (int i = 0; i < mPreferencesPagerAdapter.getCount(); i++) {
getActionBar().addTab(
getActionBar().newTab().setText(mPreferencesPagerAdapter.getPageTitle(i)).setTabListener(AccountEditionActivity.this));
}
}
@Override
public void onServiceDisconnected(ComponentName arg0) {
}
};
private ViewPager mViewPager;
// private ArrayList<String> requiredFields = null;
// EditionFragment mEditionFragment;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_wizard);
getActionBar().setDisplayHomeAsUpEnabled(true);
mViewPager = (ViewPager) findViewById(R.id.pager);
mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
@Override
public void onPageSelected(int position) {
getActionBar().setSelectedNavigationItem(position);
}
});
acc_selected = getIntent().getExtras().getParcelable("account");
if (!mBound) {
Log.i(TAG, "onCreate: Binding service...");
Intent intent = new Intent(this, SipService.class);
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
if (acc_selected.isIP2IP()) {
return true;
}
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.account_edition, menu);
return true;
}
@Override
public void onBackPressed() {
if (acc_selected.isIP2IP()) {
super.onBackPressed();
return;
}
if (mPreferencesPagerAdapter.getItem(0) != null && ((EditionFragment) mPreferencesPagerAdapter.getItem(0)).isDifferent()) {
AlertDialog dialog = createCancelDialog();
dialog.show();
} else {
super.onBackPressed();
}
}
@Override
protected void onDestroy() {
if (mBound) {
unbindService(mConnection);
mBound = false;
}
// stopService(new Intent(this, SipService.class));
// serviceIsOn = false;
super.onDestroy();
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
finish();
return true;
case R.id.menuitem_delete:
AlertDialog dialog = createDeleteDialog();
dialog.show();
break;
case R.id.menuitem_edit:
processAccount();
break;
}
return true;
}
private void processAccount() {
AlertDialog dialog;
ArrayList<String> missingValue = new ArrayList<String>();
if (validateAccountCreation(missingValue)) {
try {
service.setAccountDetails(acc_selected.getAccountID(), acc_selected.getDetails());
} catch (RemoteException e) {
e.printStackTrace();
}
finish();
} else {
dialog = createCouldNotValidateDialog(missingValue);
dialog.show();
}
}
public boolean validateAccountCreation(ArrayList<String> missingValue) {
boolean valid = true;
ArrayList<String> requiredFields = new ArrayList<String>();
requiredFields.add(AccountDetailBasic.CONFIG_ACCOUNT_ALIAS);
requiredFields.add(AccountDetailBasic.CONFIG_ACCOUNT_HOSTNAME);
requiredFields.add(AccountDetailBasic.CONFIG_ACCOUNT_USERNAME);
requiredFields.add(AccountDetailBasic.CONFIG_ACCOUNT_PASSWORD);
for (String s : requiredFields) {
if (acc_selected.getBasicDetails().getDetailString(s).isEmpty()) {
valid = false;
missingValue.add(s);
}
}
return valid;
}
/******************************************
*
* AlertDialogs
*
******************************************/
private AlertDialog createCouldNotValidateDialog(ArrayList<String> missingValue) {
String message = "The following parameters are missing:";
for (String s : missingValue)
message += "\n - " + s;
Activity ownerActivity = this;
AlertDialog.Builder builder = new AlertDialog.Builder(ownerActivity);
builder.setMessage(message).setTitle("Missing Parameters").setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int whichButton) {
/* Nothing to be done */
}
});
AlertDialog alertDialog = builder.create();
return alertDialog;
}
private AlertDialog createCancelDialog() {
Activity ownerActivity = this;
AlertDialog.Builder builder = new AlertDialog.Builder(ownerActivity);
builder.setMessage("Modifications will be lost").setTitle("Account Edition")
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int whichButton) {
Activity activity = ((Dialog) dialog).getOwnerActivity();
activity.finish();
}
}).setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int whichButton) {
/* Terminate with no action */
}
});
AlertDialog alertDialog = builder.create();
alertDialog.setOwnerActivity(ownerActivity);
return alertDialog;
}
private AlertDialog createDeleteDialog() {
Activity ownerActivity = this;
AlertDialog.Builder builder = new AlertDialog.Builder(ownerActivity);
builder.setMessage("Do you really want to delete this account").setTitle("Delete Account")
.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int whichButton) {
Bundle bundle = new Bundle();
bundle.putString("AccountID", acc_selected.getAccountID());
try {
service.removeAccount(acc_selected.getAccountID());
} catch (RemoteException e) {
e.printStackTrace();
}
finish();
}
}).setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int whichButton) {
/* Terminate with no action */
}
});
AlertDialog alertDialog = builder.create();
alertDialog.setOwnerActivity(ownerActivity);
return alertDialog;
}
public class PreferencesPagerAdapter extends FragmentStatePagerAdapter {
Context mContext;
ArrayList<Fragment> fragments;
public PreferencesPagerAdapter(Context c, FragmentManager fm, ArrayList<Fragment> items) {
super(fm);
mContext = c;
fragments = new ArrayList<Fragment>(items);
}
@Override
public int getCount() {
return fragments.size();
}
@Override
public Fragment getItem(int position) {
return fragments.get(position);
}
@Override
public CharSequence getPageTitle(int position) {
switch (position) {
case 0:
if (acc_selected.isIP2IP()) {
return getString(R.string.account_preferences_audio).toUpperCase(Locale.getDefault());
} else {
return getString(R.string.account_preferences_basic).toUpperCase(Locale.getDefault());
}
case 1:
return getString(R.string.account_preferences_audio).toUpperCase(Locale.getDefault());
default:
Log.e(TAG, "getPreferencePageTitle: unknown tab position " + position);
break;
}
return null;
}
}
@Override
public void onTabReselected(Tab arg0, FragmentTransaction arg1) {
// TODO Stub de la méthode généré automatiquement
}
@Override
public void onTabSelected(Tab tab, FragmentTransaction ft) {
mViewPager.setCurrentItem(tab.getPosition());
}
@Override
public void onTabUnselected(Tab tab, FragmentTransaction ft) {
// TODO Stub de la méthode généré automatiquement
}
@Override
public ISipService getService() {
return service;
}
@Override
public String getAccountID() {
return acc_selected.getAccountID();
}
@Override
public Account getAccount() {
return acc_selected;
}
}