/FlickrWP7/FlickrWP7/Core/People.cs

# · C# · 263 lines · 218 code · 45 blank · 0 comment · 43 complexity · 5404d8ab14d428e314b1558b9faf3259 MD5 · raw file

  1. using System;
  2. using System.Net;
  3. using System.Windows;
  4. using System.Windows.Controls;
  5. using System.Windows.Documents;
  6. using System.Windows.Ink;
  7. using System.Windows.Input;
  8. using System.Windows.Media;
  9. using System.Windows.Media.Animation;
  10. using System.Windows.Shapes;
  11. namespace FlickrWP7.Core
  12. {
  13. public class People
  14. {
  15. HelperDelegate helperDelegateInstance;
  16. public string PeopleQueryResult {get;set;}
  17. public void FindByEmail (string apiKey, string email, HelperDelegate helperDelegate)
  18. {
  19. helperDelegateInstance = helperDelegate;
  20. WebClient client = new WebClient();
  21. client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
  22. string URL = string.Format("http://www.flickr.com/services/rest/?method=flickr.people.findByEmail&api_key={0}&format=json&find_email={1}",
  23. apiKey, email);
  24. client.DownloadStringAsync(new Uri(URL));
  25. }
  26. public void FindByUsername(string apiKey, string username, HelperDelegate helperDelegate)
  27. {
  28. helperDelegateInstance = helperDelegate;
  29. WebClient client = new WebClient();
  30. client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
  31. string URL = string.Format("http://www.flickr.com/services/rest/?method=flickr.people.findByUsername&api_key={0}&format=json&username={1}",
  32. apiKey, username);
  33. client.DownloadStringAsync(new Uri(URL));
  34. }
  35. public void GetInfo(string apiKey, string nsid, HelperDelegate helperDelegate)
  36. {
  37. helperDelegateInstance = helperDelegate;
  38. WebClient client = new WebClient();
  39. client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
  40. string URL = string.Format("http://www.flickr.com/services/rest/?method=flickr.people.getInfo&api_key={0}&format=json&user_id={1}",
  41. apiKey, nsid);
  42. client.DownloadStringAsync(new Uri(URL));
  43. }
  44. public enum SafeSearch
  45. {
  46. Undefined = 0,
  47. Safe =1,
  48. Moderate = 2,
  49. Restricted = 3
  50. }
  51. public enum ContentType
  52. {
  53. Undefined =0,
  54. Photos = 1,
  55. Screenshots = 2,
  56. Other = 3,
  57. PhotosAndScreenshots = 4,
  58. ScreenshotsAndOther = 5,
  59. PhotosAndOther = 6,
  60. All = 7
  61. }
  62. public enum PrivacyFilter
  63. {
  64. Undefined = 0,
  65. Public = 1,
  66. PrivateVisibleToFriends = 2,
  67. PrivateVisibleToFamily = 3,
  68. PrivateVisibleToBoth = 4,
  69. CompletelyPrivate = 5
  70. }
  71. void GetPhotos (string apiKey, string authToken, string signature, string nsid, HelperDelegate helperDelegate,
  72. SafeSearch safeSearch = SafeSearch.Undefined, string minUploadDate = "", string maxUploadDate="", string minTakenDate = "",
  73. string maxTakenDate = "", ContentType contentType = ContentType.Undefined, PrivacyFilter privacyFilter = PrivacyFilter.Undefined,
  74. string[] extras = null, string perPage = "",string page="")
  75. {
  76. helperDelegateInstance = helperDelegate;
  77. WebClient client = new WebClient();
  78. client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
  79. string URL = string.Format("http://www.flickr.com/services/rest/?method=flickr.people.getPhotos&api_key={0}&format=json&user_id={1}&api_sig={2}&auth_token={3}",
  80. apiKey, nsid,signature,authToken);
  81. if (safeSearch != SafeSearch.Undefined)
  82. {
  83. URL += "&safe_search=" + ((int)safeSearch).ToString();
  84. }
  85. if (contentType != ContentType.Undefined)
  86. {
  87. URL += "&content_type=" + ((int)contentType).ToString();
  88. }
  89. if (privacyFilter != PrivacyFilter.Undefined)
  90. {
  91. URL += "&privacy_filter=" + ((int)privacyFilter).ToString();
  92. }
  93. if (minUploadDate != "")
  94. {
  95. URL += "&min_upload_date=" + minUploadDate;
  96. }
  97. if (maxUploadDate != "")
  98. {
  99. URL += "&max_upload_date=" + maxUploadDate;
  100. }
  101. if (minTakenDate != "")
  102. {
  103. URL += "&min_taken_date=" + minTakenDate;
  104. }
  105. if (maxTakenDate != "")
  106. {
  107. URL += "&max_upload_date=" + maxTakenDate;
  108. }
  109. if (extras != null)
  110. {
  111. string toAdd = "&extras=";
  112. for (int i = 0; i < extras.Length; i++)
  113. {
  114. if (i != extras.Length - 1)
  115. toAdd += extras[i] + ",";
  116. else
  117. toAdd += extras[i];
  118. }
  119. URL += toAdd;
  120. }
  121. if (page != "")
  122. {
  123. URL += "&page=" + page;
  124. }
  125. if (perPage != "")
  126. {
  127. URL += "&per_page=" + perPage;
  128. }
  129. client.DownloadStringAsync(new Uri(URL));
  130. }
  131. public void GetPhotosOf(string apiKey, string nsid, HelperDelegate helperDelegate, string[] extras = null, string page ="", string perPage = "")
  132. {
  133. helperDelegateInstance = helperDelegate;
  134. WebClient client = new WebClient();
  135. client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
  136. string URL = string.Format("http://www.flickr.com/services/rest/?method=flickr.people.getPhotosOf&api_key={0}&format=json&user_id={1}",
  137. apiKey, nsid);
  138. if (extras != null)
  139. {
  140. string toAdd = "&extras=";
  141. for (int i = 0; i < extras.Length; i++)
  142. {
  143. if (i != extras.Length - 1)
  144. toAdd += extras[i] + ",";
  145. else
  146. toAdd += extras[i];
  147. }
  148. URL += toAdd;
  149. }
  150. if (page != "")
  151. {
  152. URL += "&page=" + page;
  153. }
  154. if (perPage != "")
  155. {
  156. URL += "&per_page=" + perPage;
  157. }
  158. client.DownloadStringAsync(new Uri(URL));
  159. }
  160. public void GetPublicGroups(string apiKey, string nsid, HelperDelegate helperDelegate)
  161. {
  162. helperDelegateInstance = helperDelegate;
  163. WebClient client = new WebClient();
  164. client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
  165. string URL = string.Format("http://www.flickr.com/services/rest/?method=flickr.people.getPublicGroups&api_key={0}&format=json&user_id={1}",
  166. apiKey, nsid);
  167. client.DownloadStringAsync(new Uri(URL));
  168. }
  169. void GetPublicPhotos(string apiKey, string authToken, string signature, string nsid, HelperDelegate helperDelegate,
  170. SafeSearch safeSearch = SafeSearch.Undefined, string[] extras = null, string perPage = "", string page = "")
  171. {
  172. helperDelegateInstance = helperDelegate;
  173. WebClient client = new WebClient();
  174. client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
  175. string URL = string.Format("http://www.flickr.com/services/rest/?method=flickr.people.getPhotos&api_key={0}&format=json&user_id={1}&api_sig={2}&auth_token={3}",
  176. apiKey, nsid, signature, authToken);
  177. if (safeSearch != SafeSearch.Undefined)
  178. {
  179. URL += "&safe_search=" + ((int)safeSearch).ToString();
  180. }
  181. if (extras != null)
  182. {
  183. string toAdd = "&extras=";
  184. for (int i = 0; i < extras.Length; i++)
  185. {
  186. if (i != extras.Length - 1)
  187. toAdd += extras[i] + ",";
  188. else
  189. toAdd += extras[i];
  190. }
  191. URL += toAdd;
  192. }
  193. if (page != "")
  194. {
  195. URL += "&page=" + page;
  196. }
  197. if (perPage != "")
  198. {
  199. URL += "&per_page=" + perPage;
  200. }
  201. client.DownloadStringAsync(new Uri(URL));
  202. }
  203. public void GetUploadStatus(string apiKey, string authToken, string signature, HelperDelegate helperDelegate)
  204. {
  205. helperDelegateInstance = helperDelegate;
  206. WebClient client = new WebClient();
  207. client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
  208. string URL = string.Format("http://www.flickr.com/services/rest/?method=flickr.people.getUploadStatus&api_key={0}&format=json&auth_token={1}&api_sig={2}",
  209. apiKey, authToken,signature);
  210. client.DownloadStringAsync(new Uri(URL));
  211. }
  212. void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
  213. {
  214. PeopleQueryResult = e.Result;
  215. helperDelegateInstance();
  216. }
  217. }
  218. }