blob: 27e5027e5f7bdd627eb53dfa370a4b0324186820 [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 */
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 Lision064e1e02013-10-01 16:18:42 -040027import org.sflphone.R;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040028
Alexandre Lision4f906b22013-10-02 10:13:45 -040029import android.util.Log;
30
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040031public class AccountDetailAdvanced implements AccountDetail {
32
Alexandre Savard68838112012-10-30 11:34:43 -040033 private static final String TAG = "AccountDetailAdvanced";
34 public static final String BUNDLE_TAG = "AdvancedPreferenceArrayList";
35
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040036 public static final String CONFIG_ACCOUNT_MAILBOX = "Account.mailbox";
37 public static final String CONFIG_ACCOUNT_REGISTRATION_EXPIRE = "Account.registrationExpire";
38 public static final String CONFIG_ACCOUNT_REGISTRATION_STATUS = "Account.registrationStatus";
39 public static final String CONFIG_ACCOUNT_REGISTRATION_STATE_CODE = "Account.registrationCode";
40 public static final String CONFIG_ACCOUNT_REGISTRATION_STATE_DESC = "Account.registrationDescription";
41 public static final String CONFIG_CREDENTIAL_NUMBER = "Credential.count";
42 public static final String CONFIG_ACCOUNT_DTMF_TYPE = "Account.dtmfType";
43 public static final String CONFIG_RINGTONE_PATH = "Account.ringtonePath";
44 public static final String CONFIG_RINGTONE_ENABLED = "Account.ringtoneEnabled";
45 public static final String CONFIG_KEEP_ALIVE_ENABLED = "Account.keepAliveEnabled";
46
47 public static final String CONFIG_ACCOUNT_AUTOANSWER = "Account.autoAnswer";
48 public static final String CONFIG_LOCAL_INTERFACE = "Account.localInterface";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040049 public static final String CONFIG_PUBLISHED_SAMEAS_LOCAL = "Account.publishedSameAsLocal";
50 public static final String CONFIG_LOCAL_PORT = "Account.localPort";
51 public static final String CONFIG_PUBLISHED_PORT = "Account.publishedPort";
52 public static final String CONFIG_PUBLISHED_ADDRESS = "Account.publishedAddress";
alision5cfc35d2013-07-11 15:11:39 -040053
Alexandre Lision5056de52013-09-26 12:26:54 -040054
Alexandre Lision6e8931e2013-09-19 16:49:34 -040055 public static final String CONFIG_DEFAULT_LOCAL_PORT = "5060";
56 public static final String CONFIG_DEFAULT_PUBLISHED_PORT = "5060";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040057 public static final String CONFIG_DEFAULT_PUBLISHED_SAMEAS_LOCAL = "true";
Alexandre Lision5056de52013-09-26 12:26:54 -040058
Alexandre Lision6e8931e2013-09-19 16:49:34 -040059 public static final String CONFIG_DEFAULT_INTERFACE = "default";
alision5cfc35d2013-07-11 15:11:39 -040060 public static final String CONFIG_DEFAULT_REGISTRATION_EXPIRE = "60";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040061
62 public static final String CONFIG_DISPLAY_NAME = "Account.displayName";
63 public static final String CONFIG_DEFAULT_ADDRESS = "0.0.0.0";
64
65 public static final String CONFIG_STUN_SERVER = "STUN.server";
66 public static final String CONFIG_STUN_ENABLE = "STUN.enable";
Alexandre Lision5056de52013-09-26 12:26:54 -040067
68 public static final String CONFIG_DEFAULT_DTMF_TYPE = "overrtp";
69
70 public static final String TRUE_STR = "true";
71 public static final String FALSE_STR = "false";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040072
Alexandre Savard68838112012-10-30 11:34:43 -040073 private ArrayList<AccountDetail.PreferenceEntry> privateArray;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040074
Alexandre Savardae992932012-10-17 10:26:12 -040075 public static ArrayList<AccountDetail.PreferenceEntry> getPreferenceEntries()
76 {
77 ArrayList<AccountDetail.PreferenceEntry> preference = new ArrayList<AccountDetail.PreferenceEntry>();
78
79 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_EXPIRE, R.string.account_registration_exp_label));
80 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_STATUS, R.string.account_registration_status_label));
81 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_STATE_CODE, R.string.account_registration_code_label));
82 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_STATE_DESC, R.string.account_registration_state_label));
83 preference.add(new PreferenceEntry(CONFIG_CREDENTIAL_NUMBER, R.string.account_credential_count_label));
84 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_DTMF_TYPE, R.string.account_config_dtmf_type_label));
85 preference.add(new PreferenceEntry(CONFIG_RINGTONE_PATH, R.string.account_ringtone_path_label));
86 preference.add(new PreferenceEntry(CONFIG_RINGTONE_ENABLED, R.string.account_ringtone_enabled_label, true));
87 preference.add(new PreferenceEntry(CONFIG_KEEP_ALIVE_ENABLED, R.string.account_keep_alive_label, true));
alision73424b62013-04-26 11:49:18 -040088 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_AUTOANSWER, R.string.account_autoanswer_label, true));
Alexandre Savardae992932012-10-17 10:26:12 -040089 preference.add(new PreferenceEntry(CONFIG_LOCAL_INTERFACE, R.string.account_local_interface_label));
Alexandre Savardae992932012-10-17 10:26:12 -040090 preference.add(new PreferenceEntry(CONFIG_PUBLISHED_SAMEAS_LOCAL, R.string.account_published_same_as_local_label, true));
91 preference.add(new PreferenceEntry(CONFIG_LOCAL_PORT, R.string.account_local_port_label));
92 preference.add(new PreferenceEntry(CONFIG_PUBLISHED_PORT, R.string.account_published_port_label));
93 preference.add(new PreferenceEntry(CONFIG_PUBLISHED_ADDRESS, R.string.account_published_address_label));
94 preference.add(new PreferenceEntry(CONFIG_DISPLAY_NAME, R.string.account_displayname_label));
95 preference.add(new PreferenceEntry(CONFIG_STUN_SERVER, R.string.account_stun_server_label));
96 preference.add(new PreferenceEntry(CONFIG_STUN_ENABLE, R.string.account_stun_enable_label, true));
97
98 return preference;
99 }
100
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400101 public AccountDetailAdvanced()
102 {
Alexandre Savard68838112012-10-30 11:34:43 -0400103 privateArray = getPreferenceEntries();
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400104 }
105
Alexandre Savard68838112012-10-30 11:34:43 -0400106 public AccountDetailAdvanced(HashMap<String, String> pref)
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400107 {
Alexandre Savard68838112012-10-30 11:34:43 -0400108 privateArray = getPreferenceEntries();
109
110 for(AccountDetail.PreferenceEntry p : privateArray) {
111 p.mValue = pref.get(p.mKey);
112 }
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400113 }
114
Alexandre Savard68838112012-10-30 11:34:43 -0400115 public AccountDetailAdvanced(ArrayList<String> pref)
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400116 {
Alexandre Savard68838112012-10-30 11:34:43 -0400117 privateArray = getPreferenceEntries();
118
119 if(pref.size() != privateArray.size()) {
120 Log.i(TAG, "Error list are not of equal size");
121 }
122 else {
123 int index = 0;
124 for(String s : pref) {
125 privateArray.get(index).mValue = s;
alision73424b62013-04-26 11:49:18 -0400126 index++;
Alexandre Savard68838112012-10-30 11:34:43 -0400127 }
128 }
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400129 }
Alexandre Savard68838112012-10-30 11:34:43 -0400130
131 public ArrayList<AccountDetail.PreferenceEntry> getDetailValues()
132 {
133 return privateArray;
134 }
135
136 public ArrayList<String> getValuesOnly()
137 {
138 ArrayList<String> valueList = new ArrayList<String>();
139
140 for(AccountDetail.PreferenceEntry p : privateArray) {
alision73424b62013-04-26 11:49:18 -0400141 Log.i(TAG,""+p.mValue);
Alexandre Savard68838112012-10-30 11:34:43 -0400142 valueList.add(p.mValue);
143 }
144
145 return valueList;
146 }
147
Alexandre Savard833616f2012-10-30 16:02:30 -0400148 public HashMap<String, String> getDetailsHashMap()
149 {
150 HashMap<String, String> map = new HashMap<String, String>();
151
152 for(AccountDetail.PreferenceEntry p : privateArray) {
153 map.put(p.mKey, p.mValue);
154 }
155
156 return map;
157 }
158
Alexandre Savard68838112012-10-30 11:34:43 -0400159 public String getDetailString(String key)
160 {
161 String value = "";
162
163 for(AccountDetail.PreferenceEntry p : privateArray) {
164 if(p.mKey.equals(key)) {
165 value = p.mValue;
166 return value;
167 }
168 }
169
170 return value;
171 }
172
alision5de91782013-07-10 10:47:30 -0400173 public void setDetailString(String key, String newValue)
Alexandre Savard833616f2012-10-30 16:02:30 -0400174 {
alision5de91782013-07-10 10:47:30 -0400175 for(int i = 0 ; i < privateArray.size() ; ++i) {
176 PreferenceEntry p = privateArray.get(i);
177 if(p.mKey.equals(key)) {
178 privateArray.get(i).mValue = newValue;
179 }
180 }
181
Alexandre Savard833616f2012-10-30 16:02:30 -0400182 }
183
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400184}