/MySpaceSilverlight/MySpaceSilverlightKit/opensocial/IdSpec.cs

# · C# · 210 lines · 133 code · 28 blank · 49 comment · 56 complexity · 845ecdebbc92a12fef33add0647c7b1b MD5 · raw file

  1. // <copyright file="IdSpec.cs" company="Microsoft Corporation">
  2. // Copyright (c) 2009 Microsoft Corporation All Rights Reserved
  3. // </copyright>
  4. // <author>Michael S. Scherotter</author>
  5. // <email>mischero@microsoft.com</email>
  6. // <date>2009-03-24</date>
  7. // <summary>OpenSocial IdSpec</summary>
  8. namespace opensocial
  9. {
  10. using System.Globalization;
  11. using System.Windows.Browser;
  12. using Synergist;
  13. /// <summary>
  14. /// OpenSocial IdSpec
  15. /// </summary>
  16. public class IdSpec
  17. {
  18. /// <summary>
  19. /// the base ScriptObject
  20. /// </summary>
  21. private ScriptObject idspec;
  22. /// <summary>
  23. /// Initializes a new instance of the IdSpec class.
  24. /// </summary>
  25. public IdSpec()
  26. {
  27. if (HtmlPage.IsEnabled)
  28. {
  29. this.idspec = HtmlPage.Window.Eval("new opensocial.IdSpec()") as ScriptObject;
  30. }
  31. }
  32. /// <summary>
  33. /// Initializes a new instance of the IdSpec class.
  34. /// </summary>
  35. /// <param name="scriptObject">a JavaScript IdSpec object</param>
  36. public IdSpec(ScriptObject scriptObject)
  37. {
  38. this.idspec = scriptObject;
  39. }
  40. /// <summary>
  41. /// Gets the base JavaScript object
  42. /// </summary>
  43. public ScriptObject ScriptObject
  44. {
  45. get
  46. {
  47. return this.idspec;
  48. }
  49. }
  50. /// <summary>
  51. /// Gets or sets the User Id
  52. /// </summary>
  53. public string UserId
  54. {
  55. get
  56. {
  57. return this.GetField("opensocial.IdSpec.Field.USER_ID") as string;
  58. }
  59. set
  60. {
  61. this.SetField("opensocial.IdSpec.Field.USER_ID", value);
  62. }
  63. }
  64. /// <summary>
  65. /// Gets or sets the group Id
  66. /// </summary>
  67. public string GroupId
  68. {
  69. get
  70. {
  71. return this.GetField("opensocial.IdSpec.Field.GROUP_ID") as string;
  72. }
  73. set
  74. {
  75. this.SetField("opensocial.IdSpec.Field.GROUP_ID", value);
  76. }
  77. }
  78. /// <summary>
  79. /// Gets or sets the network distance
  80. /// </summary>
  81. public int NetworkDistance
  82. {
  83. get
  84. {
  85. object distance = (int) this.GetField("opensocial.IdSpec.Field.NETWORK_DISTANCE");
  86. return (int)distance;
  87. }
  88. set
  89. {
  90. this.SetField("opensocial.IdSpec.Field.NETWORK_DISTANCE", value);
  91. }
  92. }
  93. /// <summary>
  94. /// Gets the displayName for the IdSpec
  95. /// </summary>
  96. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity", Justification = "This is a complex function.")]
  97. public string DisplayName
  98. {
  99. get
  100. {
  101. if (!HtmlPage.IsEnabled)
  102. {
  103. return "Owner Friends";
  104. }
  105. if (this.UserId == "opensocial.IdSpec.PersonId.VIEWER".Eval() && this.NetworkDistance == 0)
  106. {
  107. return "Viewer";
  108. }
  109. if (this.UserId == "opensocial.IdSpec.PersonId.VIEWER".Eval() && this.NetworkDistance == int.MinValue && this.GroupId == null)
  110. {
  111. return "Viewer";
  112. }
  113. if (this.UserId == "opensocial.IdSpec.PersonId.VIEWER".Eval() && this.NetworkDistance == int.MinValue && this.GroupId == "opensocial.IdSpec.GroupId.SELF".Eval())
  114. {
  115. return "Viewer";
  116. }
  117. if (this.UserId == "opensocial.IdSpec.PersonId.OWNER".Eval() && this.NetworkDistance == 0)
  118. {
  119. return "Owner";
  120. }
  121. if (this.UserId == "opensocial.IdSpec.PersonId.OWNER".Eval() && this.NetworkDistance == int.MinValue && this.GroupId == null)
  122. {
  123. return "Owner";
  124. }
  125. if (this.UserId == "opensocial.IdSpec.PersonId.OWNER".Eval() && this.NetworkDistance == int.MinValue && this.GroupId == "opensocial.IdSpec.GroupId.SELF".Eval())
  126. {
  127. return "Owner";
  128. }
  129. if (this.UserId == "opensocial.IdSpec.PersonId.VIEWER".Eval() && this.NetworkDistance == 1)
  130. {
  131. return "Viewer Friends";
  132. }
  133. if (this.UserId == "opensocial.IdSpec.PersonId.VIEWER".Eval() && this.NetworkDistance == int.MinValue && this.GroupId == "opensocial.IdSpec.GroupId.FRIENDS".Eval())
  134. {
  135. return "Viewer Friends";
  136. }
  137. if (this.UserId == "opensocial.IdSpec.PersonId.OWNER".Eval() && this.NetworkDistance == 1)
  138. {
  139. return "Owner Friends";
  140. }
  141. if (this.UserId == "opensocial.IdSpec.PersonId.OWNER".Eval() && this.NetworkDistance == int.MinValue && this.GroupId == "opensocial.IdSpec.GroupId.FRIENDS".Eval())
  142. {
  143. return "Owner Friends";
  144. }
  145. return string.Format(CultureInfo.CurrentCulture, "User {0}", this.UserId);
  146. }
  147. }
  148. /// <summary>
  149. /// Gets the properties for the object
  150. /// </summary>
  151. /// <returns>a string listing the non-null properties and their values.</returns>
  152. public override string ToString()
  153. {
  154. return Synergist.Utility.GetProperties(this);
  155. }
  156. /// <summary>
  157. /// Set a field
  158. /// </summary>
  159. /// <param name="name">the field name</param>
  160. /// <param name="value">the field value</param>
  161. private void SetField(string name, object value)
  162. {
  163. if (HtmlPage.IsEnabled)
  164. {
  165. this.idspec.Invoke("setField", name.Eval(), value);
  166. }
  167. }
  168. /// <summary>
  169. /// Get a field
  170. /// </summary>
  171. /// <param name="name">the field name</param>
  172. /// <returns>the field value</returns>
  173. private object GetField(string name)
  174. {
  175. if (HtmlPage.IsEnabled)
  176. {
  177. return this.idspec.Invoke("getField", name.Eval());
  178. }
  179. return null;
  180. }
  181. }
  182. }