blob: 1829ff2982ba1d3e21ffaa26d578e53cc87faea3 [file] [log] [blame]
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -04001/**
2 * Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
3 *
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 */
alisionf76de3b2013-04-16 15:35:22 -040022package com.savoirfairelinux.sflphone.account;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040023
24import com.savoirfairelinux.sflphone.R;
alisionf76de3b2013-04-16 15:35:22 -040025import com.savoirfairelinux.sflphone.account.AccountDetail;
alision5de91782013-07-10 10:47:30 -040026import com.savoirfairelinux.sflphone.account.AccountDetail.PreferenceEntry;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040027
Alexandre Savard68838112012-10-30 11:34:43 -040028import android.util.Log;
29
Alexandre Savardae992932012-10-17 10:26:12 -040030import java.util.ArrayList;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040031import java.util.Collection;
32import java.util.Set;
33import java.util.HashMap;
34
35public class AccountDetailAdvanced implements AccountDetail {
36
Alexandre Savard68838112012-10-30 11:34:43 -040037 private static final String TAG = "AccountDetailAdvanced";
38 public static final String BUNDLE_TAG = "AdvancedPreferenceArrayList";
39
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040040 public static final String CONFIG_ACCOUNT_MAILBOX = "Account.mailbox";
41 public static final String CONFIG_ACCOUNT_REGISTRATION_EXPIRE = "Account.registrationExpire";
42 public static final String CONFIG_ACCOUNT_REGISTRATION_STATUS = "Account.registrationStatus";
43 public static final String CONFIG_ACCOUNT_REGISTRATION_STATE_CODE = "Account.registrationCode";
44 public static final String CONFIG_ACCOUNT_REGISTRATION_STATE_DESC = "Account.registrationDescription";
45 public static final String CONFIG_CREDENTIAL_NUMBER = "Credential.count";
46 public static final String CONFIG_ACCOUNT_DTMF_TYPE = "Account.dtmfType";
47 public static final String CONFIG_RINGTONE_PATH = "Account.ringtonePath";
48 public static final String CONFIG_RINGTONE_ENABLED = "Account.ringtoneEnabled";
49 public static final String CONFIG_KEEP_ALIVE_ENABLED = "Account.keepAliveEnabled";
50
51 public static final String CONFIG_ACCOUNT_AUTOANSWER = "Account.autoAnswer";
52 public static final String CONFIG_LOCAL_INTERFACE = "Account.localInterface";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040053 public static final String CONFIG_PUBLISHED_SAMEAS_LOCAL = "Account.publishedSameAsLocal";
54 public static final String CONFIG_LOCAL_PORT = "Account.localPort";
55 public static final String CONFIG_PUBLISHED_PORT = "Account.publishedPort";
56 public static final String CONFIG_PUBLISHED_ADDRESS = "Account.publishedAddress";
alision5cfc35d2013-07-11 15:11:39 -040057
Tristan Matthews671a6d12013-07-24 16:53:32 -040058 // FIXME: Why isn't this 5060?
alision5cfc35d2013-07-11 15:11:39 -040059 public static final String CONFIG_DEFAULT_LOCAL_PORT = "5070";
60 public static final String CONFIG_DEFAULT_PUBLISHED_PORT = "5070";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040061 public static final String CONFIG_DEFAULT_PUBLISHED_SAMEAS_LOCAL = "true";
Tristan Matthews671a6d12013-07-24 16:53:32 -040062 // FIXME: Why isn't this "default"?
alision5cfc35d2013-07-11 15:11:39 -040063 public static final String CONFIG_DEFAULT_INTERFACE = "wlan0";
64 public static final String CONFIG_DEFAULT_REGISTRATION_EXPIRE = "60";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040065
66 public static final String CONFIG_DISPLAY_NAME = "Account.displayName";
67 public static final String CONFIG_DEFAULT_ADDRESS = "0.0.0.0";
68
69 public static final String CONFIG_STUN_SERVER = "STUN.server";
70 public static final String CONFIG_STUN_ENABLE = "STUN.enable";
71
Alexandre Savard68838112012-10-30 11:34:43 -040072 private ArrayList<AccountDetail.PreferenceEntry> privateArray;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040073
Alexandre Savardae992932012-10-17 10:26:12 -040074 public static ArrayList<AccountDetail.PreferenceEntry> getPreferenceEntries()
75 {
76 ArrayList<AccountDetail.PreferenceEntry> preference = new ArrayList<AccountDetail.PreferenceEntry>();
77
78 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_EXPIRE, R.string.account_registration_exp_label));
79 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_STATUS, R.string.account_registration_status_label));
80 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_STATE_CODE, R.string.account_registration_code_label));
81 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_STATE_DESC, R.string.account_registration_state_label));
82 preference.add(new PreferenceEntry(CONFIG_CREDENTIAL_NUMBER, R.string.account_credential_count_label));
83 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_DTMF_TYPE, R.string.account_config_dtmf_type_label));
84 preference.add(new PreferenceEntry(CONFIG_RINGTONE_PATH, R.string.account_ringtone_path_label));
85 preference.add(new PreferenceEntry(CONFIG_RINGTONE_ENABLED, R.string.account_ringtone_enabled_label, true));
86 preference.add(new PreferenceEntry(CONFIG_KEEP_ALIVE_ENABLED, R.string.account_keep_alive_label, true));
alision73424b62013-04-26 11:49:18 -040087 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_AUTOANSWER, R.string.account_autoanswer_label, true));
Alexandre Savardae992932012-10-17 10:26:12 -040088 preference.add(new PreferenceEntry(CONFIG_LOCAL_INTERFACE, R.string.account_local_interface_label));
Alexandre Savardae992932012-10-17 10:26:12 -040089 preference.add(new PreferenceEntry(CONFIG_PUBLISHED_SAMEAS_LOCAL, R.string.account_published_same_as_local_label, true));
90 preference.add(new PreferenceEntry(CONFIG_LOCAL_PORT, R.string.account_local_port_label));
91 preference.add(new PreferenceEntry(CONFIG_PUBLISHED_PORT, R.string.account_published_port_label));
92 preference.add(new PreferenceEntry(CONFIG_PUBLISHED_ADDRESS, R.string.account_published_address_label));
93 preference.add(new PreferenceEntry(CONFIG_DISPLAY_NAME, R.string.account_displayname_label));
94 preference.add(new PreferenceEntry(CONFIG_STUN_SERVER, R.string.account_stun_server_label));
95 preference.add(new PreferenceEntry(CONFIG_STUN_ENABLE, R.string.account_stun_enable_label, true));
96
97 return preference;
98 }
99
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400100 public AccountDetailAdvanced()
101 {
Alexandre Savard68838112012-10-30 11:34:43 -0400102 privateArray = getPreferenceEntries();
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400103 }
104
Alexandre Savard68838112012-10-30 11:34:43 -0400105 public AccountDetailAdvanced(HashMap<String, String> pref)
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400106 {
Alexandre Savard68838112012-10-30 11:34:43 -0400107 privateArray = getPreferenceEntries();
108
109 for(AccountDetail.PreferenceEntry p : privateArray) {
110 p.mValue = pref.get(p.mKey);
111 }
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400112 }
113
Alexandre Savard68838112012-10-30 11:34:43 -0400114 public AccountDetailAdvanced(ArrayList<String> pref)
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400115 {
Alexandre Savard68838112012-10-30 11:34:43 -0400116 privateArray = getPreferenceEntries();
117
118 if(pref.size() != privateArray.size()) {
119 Log.i(TAG, "Error list are not of equal size");
120 }
121 else {
122 int index = 0;
123 for(String s : pref) {
124 privateArray.get(index).mValue = s;
alision73424b62013-04-26 11:49:18 -0400125 index++;
Alexandre Savard68838112012-10-30 11:34:43 -0400126 }
127 }
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400128 }
Alexandre Savard68838112012-10-30 11:34:43 -0400129
130 public ArrayList<AccountDetail.PreferenceEntry> getDetailValues()
131 {
132 return privateArray;
133 }
134
135 public ArrayList<String> getValuesOnly()
136 {
137 ArrayList<String> valueList = new ArrayList<String>();
138
139 for(AccountDetail.PreferenceEntry p : privateArray) {
alision73424b62013-04-26 11:49:18 -0400140 Log.i(TAG,""+p.mValue);
Alexandre Savard68838112012-10-30 11:34:43 -0400141 valueList.add(p.mValue);
142 }
143
144 return valueList;
145 }
146
Alexandre Savard833616f2012-10-30 16:02:30 -0400147 public HashMap<String, String> getDetailsHashMap()
148 {
149 HashMap<String, String> map = new HashMap<String, String>();
150
151 for(AccountDetail.PreferenceEntry p : privateArray) {
152 map.put(p.mKey, p.mValue);
153 }
154
155 return map;
156 }
157
Alexandre Savard68838112012-10-30 11:34:43 -0400158 public String getDetailString(String key)
159 {
160 String value = "";
161
162 for(AccountDetail.PreferenceEntry p : privateArray) {
163 if(p.mKey.equals(key)) {
164 value = p.mValue;
165 return value;
166 }
167 }
168
169 return value;
170 }
171
alision5de91782013-07-10 10:47:30 -0400172 public void setDetailString(String key, String newValue)
Alexandre Savard833616f2012-10-30 16:02:30 -0400173 {
alision5de91782013-07-10 10:47:30 -0400174 for(int i = 0 ; i < privateArray.size() ; ++i) {
175 PreferenceEntry p = privateArray.get(i);
176 if(p.mKey.equals(key)) {
177 privateArray.get(i).mValue = newValue;
178 }
179 }
180
Alexandre Savard833616f2012-10-30 16:02:30 -0400181 }
182
Alexandre Savard68838112012-10-30 11:34:43 -0400183 public boolean getDetailBoolean()
184 {
185 return true;
186 }
187
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400188}