blob: a13c1d414cb6b0f2d2fbc830af591829110a6aba [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
alision5cfc35d2013-07-11 15:11:39 -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 AccountDetailTls implements AccountDetail {
Alexandre Savard68838112012-10-30 11:34:43 -040030
31 private static final String TAG = "AccountDetailTls";
Alexandre Lision8ad39592013-11-21 13:23:58 -050032
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040033 public static final String CONFIG_TLS_LISTENER_PORT = "TLS.listenerPort";
34 public static final String CONFIG_TLS_ENABLE = "TLS.enable";
35 public static final String CONFIG_TLS_CA_LIST_FILE = "TLS.certificateListFile";
36 public static final String CONFIG_TLS_CERTIFICATE_FILE = "TLS.certificateFile";
37 public static final String CONFIG_TLS_PRIVATE_KEY_FILE = "TLS.privateKeyFile";
38 public static final String CONFIG_TLS_PASSWORD = "TLS.password";
39 public static final String CONFIG_TLS_METHOD = "TLS.method";
40 public static final String CONFIG_TLS_CIPHERS = "TLS.ciphers";
41 public static final String CONFIG_TLS_SERVER_NAME = "TLS.serverName";
42 public static final String CONFIG_TLS_VERIFY_SERVER = "TLS.verifyServer";
43 public static final String CONFIG_TLS_VERIFY_CLIENT = "TLS.verifyClient";
44 public static final String CONFIG_TLS_REQUIRE_CLIENT_CERTIFICATE = "TLS.requireClientCertificate";
45 public static final String CONFIG_TLS_NEGOTIATION_TIMEOUT_SEC = "TLS.negotiationTimeoutSec";
Alexandre Lision8ad39592013-11-21 13:23:58 -050046
Alexandre Savard68838112012-10-30 11:34:43 -040047 private ArrayList<AccountDetail.PreferenceEntry> privateArray;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040048
Alexandre Lision8ad39592013-11-21 13:23:58 -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_TLS_LISTENER_PORT));
53 preference.add(new PreferenceEntry(CONFIG_TLS_ENABLE, true));
54 preference.add(new PreferenceEntry(CONFIG_TLS_CA_LIST_FILE));
55 preference.add(new PreferenceEntry(CONFIG_TLS_CERTIFICATE_FILE));
56 preference.add(new PreferenceEntry(CONFIG_TLS_PRIVATE_KEY_FILE));
57 preference.add(new PreferenceEntry(CONFIG_TLS_PASSWORD));
58 preference.add(new PreferenceEntry(CONFIG_TLS_METHOD));
59 preference.add(new PreferenceEntry(CONFIG_TLS_CIPHERS));
60 preference.add(new PreferenceEntry(CONFIG_TLS_SERVER_NAME));
61 preference.add(new PreferenceEntry(CONFIG_TLS_VERIFY_SERVER));
62 preference.add(new PreferenceEntry(CONFIG_TLS_VERIFY_CLIENT, true));
63 preference.add(new PreferenceEntry(CONFIG_TLS_REQUIRE_CLIENT_CERTIFICATE, true));
64 preference.add(new PreferenceEntry(CONFIG_TLS_NEGOTIATION_TIMEOUT_SEC));
Alexandre Savardae992932012-10-17 10:26:12 -040065
66 return preference;
67 }
68
Alexandre Lision8ad39592013-11-21 13:23:58 -050069 public AccountDetailTls(HashMap<String, String> pref) {
Alexandre Savard68838112012-10-30 11:34:43 -040070 privateArray = getPreferenceEntries();
71
Alexandre Lision8ad39592013-11-21 13:23:58 -050072 for (AccountDetail.PreferenceEntry p : privateArray) {
Alexandre Savard68838112012-10-30 11:34:43 -040073 p.mValue = pref.get(p.mKey);
74 }
75 }
76
Alexandre Lision8ad39592013-11-21 13:23:58 -050077 public ArrayList<AccountDetail.PreferenceEntry> getDetailValues() {
Alexandre Savard68838112012-10-30 11:34:43 -040078 return privateArray;
79 }
80
Alexandre Lision8ad39592013-11-21 13:23:58 -050081 public ArrayList<String> getValuesOnly() {
Alexandre Savard68838112012-10-30 11:34:43 -040082 ArrayList<String> valueList = new ArrayList<String>();
83
Alexandre Lision8ad39592013-11-21 13:23:58 -050084 for (AccountDetail.PreferenceEntry p : privateArray) {
Alexandre Savard68838112012-10-30 11:34:43 -040085 valueList.add(p.mValue);
86 }
87
88 return valueList;
89 }
90
Alexandre Lision8ad39592013-11-21 13:23:58 -050091 public HashMap<String, String> getDetailsHashMap() {
Alexandre Savard833616f2012-10-30 16:02:30 -040092 HashMap<String, String> map = new HashMap<String, String>();
93
Alexandre Lision8ad39592013-11-21 13:23:58 -050094 for (AccountDetail.PreferenceEntry p : privateArray) {
95 if (p.mValue == null) {
Alexandre Lision059da9d2013-10-22 11:17:25 -040096 map.put(p.mKey, "");
97 } else {
98 map.put(p.mKey, p.mValue);
99 }
Alexandre Savard833616f2012-10-30 16:02:30 -0400100 }
101
102 return map;
103 }
104
Alexandre Lision8ad39592013-11-21 13:23:58 -0500105 public String getDetailString(String key) {
Alexandre Savard68838112012-10-30 11:34:43 -0400106 String value = "";
107
Alexandre Lision8ad39592013-11-21 13:23:58 -0500108 for (AccountDetail.PreferenceEntry p : privateArray) {
109 if (p.mKey.equals(key)) {
Alexandre Savard68838112012-10-30 11:34:43 -0400110 value = p.mValue;
111 return value;
112 }
113 }
114
115 return value;
116 }
117
Alexandre Lision8ad39592013-11-21 13:23:58 -0500118 public void setDetailString(String key, String newValue) {
119 for (int i = 0; i < privateArray.size(); ++i) {
alision5de91782013-07-10 10:47:30 -0400120 PreferenceEntry p = privateArray.get(i);
Alexandre Lision8ad39592013-11-21 13:23:58 -0500121 if (p.mKey.equals(key)) {
alision5de91782013-07-10 10:47:30 -0400122 privateArray.get(i).mValue = newValue;
123 }
124 }
Alexandre Lision8ad39592013-11-21 13:23:58 -0500125
Alexandre Savard833616f2012-10-30 16:02:30 -0400126 }
127
Alexandre Lision8ad39592013-11-21 13:23:58 -0500128 public boolean getDetailBoolean(String key) {
129 for (AccountDetail.PreferenceEntry p : privateArray) {
130 if (p.mKey.equals(key)) {
131 return p.mValue.contentEquals("true");
132 }
133 }
134 return false;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400135 }
136}