/Ksamuelsen.Office.Outlook.Addin.VDialer/VDialerConfiguration.cs

# · C# · 273 lines · 209 code · 59 blank · 5 comment · 23 complexity · 241e76915201448ff752a90ab54bc7ed MD5 · raw file

  1. // Copyright (c) 2009 Kjetil Eraker Samuelsen
  2. // This source is subject to the Microsoft Public License.
  3. // See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
  4. // All other rights reserved.
  5. using System;
  6. using System.Text;
  7. using System.Text.RegularExpressions;
  8. using System.Reflection;
  9. using Microsoft.Win32;
  10. using Ksamuelsen.Services.Vonage;
  11. namespace Ksamuelsen.Office.Outlook.Addin.VDialer {
  12. internal class VDialerConfiguration {
  13. private static VDialerConfiguration _instance;
  14. private static object _lock = new Object();
  15. private static Regex _expr = (new Regex(Properties.Resources.CONTACT_NUMBER_ALLOWED_CHARS, RegexOptions.Compiled));
  16. public static VDialerConfiguration Instance {
  17. get {
  18. lock (_lock) {
  19. if (_instance == null)
  20. _instance = new VDialerConfiguration();
  21. }
  22. return _instance;
  23. }
  24. }
  25. private string _countryCode = String.Empty;
  26. private string _internationalPrefix = String.Empty;
  27. private string _longDistancePrefix = String.Empty;
  28. private string _ownNumber = String.Empty;
  29. private string _displayNumber = String.Empty;
  30. private string _userName = String.Empty;
  31. private string _password = String.Empty;
  32. private bool _showDialog = true;
  33. private bool _showDialogWait = true;
  34. private bool _showDialogAutoClose = true;
  35. private bool _ignoreExtension = true;
  36. private bool _createJournal = false;
  37. private bool _useContactCenter = false;
  38. private VDialerJournalOptions _journalOptions;
  39. private VDialerConfiguration() {
  40. Load();
  41. }
  42. public string CountryCode {
  43. get { return _countryCode; }
  44. set { _countryCode = value; }
  45. }
  46. public string InternationalPrefix {
  47. get { return _internationalPrefix; }
  48. set { _internationalPrefix = value; }
  49. }
  50. public string LongDistancePrefix {
  51. get { return _longDistancePrefix; }
  52. set { _longDistancePrefix = value; }
  53. }
  54. public string OwnNumber {
  55. get { return _ownNumber; }
  56. }
  57. public string DisplayNumber {
  58. get {
  59. return _displayNumber;
  60. }
  61. set {
  62. _displayNumber = value;
  63. _ownNumber = Format(_displayNumber);
  64. }
  65. }
  66. public string UserName {
  67. get { return _userName; }
  68. set { _userName = value; }
  69. }
  70. public string Password {
  71. get { return _password; }
  72. set { _password = value; }
  73. }
  74. public bool ShowDialDialog {
  75. get { return _showDialog; }
  76. set { _showDialog = value; }
  77. }
  78. public bool ShowDialDialogWait {
  79. get { return _showDialogWait; }
  80. set { _showDialogWait = value; }
  81. }
  82. public bool ShowDialDialogAutoClose {
  83. get { return _showDialogAutoClose; }
  84. set { _showDialogAutoClose = value; }
  85. }
  86. public bool IgnoreExtension {
  87. get { return _ignoreExtension; }
  88. set { _ignoreExtension = value; }
  89. }
  90. public bool CreateJournal {
  91. get { return _createJournal; }
  92. set { _createJournal = value; }
  93. }
  94. public bool UseContactCenter {
  95. get { return _useContactCenter; }
  96. set {
  97. _useContactCenter = value;
  98. Click2Call.VonageService = (_useContactCenter ? Click2Call.Service.ContactCenter : Click2Call.Service.Click2Call);
  99. }
  100. }
  101. public VDialerJournalOptions JournalOptions {
  102. get {
  103. if (_journalOptions == null)
  104. _journalOptions = new VDialerJournalOptions();
  105. return _journalOptions;
  106. }
  107. }
  108. public bool ConfigurationValid {
  109. get {
  110. return ((!String.IsNullOrEmpty(_userName)) && (!String.IsNullOrEmpty(_password)) && (!String.IsNullOrEmpty(_ownNumber)));
  111. }
  112. }
  113. public void Save() {
  114. Interop.CredentialsInterop.StoreCredentials(Properties.Resources.CREDENTIALS_KEY, _userName, _password);
  115. using (RegistryKey key = GetOrCreateKey(Properties.Resources.REG_KEY)) {
  116. SetRegistryStringValue(key, Properties.Resources.REG_KEY_OWN_NUMBER, DisplayNumber);
  117. SetRegistryStringValue(key, Properties.Resources.REG_KEY_COUNTRY_CODE, _countryCode);
  118. SetRegistryStringValue(key, Properties.Resources.REG_KEY_LONG_DIST_PREFIX, _longDistancePrefix);
  119. SetRegistryStringValue(key, Properties.Resources.REG_KEY_INTERNATIONAL_PREFIX, _internationalPrefix);
  120. SetRegistryBoolValue(key, Properties.Resources.REG_KEY_SHOW_DIALOG, _showDialog, "Show", "Hide");
  121. SetRegistryBoolValue(key, Properties.Resources.REG_KEY_SHOW_DIALOG_WAIT, _showDialogWait, "Yes", "No");
  122. SetRegistryBoolValue(key, Properties.Resources.REG_KEY_SHOW_DIALOG_AUTO_CLOSE, _showDialogAutoClose, "Yes", "No");
  123. SetRegistryBoolValue(key, Properties.Resources.REG_KEY_IGNORE_EXTENSION, _ignoreExtension, "Yes", "No");
  124. SetRegistryBoolValue(key, Properties.Resources.REG_KEY_CREATE_JOURNAL, _createJournal, "Yes", "No");
  125. SetRegistryBoolValue(key, Properties.Resources.REG_KEY_USE_CONTACT_CENTER, _useContactCenter, "Yes", "No");
  126. key.Close();
  127. }
  128. }
  129. private void Load() {
  130. try {
  131. Interop.CredentialsInterop.ReadCredentials(Properties.Resources.CREDENTIALS_KEY, out _userName, out _password);
  132. } catch (Exception) { }
  133. using (RegistryKey key = Registry.CurrentUser.OpenSubKey(Properties.Resources.REG_KEY)) {
  134. // Move credentials from registry, remove from registry
  135. if ((key != null) && ((String.IsNullOrEmpty(_userName)) && (String.IsNullOrEmpty(_password)))) {
  136. _userName = (string)key.GetValue(Properties.Resources.REG_KEY_USERNAME, String.Empty);
  137. _password = (string)key.GetValue(Properties.Resources.REG_KEY_PASSWORD, String.Empty);
  138. if ((!String.IsNullOrEmpty(_userName)) && (!String.IsNullOrEmpty(_password))) {
  139. Interop.CredentialsInterop.StoreCredentials(Properties.Resources.CREDENTIALS_KEY, _userName, _password);
  140. using (RegistryKey delkey = GetOrCreateKey(Properties.Resources.REG_KEY)) {
  141. delkey.DeleteValue(Properties.Resources.REG_KEY_USERNAME);
  142. delkey.DeleteValue(Properties.Resources.REG_KEY_PASSWORD);
  143. delkey.Close();
  144. }
  145. }
  146. }
  147. DisplayNumber = GetRegistryStringValue(key, Properties.Resources.REG_KEY_OWN_NUMBER);
  148. _countryCode = GetRegistryStringValue(key, Properties.Resources.REG_KEY_COUNTRY_CODE);
  149. _longDistancePrefix = GetRegistryStringValue(key, Properties.Resources.REG_KEY_LONG_DIST_PREFIX);
  150. _internationalPrefix = GetRegistryStringValue(key, Properties.Resources.REG_KEY_INTERNATIONAL_PREFIX);
  151. _ignoreExtension = GetRegistryBoolValue(key, Properties.Resources.REG_KEY_IGNORE_EXTENSION, "Yes", "No");
  152. _showDialog = GetRegistryBoolValue(key, Properties.Resources.REG_KEY_SHOW_DIALOG, "Show", "Hide");
  153. _showDialogWait = GetRegistryBoolValue(key, Properties.Resources.REG_KEY_SHOW_DIALOG_WAIT, "Yes", "No");
  154. _showDialogAutoClose = GetRegistryBoolValue(key, Properties.Resources.REG_KEY_SHOW_DIALOG_AUTO_CLOSE, "Yes", "No");
  155. _createJournal = GetRegistryBoolValue(key, Properties.Resources.REG_KEY_CREATE_JOURNAL, "Yes", "No");
  156. UseContactCenter = GetRegistryBoolValue(key, Properties.Resources.REG_KEY_USE_CONTACT_CENTER, "Yes", "No");
  157. if (key != null)
  158. key.Close();
  159. }
  160. }
  161. private string Format(string number) {
  162. number.Trim();
  163. char[] narr = number.ToCharArray();
  164. StringBuilder buf = new StringBuilder();
  165. for (int i = 0, j = narr.Length; i < j; i++) {
  166. if (_expr.IsMatch(narr[i].ToString()))
  167. buf.Append(narr[i]);
  168. }
  169. return buf.ToString().Trim();
  170. }
  171. internal static RegistryKey GetOrCreateKey(string name) {
  172. RegistryKey key = Registry.CurrentUser.OpenSubKey(name, true);
  173. if (key == null)
  174. key = Registry.CurrentUser.CreateSubKey(name);
  175. return key;
  176. }
  177. internal static string GetRegistryStringValue(RegistryKey key, string prop) {
  178. if (key == null)
  179. return GetRegistryDefaultValue(prop);
  180. return (string)key.GetValue(GetRegistryKeyName(prop), GetRegistryDefaultValue(prop));
  181. }
  182. internal static bool GetRegistryBoolValue(RegistryKey key, string prop, string trueValue, string falseValue) {
  183. string value = GetRegistryStringValue(key, prop);
  184. if (String.IsNullOrEmpty(value))
  185. return false;
  186. return value.Equals(trueValue, StringComparison.CurrentCultureIgnoreCase);
  187. }
  188. internal static bool GetRegistryBoolValue(RegistryKey key, string prop) {
  189. return GetRegistryBoolValue(key, prop, "Yes", "No");
  190. }
  191. internal static void SetRegistryStringValue(RegistryKey key, string prop, string value) {
  192. key.SetValue(GetRegistryKeyName(prop), value, RegistryValueKind.String);
  193. }
  194. internal static void SetRegistryBoolValue(RegistryKey key, string prop, bool value, string trueValue, string falseValue) {
  195. string strValue = value ? trueValue : falseValue;
  196. SetRegistryStringValue(key, prop, strValue);
  197. }
  198. internal static void SetRegistryBoolValue(RegistryKey key, string prop, bool value) {
  199. SetRegistryBoolValue(key, prop, value, "Yes", "No");
  200. }
  201. internal static string GetRegistryKeyName(string value) {
  202. if (value.Contains("|")) {
  203. return value.Substring(0, value.IndexOf('|'));
  204. }
  205. return value;
  206. }
  207. internal static string GetRegistryDefaultValue(string value) {
  208. if (value.Contains("|")) {
  209. return value.Substring(value.IndexOf('|') + 1);
  210. }
  211. return string.Empty;
  212. }
  213. }
  214. }