blob: 48e7b1394737c7c219e245aca952e37b27b4a799 [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 Lision4f906b22013-10-02 10:13:45 -040027import android.util.Log;
28
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040029public class AccountDetailAdvanced implements AccountDetail {
30
Alexandre Savard68838112012-10-30 11:34:43 -040031 private static final String TAG = "AccountDetailAdvanced";
Alexandre Savard68838112012-10-30 11:34:43 -040032
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040033 public static final String CONFIG_ACCOUNT_MAILBOX = "Account.mailbox";
34 public static final String CONFIG_ACCOUNT_REGISTRATION_EXPIRE = "Account.registrationExpire";
35 public static final String CONFIG_ACCOUNT_REGISTRATION_STATUS = "Account.registrationStatus";
36 public static final String CONFIG_ACCOUNT_REGISTRATION_STATE_CODE = "Account.registrationCode";
37 public static final String CONFIG_ACCOUNT_REGISTRATION_STATE_DESC = "Account.registrationDescription";
38 public static final String CONFIG_CREDENTIAL_NUMBER = "Credential.count";
39 public static final String CONFIG_ACCOUNT_DTMF_TYPE = "Account.dtmfType";
40 public static final String CONFIG_RINGTONE_PATH = "Account.ringtonePath";
41 public static final String CONFIG_RINGTONE_ENABLED = "Account.ringtoneEnabled";
42 public static final String CONFIG_KEEP_ALIVE_ENABLED = "Account.keepAliveEnabled";
43
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040044 public static final String CONFIG_LOCAL_INTERFACE = "Account.localInterface";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040045 public static final String CONFIG_PUBLISHED_SAMEAS_LOCAL = "Account.publishedSameAsLocal";
46 public static final String CONFIG_LOCAL_PORT = "Account.localPort";
47 public static final String CONFIG_PUBLISHED_PORT = "Account.publishedPort";
48 public static final String CONFIG_PUBLISHED_ADDRESS = "Account.publishedAddress";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040049
50 public static final String CONFIG_DISPLAY_NAME = "Account.displayName";
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040051 public static final String CONFIG_STUN_SERVER = "STUN.server";
52 public static final String CONFIG_STUN_ENABLE = "STUN.enable";
Alexandre Lisiona3650992013-11-13 14:19:35 -050053
Alexandre Savard68838112012-10-30 11:34:43 -040054 private ArrayList<AccountDetail.PreferenceEntry> privateArray;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040055
Alexandre Lisiona3650992013-11-13 14:19:35 -050056 public static ArrayList<AccountDetail.PreferenceEntry> getPreferenceEntries() {
Alexandre Savardae992932012-10-17 10:26:12 -040057 ArrayList<AccountDetail.PreferenceEntry> preference = new ArrayList<AccountDetail.PreferenceEntry>();
58
Alexandre Lisionab0cc9f2013-12-12 11:27:25 -050059 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_EXPIRE));
60 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_STATUS));
61 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_STATE_CODE));
62 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_REGISTRATION_STATE_DESC));
63 preference.add(new PreferenceEntry(CONFIG_CREDENTIAL_NUMBER));
64 preference.add(new PreferenceEntry(CONFIG_ACCOUNT_DTMF_TYPE));
65 preference.add(new PreferenceEntry(CONFIG_RINGTONE_PATH));
66 preference.add(new PreferenceEntry(CONFIG_RINGTONE_ENABLED, true));
67 preference.add(new PreferenceEntry(CONFIG_KEEP_ALIVE_ENABLED, true));
68 preference.add(new PreferenceEntry(CONFIG_LOCAL_INTERFACE));
69 preference.add(new PreferenceEntry(CONFIG_PUBLISHED_SAMEAS_LOCAL, true));
70 preference.add(new PreferenceEntry(CONFIG_LOCAL_PORT));
71 preference.add(new PreferenceEntry(CONFIG_PUBLISHED_PORT));
72 preference.add(new PreferenceEntry(CONFIG_PUBLISHED_ADDRESS));
73 preference.add(new PreferenceEntry(CONFIG_DISPLAY_NAME));
74 preference.add(new PreferenceEntry(CONFIG_STUN_SERVER));
75 preference.add(new PreferenceEntry(CONFIG_STUN_ENABLE, true));
Alexandre Savardae992932012-10-17 10:26:12 -040076
77 return preference;
78 }
79
Alexandre Lisiona3650992013-11-13 14:19:35 -050080 public AccountDetailAdvanced() {
Alexandre Savard68838112012-10-30 11:34:43 -040081 privateArray = getPreferenceEntries();
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040082 }
83
Alexandre Lisiona3650992013-11-13 14:19:35 -050084 public AccountDetailAdvanced(HashMap<String, String> pref) {
Alexandre Savard68838112012-10-30 11:34:43 -040085 privateArray = getPreferenceEntries();
86
Alexandre Lisiona3650992013-11-13 14:19:35 -050087 for (AccountDetail.PreferenceEntry p : privateArray) {
Alexandre Savard68838112012-10-30 11:34:43 -040088 p.mValue = pref.get(p.mKey);
89 }
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040090 }
91
Alexandre Lisiona3650992013-11-13 14:19:35 -050092 public AccountDetailAdvanced(ArrayList<String> pref) {
Alexandre Savard68838112012-10-30 11:34:43 -040093 privateArray = getPreferenceEntries();
94
Alexandre Lisiona3650992013-11-13 14:19:35 -050095 if (pref.size() != privateArray.size()) {
Alexandre Savard68838112012-10-30 11:34:43 -040096 Log.i(TAG, "Error list are not of equal size");
Alexandre Lisiona3650992013-11-13 14:19:35 -050097 } else {
Alexandre Savard68838112012-10-30 11:34:43 -040098 int index = 0;
Alexandre Lisiona3650992013-11-13 14:19:35 -050099 for (String s : pref) {
Alexandre Savard68838112012-10-30 11:34:43 -0400100 privateArray.get(index).mValue = s;
alision73424b62013-04-26 11:49:18 -0400101 index++;
Alexandre Savard68838112012-10-30 11:34:43 -0400102 }
103 }
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400104 }
Alexandre Savard68838112012-10-30 11:34:43 -0400105
Alexandre Lisiona3650992013-11-13 14:19:35 -0500106 public ArrayList<AccountDetail.PreferenceEntry> getDetailValues() {
Alexandre Savard68838112012-10-30 11:34:43 -0400107 return privateArray;
108 }
109
Alexandre Lisiona3650992013-11-13 14:19:35 -0500110 public ArrayList<String> getValuesOnly() {
Alexandre Savard68838112012-10-30 11:34:43 -0400111 ArrayList<String> valueList = new ArrayList<String>();
112
Alexandre Lisiona3650992013-11-13 14:19:35 -0500113 for (AccountDetail.PreferenceEntry p : privateArray) {
114 Log.i(TAG, "" + p.mValue);
Alexandre Savard68838112012-10-30 11:34:43 -0400115 valueList.add(p.mValue);
116 }
117
118 return valueList;
119 }
120
Alexandre Lisiona3650992013-11-13 14:19:35 -0500121 public HashMap<String, String> getDetailsHashMap() {
Alexandre Savard833616f2012-10-30 16:02:30 -0400122 HashMap<String, String> map = new HashMap<String, String>();
123
Alexandre Lisiona3650992013-11-13 14:19:35 -0500124 for (AccountDetail.PreferenceEntry p : privateArray) {
Alexandre Savard833616f2012-10-30 16:02:30 -0400125 map.put(p.mKey, p.mValue);
126 }
127
128 return map;
129 }
130
Alexandre Lisiona3650992013-11-13 14:19:35 -0500131 public String getDetailString(String key) {
Alexandre Savard68838112012-10-30 11:34:43 -0400132 String value = "";
133
Alexandre Lisiona3650992013-11-13 14:19:35 -0500134 for (AccountDetail.PreferenceEntry p : privateArray) {
135 if (p.mKey.equals(key)) {
Alexandre Savard68838112012-10-30 11:34:43 -0400136 value = p.mValue;
137 return value;
138 }
139 }
Alexandre Savard68838112012-10-30 11:34:43 -0400140 return value;
141 }
142
Alexandre Lisiona3650992013-11-13 14:19:35 -0500143 public void setDetailString(String key, String newValue) {
144 for (int i = 0; i < privateArray.size(); ++i) {
alision5de91782013-07-10 10:47:30 -0400145 PreferenceEntry p = privateArray.get(i);
Alexandre Lisiona3650992013-11-13 14:19:35 -0500146 if (p.mKey.equals(key)) {
alision5de91782013-07-10 10:47:30 -0400147 privateArray.get(i).mValue = newValue;
148 }
149 }
Alexandre Lisiona3650992013-11-13 14:19:35 -0500150
Alexandre Savard833616f2012-10-30 16:02:30 -0400151 }
152
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400153}