blob: ed72617af415d82ac59962f170e00b0cfb3d699e [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
alision5cfc35d2013-07-11 15:11:39 -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 AccountDetailTls implements AccountDetail {
Alexandre Savard68838112012-10-30 11:34:43 -040032
33 private static final String TAG = "AccountDetailTls";
34 public static final String BUNDLE_TAG = "TlsPreferenceArrayList";
alision5cfc35d2013-07-11 15:11:39 -040035
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040036 public static final String CONFIG_TLS_LISTENER_PORT = "TLS.listenerPort";
37 public static final String CONFIG_TLS_ENABLE = "TLS.enable";
38 public static final String CONFIG_TLS_CA_LIST_FILE = "TLS.certificateListFile";
39 public static final String CONFIG_TLS_CERTIFICATE_FILE = "TLS.certificateFile";
40 public static final String CONFIG_TLS_PRIVATE_KEY_FILE = "TLS.privateKeyFile";
41 public static final String CONFIG_TLS_PASSWORD = "TLS.password";
42 public static final String CONFIG_TLS_METHOD = "TLS.method";
43 public static final String CONFIG_TLS_CIPHERS = "TLS.ciphers";
44 public static final String CONFIG_TLS_SERVER_NAME = "TLS.serverName";
45 public static final String CONFIG_TLS_VERIFY_SERVER = "TLS.verifyServer";
46 public static final String CONFIG_TLS_VERIFY_CLIENT = "TLS.verifyClient";
47 public static final String CONFIG_TLS_REQUIRE_CLIENT_CERTIFICATE = "TLS.requireClientCertificate";
48 public static final String CONFIG_TLS_NEGOTIATION_TIMEOUT_SEC = "TLS.negotiationTimeoutSec";
49 public static final String CONFIG_TLS_NEGOTIATION_TIMEOUT_MSEC = "TLS.negotiationTimemoutMsec";
alision5cfc35d2013-07-11 15:11:39 -040050
Alexandre Savard68838112012-10-30 11:34:43 -040051 private ArrayList<AccountDetail.PreferenceEntry> privateArray;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040052
Alexandre Savardae992932012-10-17 10:26:12 -040053 public static ArrayList<AccountDetail.PreferenceEntry> getPreferenceEntries()
54 {
55 ArrayList<AccountDetail.PreferenceEntry> preference = new ArrayList<AccountDetail.PreferenceEntry>();
56
57 preference.add(new PreferenceEntry(CONFIG_TLS_LISTENER_PORT, R.string.account_listener_port_label));
58 preference.add(new PreferenceEntry(CONFIG_TLS_ENABLE, R.string.account_tls_enabled_label, true));
59 preference.add(new PreferenceEntry(CONFIG_TLS_CA_LIST_FILE, R.string.account_tls_certificate_list_label));
60 preference.add(new PreferenceEntry(CONFIG_TLS_CERTIFICATE_FILE, R.string.account_tls_certificate_file_label));
61 preference.add(new PreferenceEntry(CONFIG_TLS_PRIVATE_KEY_FILE, R.string.account_tls_private_key_file_label));
62 preference.add(new PreferenceEntry(CONFIG_TLS_PASSWORD, R.string.account_tls_password_label));
63 preference.add(new PreferenceEntry(CONFIG_TLS_METHOD, R.string.account_tls_method_label));
64 preference.add(new PreferenceEntry(CONFIG_TLS_CIPHERS, R.string.account_tls_ciphers_label));
65 preference.add(new PreferenceEntry(CONFIG_TLS_SERVER_NAME, R.string.account_tls_server_name_label));
66 preference.add(new PreferenceEntry(CONFIG_TLS_VERIFY_SERVER, R.string.account_tls_verify_label, true));
67 preference.add(new PreferenceEntry(CONFIG_TLS_VERIFY_CLIENT, R.string.account_tls_verify_client_label, true));
68 preference.add(new PreferenceEntry(CONFIG_TLS_REQUIRE_CLIENT_CERTIFICATE, R.string.account_tls_require_client_certificat_label, true));
69 preference.add(new PreferenceEntry(CONFIG_TLS_NEGOTIATION_TIMEOUT_SEC, R.string.account_tls_negotiation_timeout_sec));
70 preference.add(new PreferenceEntry(CONFIG_TLS_NEGOTIATION_TIMEOUT_MSEC, R.string.account_tls_negotiation_timeout_msec));
71
72 return preference;
73 }
74
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040075 public AccountDetailTls()
76 {
Alexandre Savard68838112012-10-30 11:34:43 -040077 privateArray = getPreferenceEntries();
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040078 }
79
Alexandre Savard68838112012-10-30 11:34:43 -040080 public AccountDetailTls(HashMap<String, String> pref)
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040081 {
Alexandre Savard68838112012-10-30 11:34:43 -040082 privateArray = getPreferenceEntries();
83
84 for(AccountDetail.PreferenceEntry p : privateArray) {
85 p.mValue = pref.get(p.mKey);
86 }
87 }
88
89 public AccountDetailTls(ArrayList<String> pref)
90 {
91 privateArray = getPreferenceEntries();
92
93 if(pref.size() != privateArray.size()) {
94 Log.i(TAG, "Error list are not of equal size");
95 }
96 else {
97 int index = 0;
98 for(String s : pref) {
99 privateArray.get(index).mValue = s;
100 index++;
101 }
102 }
103 }
104
105 public ArrayList<AccountDetail.PreferenceEntry> getDetailValues()
106 {
107 return privateArray;
108 }
109
110 public ArrayList<String> getValuesOnly()
111 {
112 ArrayList<String> valueList = new ArrayList<String>();
113
114 for(AccountDetail.PreferenceEntry p : privateArray) {
115 valueList.add(p.mValue);
116 }
117
118 return valueList;
119 }
120
Alexandre Savard833616f2012-10-30 16:02:30 -0400121 public HashMap<String, String> getDetailsHashMap()
122 {
123 HashMap<String, String> map = new HashMap<String, String>();
124
125 for(AccountDetail.PreferenceEntry p : privateArray) {
Alexandre Lision059da9d2013-10-22 11:17:25 -0400126 if(p.mValue == null){
127 map.put(p.mKey, "");
128 } else {
129 map.put(p.mKey, p.mValue);
130 }
Alexandre Savard833616f2012-10-30 16:02:30 -0400131 }
132
133 return map;
134 }
135
Alexandre Savard68838112012-10-30 11:34:43 -0400136 public String getDetailString(String key)
137 {
138 String value = "";
139
140 for(AccountDetail.PreferenceEntry p : privateArray) {
141 if(p.mKey.equals(key)) {
142 value = p.mValue;
143 return value;
144 }
145 }
146
147 return value;
148 }
149
alision5de91782013-07-10 10:47:30 -0400150 public void setDetailString(String key, String newValue)
Alexandre Savard833616f2012-10-30 16:02:30 -0400151 {
alision5de91782013-07-10 10:47:30 -0400152 for(int i = 0 ; i < privateArray.size() ; ++i) {
153 PreferenceEntry p = privateArray.get(i);
154 if(p.mKey.equals(key)) {
155 privateArray.get(i).mValue = newValue;
156 }
157 }
158
Alexandre Savard833616f2012-10-30 16:02:30 -0400159 }
160
Alexandre Savard68838112012-10-30 11:34:43 -0400161 public boolean getDetailBoolean()
162 {
163 return true;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400164 }
165}