blob: c867258f1696998bd88aea43efb51ccbfd55aa7e [file] [log] [blame]
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -04001/**
Alexandre Lisionfed2a642014-01-10 12:05:47 -05002 * Copyright (C) 2004-2014 Savoir-Faire Linux Inc.
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -04003 *
4 * Author: Alexandre Savard <alexandre.savard@savoirfairelinux.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * If you own a pjsip commercial license you can also redistribute it
11 * and/or modify it under the terms of the GNU Lesser General Public License
12 * as an android library.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
Alexandre Lision064e1e02013-10-01 16:18:42 -040022package org.sflphone.account;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040023
Alexandre Lision6e8931e2013-09-19 16:49:34 -040024import java.util.ArrayList;
25import java.util.HashMap;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040026
Alexandre Lision4f906b22013-10-02 10:13:45 -040027import android.util.Log;
28
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040029public class AccountDetailBasic implements AccountDetail {
30
Alexandre Lision451f2a82013-11-12 12:55:55 -050031 private static final String TAG = AccountDetailBasic.class.getSimpleName();
Alexandre Savard68838112012-10-30 11:34:43 -040032
Alexandre Lision451f2a82013-11-12 12:55:55 -050033 public static final String CONFIG_ACCOUNT_ALIAS = "Account.alias";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040034 public static final String CONFIG_ACCOUNT_HOSTNAME = "Account.hostname";
35 public static final String CONFIG_ACCOUNT_USERNAME = "Account.username";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040036 public static final String CONFIG_ACCOUNT_PASSWORD = "Account.password";
Alexandre Lision451f2a82013-11-12 12:55:55 -050037
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040038 public static final String CONFIG_ACCOUNT_USERAGENT = "Account.useragent";
Alexandre Lision451f2a82013-11-12 12:55:55 -050039 public static final String CONFIG_ACCOUNT_ROUTESET = "Account.routeset";
alision5cfc35d2013-07-11 15:11:39 -040040 public static final String CONFIG_ACCOUNT_AUTOANSWER = "Account.autoAnswer";
Alexandre Lision451f2a82013-11-12 12:55:55 -050041
42 public static final String CONFIG_ACCOUNT_REALM = "Account.realm";
alision5cfc35d2013-07-11 15:11:39 -040043 public static final String CONFIG_ACCOUNT_TYPE = "Account.type";
alision5cfc35d2013-07-11 15:11:39 -040044 public static final String CONFIG_ACCOUNT_ENABLE = "Account.enable";
Alexandre Lision420b2572014-01-10 11:37:18 -050045 public static final String CONFIG_PRESENCE_ENABLE = "Account.presenceEnabled";
Alexandre Lision451f2a82013-11-12 12:55:55 -050046
Alexandre Savard68838112012-10-30 11:34:43 -040047 private ArrayList<AccountDetail.PreferenceEntry> privateArray;
Alexandre Savardae992932012-10-17 10:26:12 -040048
Alexandre Lision451f2a82013-11-12 12:55:55 -050049 public static ArrayList<AccountDetail.PreferenceEntry> getPreferenceEntries() {
Alexandre Savardae992932012-10-17 10:26:12 -040050 ArrayList<AccountDetail.PreferenceEntry> preference = new ArrayList<AccountDetail.PreferenceEntry>();
51
Alexandre Lisionab0cc9f2013-12-12 11:27:25 -050052 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_ENABLE, true));
53 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_TYPE));
54 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_ALIAS));
55 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_HOSTNAME));
56 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_USERNAME));
57 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_ROUTESET));
58 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_PASSWORD));
59 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_AUTOANSWER, true));
60 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REALM));
61 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_USERAGENT));
Alexandre Lision420b2572014-01-10 11:37:18 -050062 preference.add(new PreferenceEntry(CONFIG_PRESENCE_ENABLE));
Alexandre Savardae992932012-10-17 10:26:12 -040063
64 return preference;
65 }
66
Alexandre Lision451f2a82013-11-12 12:55:55 -050067 public AccountDetailBasic() {
Alexandre Savard68838112012-10-30 11:34:43 -040068 privateArray = getPreferenceEntries();
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040069 }
70
Alexandre Lision451f2a82013-11-12 12:55:55 -050071 public AccountDetailBasic(HashMap<String, String> pref) {
Alexandre Savard68838112012-10-30 11:34:43 -040072 privateArray = getPreferenceEntries();
73
Alexandre Lision451f2a82013-11-12 12:55:55 -050074 for (AccountDetail.PreferenceEntry p : privateArray) {
Alexandre Savard68838112012-10-30 11:34:43 -040075 p.mValue = pref.get(p.mKey);
76 }
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040077 }
78
Alexandre Lision451f2a82013-11-12 12:55:55 -050079 public AccountDetailBasic(ArrayList<String> pref) {
Alexandre Savard68838112012-10-30 11:34:43 -040080 privateArray = getPreferenceEntries();
81
Alexandre Lision451f2a82013-11-12 12:55:55 -050082 if (pref.size() != privateArray.size()) {
Alexandre Savard68838112012-10-30 11:34:43 -040083 Log.i(TAG, "Error list are not of equal size");
Alexandre Lision451f2a82013-11-12 12:55:55 -050084 } else {
85 int index = 0;
86 for (String s : pref) {
87 Log.i(TAG, "Creating " + privateArray.get(index).mKey + " value " + s);
Alexandre Savard68838112012-10-30 11:34:43 -040088 privateArray.get(index).mValue = s;
89 index++;
90 }
91 }
92 }
93
Alexandre Lision451f2a82013-11-12 12:55:55 -050094 public ArrayList<AccountDetail.PreferenceEntry> getDetailValues() {
Alexandre Savard68838112012-10-30 11:34:43 -040095 return privateArray;
96 }
97
Alexandre Lision451f2a82013-11-12 12:55:55 -050098 public ArrayList<String> getValuesOnly() {
Alexandre Savard68838112012-10-30 11:34:43 -040099 ArrayList<String> valueList = new ArrayList<String>();
100
Alexandre Lision451f2a82013-11-12 12:55:55 -0500101 for (AccountDetail.PreferenceEntry p : privateArray) {
102 Log.i(TAG, "" + p.mValue);
Alexandre Savard68838112012-10-30 11:34:43 -0400103 valueList.add(p.mValue);
104 }
105
106 return valueList;
107 }
108
Alexandre Lision451f2a82013-11-12 12:55:55 -0500109 public HashMap<String, String> getDetailsHashMap() {
Alexandre Savard833616f2012-10-30 16:02:30 -0400110 HashMap<String, String> map = new HashMap<String, String>();
111
Alexandre Lision451f2a82013-11-12 12:55:55 -0500112 for (AccountDetail.PreferenceEntry p : privateArray) {
Alexandre Savard833616f2012-10-30 16:02:30 -0400113 map.put(p.mKey, p.mValue);
114 }
115
116 return map;
117 }
118
Alexandre Lision451f2a82013-11-12 12:55:55 -0500119 public String getDetailString(String key) {
Alexandre Savard68838112012-10-30 11:34:43 -0400120 String value = "";
Alexandre Lision451f2a82013-11-12 12:55:55 -0500121
122 for (AccountDetail.PreferenceEntry p : privateArray) {
123 if (p.mKey.equals(key)) {
Alexandre Savard68838112012-10-30 11:34:43 -0400124 value = p.mValue;
125 return value;
126 }
127 }
128
129 return value;
130 }
131
Alexandre Lision451f2a82013-11-12 12:55:55 -0500132 public void setDetailString(String key, String newValue) {
133 for (int i = 0; i < privateArray.size(); ++i) {
alision5de91782013-07-10 10:47:30 -0400134 PreferenceEntry p = privateArray.get(i);
Alexandre Lision451f2a82013-11-12 12:55:55 -0500135 if (p.mKey.equals(key)) {
alision5de91782013-07-10 10:47:30 -0400136 privateArray.get(i).mValue = newValue;
137 }
138 }
Alexandre Lision451f2a82013-11-12 12:55:55 -0500139
Alexandre Savard833616f2012-10-30 16:02:30 -0400140 }
141
Alexandre Lision451f2a82013-11-12 12:55:55 -0500142 public boolean getDetailBoolean() {
Alexandre Savard68838112012-10-30 11:34:43 -0400143 return true;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400144 }
145}