blob: 7b49c70475548110857449ac0f61a1c6b01f63a4 [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 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";
32 public static final String BUNDLE_TAG = "TlsPreferenceArrayList";
Alexandre Lision8ad39592013-11-21 13:23:58 -050033
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040034 public static final String CONFIG_TLS_LISTENER_PORT = "TLS.listenerPort";
35 public static final String CONFIG_TLS_ENABLE = "TLS.enable";
36 public static final String CONFIG_TLS_CA_LIST_FILE = "TLS.certificateListFile";
37 public static final String CONFIG_TLS_CERTIFICATE_FILE = "TLS.certificateFile";
38 public static final String CONFIG_TLS_PRIVATE_KEY_FILE = "TLS.privateKeyFile";
39 public static final String CONFIG_TLS_PASSWORD = "TLS.password";
40 public static final String CONFIG_TLS_METHOD = "TLS.method";
41 public static final String CONFIG_TLS_CIPHERS = "TLS.ciphers";
42 public static final String CONFIG_TLS_SERVER_NAME = "TLS.serverName";
43 public static final String CONFIG_TLS_VERIFY_SERVER = "TLS.verifyServer";
44 public static final String CONFIG_TLS_VERIFY_CLIENT = "TLS.verifyClient";
45 public static final String CONFIG_TLS_REQUIRE_CLIENT_CERTIFICATE = "TLS.requireClientCertificate";
46 public static final String CONFIG_TLS_NEGOTIATION_TIMEOUT_SEC = "TLS.negotiationTimeoutSec";
47 public static final String CONFIG_TLS_NEGOTIATION_TIMEOUT_MSEC = "TLS.negotiationTimemoutMsec";
Alexandre Lision8ad39592013-11-21 13:23:58 -050048
Alexandre Savard68838112012-10-30 11:34:43 -040049 private ArrayList<AccountDetail.PreferenceEntry> privateArray;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040050
Alexandre Lision8ad39592013-11-21 13:23:58 -050051 public static ArrayList<AccountDetail.PreferenceEntry> getPreferenceEntries() {
Alexandre Savardae992932012-10-17 10:26:12 -040052 ArrayList<AccountDetail.PreferenceEntry> preference = new ArrayList<AccountDetail.PreferenceEntry>();
53
Alexandre Lisionab0cc9f2013-12-12 11:27:25 -050054 preference.add(new PreferenceEntry(CONFIG_TLS_LISTENER_PORT));
55 preference.add(new PreferenceEntry(CONFIG_TLS_ENABLE, true));
56 preference.add(new PreferenceEntry(CONFIG_TLS_CA_LIST_FILE));
57 preference.add(new PreferenceEntry(CONFIG_TLS_CERTIFICATE_FILE));
58 preference.add(new PreferenceEntry(CONFIG_TLS_PRIVATE_KEY_FILE));
59 preference.add(new PreferenceEntry(CONFIG_TLS_PASSWORD));
60 preference.add(new PreferenceEntry(CONFIG_TLS_METHOD));
61 preference.add(new PreferenceEntry(CONFIG_TLS_CIPHERS));
62 preference.add(new PreferenceEntry(CONFIG_TLS_SERVER_NAME));
63 preference.add(new PreferenceEntry(CONFIG_TLS_VERIFY_SERVER));
64 preference.add(new PreferenceEntry(CONFIG_TLS_VERIFY_CLIENT, true));
65 preference.add(new PreferenceEntry(CONFIG_TLS_REQUIRE_CLIENT_CERTIFICATE, true));
66 preference.add(new PreferenceEntry(CONFIG_TLS_NEGOTIATION_TIMEOUT_SEC));
67 preference.add(new PreferenceEntry(CONFIG_TLS_NEGOTIATION_TIMEOUT_MSEC));
Alexandre Savardae992932012-10-17 10:26:12 -040068
69 return preference;
70 }
71
Alexandre Lision8ad39592013-11-21 13:23:58 -050072 public AccountDetailTls() {
Alexandre Savard68838112012-10-30 11:34:43 -040073 privateArray = getPreferenceEntries();
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -040074 }
75
Alexandre Lision8ad39592013-11-21 13:23:58 -050076 public AccountDetailTls(HashMap<String, String> pref) {
Alexandre Savard68838112012-10-30 11:34:43 -040077 privateArray = getPreferenceEntries();
78
Alexandre Lision8ad39592013-11-21 13:23:58 -050079 for (AccountDetail.PreferenceEntry p : privateArray) {
Alexandre Savard68838112012-10-30 11:34:43 -040080 p.mValue = pref.get(p.mKey);
81 }
82 }
83
Alexandre Lision8ad39592013-11-21 13:23:58 -050084 public AccountDetailTls(ArrayList<String> pref) {
Alexandre Savard68838112012-10-30 11:34:43 -040085 privateArray = getPreferenceEntries();
86
Alexandre Lision8ad39592013-11-21 13:23:58 -050087 if (pref.size() != privateArray.size()) {
Alexandre Savard68838112012-10-30 11:34:43 -040088 Log.i(TAG, "Error list are not of equal size");
Alexandre Lision8ad39592013-11-21 13:23:58 -050089 } else {
Alexandre Savard68838112012-10-30 11:34:43 -040090 int index = 0;
Alexandre Lision8ad39592013-11-21 13:23:58 -050091 for (String s : pref) {
Alexandre Savard68838112012-10-30 11:34:43 -040092 privateArray.get(index).mValue = s;
93 index++;
94 }
95 }
96 }
97
Alexandre Lision8ad39592013-11-21 13:23:58 -050098 public ArrayList<AccountDetail.PreferenceEntry> getDetailValues() {
Alexandre Savard68838112012-10-30 11:34:43 -040099 return privateArray;
100 }
101
Alexandre Lision8ad39592013-11-21 13:23:58 -0500102 public ArrayList<String> getValuesOnly() {
Alexandre Savard68838112012-10-30 11:34:43 -0400103 ArrayList<String> valueList = new ArrayList<String>();
104
Alexandre Lision8ad39592013-11-21 13:23:58 -0500105 for (AccountDetail.PreferenceEntry p : privateArray) {
Alexandre Savard68838112012-10-30 11:34:43 -0400106 valueList.add(p.mValue);
107 }
108
109 return valueList;
110 }
111
Alexandre Lision8ad39592013-11-21 13:23:58 -0500112 public HashMap<String, String> getDetailsHashMap() {
Alexandre Savard833616f2012-10-30 16:02:30 -0400113 HashMap<String, String> map = new HashMap<String, String>();
114
Alexandre Lision8ad39592013-11-21 13:23:58 -0500115 for (AccountDetail.PreferenceEntry p : privateArray) {
116 if (p.mValue == null) {
Alexandre Lision059da9d2013-10-22 11:17:25 -0400117 map.put(p.mKey, "");
118 } else {
119 map.put(p.mKey, p.mValue);
120 }
Alexandre Savard833616f2012-10-30 16:02:30 -0400121 }
122
123 return map;
124 }
125
Alexandre Lision8ad39592013-11-21 13:23:58 -0500126 public String getDetailString(String key) {
Alexandre Savard68838112012-10-30 11:34:43 -0400127 String value = "";
128
Alexandre Lision8ad39592013-11-21 13:23:58 -0500129 for (AccountDetail.PreferenceEntry p : privateArray) {
130 if (p.mKey.equals(key)) {
Alexandre Savard68838112012-10-30 11:34:43 -0400131 value = p.mValue;
132 return value;
133 }
134 }
135
136 return value;
137 }
138
Alexandre Lision8ad39592013-11-21 13:23:58 -0500139 public void setDetailString(String key, String newValue) {
140 for (int i = 0; i < privateArray.size(); ++i) {
alision5de91782013-07-10 10:47:30 -0400141 PreferenceEntry p = privateArray.get(i);
Alexandre Lision8ad39592013-11-21 13:23:58 -0500142 if (p.mKey.equals(key)) {
alision5de91782013-07-10 10:47:30 -0400143 privateArray.get(i).mValue = newValue;
144 }
145 }
Alexandre Lision8ad39592013-11-21 13:23:58 -0500146
Alexandre Savard833616f2012-10-30 16:02:30 -0400147 }
148
Alexandre Lision8ad39592013-11-21 13:23:58 -0500149 public boolean getDetailBoolean(String key) {
150 for (AccountDetail.PreferenceEntry p : privateArray) {
151 if (p.mKey.equals(key)) {
152 return p.mValue.contentEquals("true");
153 }
154 }
155 return false;
Alexandre Savardf7f9e0b2012-10-15 17:24:07 -0400156 }
157}