/External/FollwitApi/UI/Panels/LoginNewUserPanel.cs

http://mptvseries.googlecode.com/ · C# · 271 lines · 216 code · 52 blank · 3 comment · 46 complexity · 5fab9897069b1499cbe50f6a7300f046 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using Follwit.API.Data;
  10. using System.Threading;
  11. using CookComputing.XmlRpc;
  12. namespace Follwit.API.UI.Panels {
  13. public partial class LoginNewUserPanel : UserControl {
  14. public enum Action { BACK, VALIDATED }
  15. public event ActionSelectedDelegate ActionSelected;
  16. public delegate void ActionSelectedDelegate(Action action);
  17. private delegate void InvokeDelegate();
  18. private delegate void InvokeDelegateEx(Exception ex);
  19. private Color defaultLabelColor;
  20. private bool verified = false;
  21. private FollwitApi api = null;
  22. private bool usernameAvailable = true;
  23. private string lastCheckedName = "";
  24. public FitUser ValidatedUser {
  25. get;
  26. private set;
  27. }
  28. public string ApiUrl {
  29. get;
  30. set;
  31. }
  32. public LoginNewUserPanel() {
  33. InitializeComponent();
  34. ApiUrl = null;
  35. }
  36. private void CreateUser() {
  37. // set the status label to inform the user of whats happening
  38. statusLabel.ForeColor = defaultLabelColor;
  39. statusLabel.Text = "Creating new account...";
  40. statusLabel.Visible = true;
  41. // disable the log in button so the user doesnt double tap it
  42. createAccountOkButton.Enabled = false;
  43. ThreadStart actions = delegate {
  44. try {
  45. string username = usernameTextBox.Text;
  46. string password = passwordTextBox.Text;
  47. bool success = FollwitApi.CreateUser(username, password, emailTextBox.Text, "en", privateCheckBox.Checked, ApiUrl);
  48. if (success) {
  49. api = FollwitApi.Login(username, FollwitApi.HashPassword(password), ApiUrl);
  50. ValidatedUser = api.User;
  51. }
  52. else {
  53. api = null;
  54. ValidatedUser = null;
  55. }
  56. }
  57. catch (Exception ex) {
  58. UnexpectedError(ex);
  59. return;
  60. }
  61. CreateUserDone();
  62. };
  63. Thread verifyLoginThread = new Thread(actions);
  64. verifyLoginThread.Name = "Authentication Thread";
  65. verifyLoginThread.IsBackground = true;
  66. verifyLoginThread.Start();
  67. }
  68. private void CreateUserDone() {
  69. if (InvokeRequired) {
  70. Invoke(new InvokeDelegate(CreateUserDone));
  71. return;
  72. }
  73. if (api == null) {
  74. statusLabel.ForeColor = Color.Red;
  75. statusLabel.Text = "Unexpected Error.";
  76. statusLabel.Visible = true;
  77. createAccountOkButton.Text = "Sign In";
  78. createAccountOkButton.Enabled = true;
  79. verified = false;
  80. }
  81. else {
  82. statusLabel.ForeColor = Color.Green;
  83. statusLabel.Text = "Account successfully created!";
  84. statusLabel.Visible = true;
  85. createAccountOkButton.Text = "OK";
  86. createAccountOkButton.Enabled = true;
  87. verified = true;
  88. if (ActionSelected != null) ActionSelected(Action.VALIDATED);
  89. }
  90. }
  91. private void UnexpectedError(Exception ex) {
  92. if (InvokeRequired) {
  93. Invoke(new InvokeDelegateEx(UnexpectedError), new object[] { ex });
  94. return;
  95. }
  96. createAccountOkButton.Text = "Create Account";
  97. createAccountOkButton.Enabled = true;
  98. verified = false;
  99. statusLabel.ForeColor = Color.Red;
  100. if (ex is XmlRpcServerException && ((XmlRpcServerException)ex).Message == "Not Found")
  101. statusLabel.Text = "Unable to connect to server!";
  102. else if (ex is UsernameAlreadyExistsException) {
  103. statusLabel.Text = "Selected username is unavailable!";
  104. }
  105. else if (ex is RequiredFieldMissingException) {
  106. statusLabel.Text = "Missing information: " + ((RequiredFieldMissingException)ex).FieldName;
  107. }
  108. else
  109. statusLabel.Text = "Unexpected Error: " + ex.Message;
  110. }
  111. private void SetStatus() {
  112. statusLabel.Visible = false;
  113. if (verified)
  114. return;
  115. if (usernameTextBox.Text.Length == 0 ||
  116. emailTextBox.Text.Length == 0 ||
  117. passwordTextBox.Text.Length == 0 ||
  118. verifyPasswordTextBox.Text.Length == 0)
  119. createAccountOkButton.Enabled = false;
  120. else
  121. createAccountOkButton.Enabled = true;
  122. if ((passwordTextBox.Text != verifyPasswordTextBox.Text) && verifyPasswordTextBox.Text != "") {
  123. statusLabel.ForeColor = Color.Red;
  124. statusLabel.Visible = true;
  125. statusLabel.Text = "Passwords do not match!";
  126. createAccountOkButton.Enabled = false;
  127. }
  128. CheckUsername();
  129. }
  130. private void CheckUsername() {
  131. // no error if we are editing the username
  132. if (usernameTextBox.Focused || usernameTextBox.Text == lastCheckedName) {
  133. if (usernameTextBox.Text == lastCheckedName)
  134. UsernameChecked();
  135. return;
  136. }
  137. ThreadStart actions = delegate {
  138. lastCheckedName = usernameTextBox.Text;
  139. try { usernameAvailable = FollwitApi.IsUsernameAvailable(usernameTextBox.Text, ApiUrl); }
  140. catch (Exception ex) {
  141. UnexpectedError(ex);
  142. return;
  143. }
  144. UsernameChecked();
  145. };
  146. Thread verifyLoginThread = new Thread(actions);
  147. verifyLoginThread.Name = "Username Check Thread";
  148. verifyLoginThread.IsBackground = true;
  149. verifyLoginThread.Start();
  150. }
  151. private void UsernameChecked() {
  152. if (InvokeRequired) {
  153. Invoke(new InvokeDelegate(UsernameChecked));
  154. return;
  155. }
  156. if (!usernameAvailable) {
  157. statusLabel.ForeColor = Color.Red;
  158. statusLabel.Visible = true;
  159. statusLabel.Text = "Selected username is unavailable!";
  160. createAccountOkButton.Enabled = false;
  161. }
  162. }
  163. private void backButton_Click(object sender, EventArgs e) {
  164. SetStatus();
  165. if (ActionSelected != null) ActionSelected(Action.BACK);
  166. }
  167. private void usernameTextBox_TextChanged(object sender, EventArgs e) {
  168. SetStatus();
  169. }
  170. private void passwordTextBox_TextChanged(object sender, EventArgs e) {
  171. SetStatus();
  172. }
  173. private void verifyPasswordTextBox_TextChanged(object sender, EventArgs e) {
  174. SetStatus();
  175. }
  176. private void passwordTextBox_FocusChanged(object sender, EventArgs e) {
  177. SetStatus();
  178. }
  179. private void verifyPasswordTextBox_FocusChanged(object sender, EventArgs e) {
  180. SetStatus();
  181. }
  182. private void LoginNewUserPanel_Load(object sender, EventArgs e) {
  183. defaultLabelColor = statusLabel.ForeColor;
  184. }
  185. private void LoginNewUserPanel_VisibleChanged(object sender, EventArgs e) {
  186. if (Visible) {
  187. SetStatus();
  188. usernameTextBox.Focus();
  189. usernameTextBox.Text = "";
  190. emailTextBox.Text = "";
  191. passwordTextBox.Text = "";
  192. verifyPasswordTextBox.Text = "";
  193. privateCheckBox.Checked = false;
  194. ValidatedUser = null;
  195. api = null;
  196. if (ParentForm != null) {
  197. this.ParentForm.AcceptButton = createAccountOkButton;
  198. this.ParentForm.CancelButton = backButton;
  199. backButton.DialogResult = DialogResult.None;
  200. }
  201. }
  202. else {
  203. if (ParentForm != null) {
  204. this.ParentForm.AcceptButton = null;
  205. this.ParentForm.CancelButton = null;
  206. }
  207. }
  208. }
  209. private void createAccountOkButton_Click(object sender, EventArgs e) {
  210. if (!verified)
  211. CreateUser();
  212. else
  213. if (ActionSelected != null) ActionSelected(Action.VALIDATED);
  214. }
  215. private void usernameTextBox_Leave(object sender, EventArgs e) {
  216. SetStatus();
  217. }
  218. }
  219. }