/dev/Clients/Informant.Clients.DataProviders.Wpf4/InformantService/InformantServiceDataProvider.cs

# · C# · 176 lines · 159 code · 16 blank · 1 comment · 14 complexity · d60b81959a1248758c932364602cc8d7 MD5 · raw file

  1. using System;
  2. using Informant.SmsMessaging;
  3. namespace Informant.Clients.DataProviders.Wpf4.InformantService
  4. {
  5. public class InformantServiceDataProvider : IInformantServiceDataProvider
  6. {
  7. private static readonly InformantServiceContext Context;
  8. static InformantServiceDataProvider()
  9. {
  10. Context = new InformantServiceContext();
  11. }
  12. #region Events
  13. public event EventHandler<LogOnCompletedEventArgs> LogOnAsyncCompleted;
  14. private void OnLogOnAsyncCompleted(LogOnCompletedEventArgs e)
  15. {
  16. var handler = LogOnAsyncCompleted;
  17. if (handler != null)
  18. {
  19. handler(this, e);
  20. }
  21. }
  22. public event EventHandler<LogOffCompletedEventArgs> LogOffAsyncCompleted;
  23. private void OnLogOffAsyncCompleted(LogOffCompletedEventArgs e)
  24. {
  25. var handler = LogOffAsyncCompleted;
  26. if (handler != null)
  27. {
  28. handler(this, e);
  29. }
  30. }
  31. public event EventHandler<RetrieveContactsEventArgs> RetrieveContactsAsyncCompleted;
  32. private void OnRetrieveContactsAsyncCompleted(RetrieveContactsEventArgs e)
  33. {
  34. var handler = RetrieveContactsAsyncCompleted;
  35. if (handler != null)
  36. {
  37. handler(this, e);
  38. }
  39. }
  40. public event EventHandler<RetrieveGroupsEventArgs> RetrieveGroupsAsyncCompleted;
  41. private void OnRetrieveGroupsAsyncCompleted(RetrieveGroupsEventArgs e)
  42. {
  43. var handler = RetrieveGroupsAsyncCompleted;
  44. if (handler != null)
  45. {
  46. handler(this, e);
  47. }
  48. }
  49. public event EventHandler<SendSmsProgressReportedEventArgs> SendSmsAsyncProgressReported;
  50. private void OnSendSmsAsyncProgressReported(SendSmsProgressReportedEventArgs e)
  51. {
  52. var handler = SendSmsAsyncProgressReported;
  53. if (handler != null)
  54. {
  55. handler(this, e);
  56. }
  57. }
  58. public event EventHandler<SendSmsCompletedEventArgs> SendSmsAsyncCompleted;
  59. private void OnSendSmsAsyncCompleted(SendSmsCompletedEventArgs e)
  60. {
  61. var handler = SendSmsAsyncCompleted;
  62. if (handler != null)
  63. {
  64. handler(this, e);
  65. }
  66. }
  67. #endregion
  68. #region Public Methods
  69. public void LogUserOnAsync(String username, String password)
  70. {
  71. Context.LogOnAsyncCompleted += ContextLogOnAsyncCompletedHandler;
  72. Context.LogOnAsync(username, password);
  73. }
  74. public void LogUserOffAsync()
  75. {
  76. Context.LogOffAsyncCompleted += ContextLogOffAsyncCompletedHandler;
  77. Context.LogOffAsync();
  78. }
  79. public void DeleteSmsAsync()
  80. {
  81. throw new NotImplementedException();
  82. }
  83. public void MarkReadSmsAsync(String smsId, Boolean isRead)
  84. {
  85. throw new NotImplementedException();
  86. }
  87. public void RetrieveAllSmsAsync()
  88. {
  89. throw new NotImplementedException();
  90. }
  91. public void SendSmsAsync(ISms sms)
  92. {
  93. var serviceSms = sms as Sms;
  94. if (serviceSms != null)
  95. {
  96. Context.SendSmsAsyncCompleted += ContextSendSmsAsyncCompletedHandler;
  97. Context.SendSmsAsyncProgressReported += ContextSendSmsAsyncProgressReportedHandler;
  98. Context.SendSmsAsync(serviceSms);
  99. }
  100. else
  101. {
  102. //TODO: Send a string reason why this failed.
  103. OnSendSmsAsyncCompleted(new SendSmsCompletedEventArgs(false, null));
  104. }
  105. }
  106. public void RetrieveContactsAsync()
  107. {
  108. Context.RetrieveContactsAsyncCompleted += ContextRetrieveContactsAsyncCompletedHandler;
  109. Context.RetrieveContactsAsync();
  110. }
  111. public void RetrieveGroupsAsync()
  112. {
  113. Context.RetrieveGroupsAsyncCompleted += ContextRetrieveGroupsAsyncCompletedHandler;
  114. Context.RetrieveGroupsAsync();
  115. }
  116. #endregion
  117. #region Private Methods
  118. void IContactsDataProvider.LogOnAsync(string username, string password)
  119. {
  120. LogUserOnAsync(username, password);
  121. }
  122. void ISmsDataProvider.LogOffAsync()
  123. {
  124. LogUserOffAsync();
  125. }
  126. void IContactsDataProvider.LogOffAsync()
  127. {
  128. LogUserOffAsync();
  129. }
  130. void ISmsDataProvider.LogOnAsync(string username, string password)
  131. {
  132. LogUserOnAsync(username, password);
  133. }
  134. void ContextLogOnAsyncCompletedHandler(object sender, LogOnCompletedEventArgs e)
  135. {
  136. OnLogOnAsyncCompleted(e);
  137. }
  138. void ContextLogOffAsyncCompletedHandler(object sender, LogOffCompletedEventArgs e)
  139. {
  140. OnLogOffAsyncCompleted(e);
  141. }
  142. void ContextSendSmsAsyncCompletedHandler(object sender, SendSmsCompletedEventArgs e)
  143. {
  144. OnSendSmsAsyncCompleted(e);
  145. }
  146. void ContextSendSmsAsyncProgressReportedHandler(object sender, SendSmsProgressReportedEventArgs e)
  147. {
  148. OnSendSmsAsyncProgressReported(e);
  149. }
  150. void ContextRetrieveContactsAsyncCompletedHandler(object sender, RetrieveContactsEventArgs e)
  151. {
  152. OnRetrieveContactsAsyncCompleted(e);
  153. }
  154. void ContextRetrieveGroupsAsyncCompletedHandler(object sender, RetrieveGroupsEventArgs e)
  155. {
  156. OnRetrieveGroupsAsyncCompleted(e);
  157. }
  158. #endregion
  159. }
  160. }