blob: acb1ed22767ece892f2a30ad19d13fd6bc49de3f [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.adapters;
import java.io.File;
import java.util.ArrayList;
import org.sflphone.R;
import org.sflphone.model.Account;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
public class AccountSelectionAdapter extends BaseAdapter {
private static final String TAG = AccountSelectionAdapter.class.getSimpleName();
ArrayList<Account> accounts;
Context mContext;
int selectedAccount = -1;
static final String DEFAULT_ACCOUNT_ID = "IP2IP";
public AccountSelectionAdapter(Context cont, ArrayList<Account> newList) {
super();
accounts = newList;
mContext = cont;
}
@Override
public int getCount() {
return accounts.size();
}
@Override
public Account getItem(int pos) {
return accounts.get(pos);
}
@Override
public long getItemId(int pos) {
return 0;
}
@Override
public View getView(int pos, View convertView, ViewGroup parent) {
View rowView = convertView;
AccountView entryView = null;
if (rowView == null) {
LayoutInflater inflater = LayoutInflater.from(mContext);
rowView = inflater.inflate(R.layout.item_account, null);
entryView = new AccountView();
entryView.alias = (TextView) rowView.findViewById(R.id.account_alias);
entryView.host = (TextView) rowView.findViewById(R.id.account_host);
entryView.select = (ImageView) rowView.findViewById(R.id.account_selected);
rowView.setTag(entryView);
} else {
entryView = (AccountView) rowView.getTag();
}
entryView.alias.setText(accounts.get(pos).getAlias());
entryView.host.setText(accounts.get(pos).getHost() + " - " + accounts.get(pos).getRegistered_state());
// accManager.displayAccountDetails(accounts.get(pos), entryView);
if (pos == selectedAccount) {
entryView.select.setVisibility(View.VISIBLE);
} else {
entryView.select.setVisibility(View.GONE);
}
return rowView;
}
public Account getAccount(String accountID) {
for(Account acc : accounts) {
if(acc.getAccountID().contentEquals(accountID))
return acc;
}
return null;
}
/*********************
* ViewHolder Pattern
*********************/
public class AccountView {
public TextView alias;
public TextView host;
public ImageView select;
}
public void setSelectedAccount(int pos) {
selectedAccount = pos;
}
public Account getSelectedAccount() {
if (selectedAccount == -1) {
return null;
}
return accounts.get(selectedAccount);
}
public void removeAll() {
accounts.clear();
notifyDataSetChanged();
}
public void addAll(ArrayList<Account> results) {
accounts.addAll(results);
notifyDataSetChanged();
}
/**
* Modify state of specific account
*/
public void updateAccount(String accoundID, String state, int code) {
Log.i(TAG, "updateAccount");
for (Account a : accounts) {
if (a.getAccountID().contentEquals(accoundID)) {
a.setRegistered_state(state);
notifyDataSetChanged();
return;
}
}
}
public String getAccountOrder() {
String result = DEFAULT_ACCOUNT_ID + File.separator;
String selectedID = accounts.get(selectedAccount).getAccountID();
result += selectedID + File.separator;
for (Account a : accounts) {
if (a.getAccountID().contentEquals(selectedID)) {
continue;
}
result += a.getAccountID() + File.separator;
}
return result;
}
}