You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

251 lines
7.5 KiB

  1. using EasyBL.WebApi.Filters;
  2. using EasyBL.WebApi.Message;
  3. using EasyBL.WEBAPP.SYS;
  4. using Entity.ShowEasyDtos;
  5. using Entity.Sugar;
  6. using Newtonsoft.Json;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Net;
  11. using System.Net.Http;
  12. using System.Web.Http;
  13. namespace WebApp.Controllers
  14. {
  15. public class ExhibitionController : ApiController
  16. {
  17. [HttpGet]
  18. public HttpResponseMessage Statuses(string Lang)
  19. {
  20. return new ExhibitionService().GetStatusList(Lang);
  21. }
  22. [HttpGet]
  23. public HttpResponseMessage Exhibitions(
  24. string Lang,
  25. string RegionIDs,
  26. string CountryIDs,
  27. string CityIDs,
  28. string MainCategoryIDs,
  29. string SubCategoryIDs,
  30. string Status,
  31. string Date )
  32. {
  33. List<string> rsRegionIDs = new List<string>();
  34. List<string> rsCountryIDs = new List<string>();
  35. List<string> rsCityIDs = new List<string>();
  36. List<string> rsMainCategoryIDs = new List<string>();
  37. List<string> rsSubCategoryIDs = new List<string>();
  38. List<string> rsStatus = new List<string>();
  39. if (!string.IsNullOrEmpty(RegionIDs)) {
  40. rsRegionIDs = JsonConvert.DeserializeObject<List<string>>(RegionIDs);
  41. }
  42. if (!string.IsNullOrEmpty(CountryIDs))
  43. {
  44. rsCountryIDs = JsonConvert.DeserializeObject<List<string>>(CountryIDs);
  45. }
  46. if (!string.IsNullOrEmpty(CityIDs))
  47. {
  48. rsCityIDs = JsonConvert.DeserializeObject<List<string>>(CityIDs);
  49. }
  50. if (!string.IsNullOrEmpty(MainCategoryIDs))
  51. {
  52. rsMainCategoryIDs = JsonConvert.DeserializeObject<List<string>>(MainCategoryIDs);
  53. }
  54. if (!string.IsNullOrEmpty(SubCategoryIDs))
  55. {
  56. rsSubCategoryIDs = JsonConvert.DeserializeObject<List<string>>(SubCategoryIDs);
  57. }
  58. if (!string.IsNullOrEmpty(Status))
  59. {
  60. rsStatus = JsonConvert.DeserializeObject<List<string>>(Status);
  61. }
  62. return new ExhibitionService().GetAllExhibitionList(Lang);
  63. }
  64. [HttpGet]
  65. public HttpResponseMessage Exhibition(string Lang, string ExhibitionID)
  66. {
  67. return new ExhibitionService().GetOneExhibition(Lang, ExhibitionID);
  68. }
  69. [HttpGet]
  70. public HttpResponseMessage Info(string Lang, string ExhibitionID, string Year)
  71. {
  72. return new ExhibInfoService().GetOneExhibInfo(Lang, ExhibitionID, Year);
  73. }
  74. [HttpGet]
  75. public HttpResponseMessage Statistics(string Lang, string ExhibitionID)
  76. {
  77. return new ExhibStatService().GetExhibStatisticsList(Lang, ExhibitionID);
  78. }
  79. [HttpGet]
  80. public HttpResponseMessage Media(string Lang, string ExhibitionID, string Type)
  81. {
  82. return new ExhibMediaService().GetMediaList(Lang, ExhibitionID, Type);
  83. }
  84. [HttpGet]
  85. public HttpResponseMessage Files(string ExhibitionID)
  86. {
  87. return new ExhibMediaService().GetMediaFileList(ExhibitionID);
  88. }
  89. [HttpGet]
  90. public HttpResponseMessage RelatedServices(string Lang, string ExhibitionID)
  91. {
  92. return new ExhibitionService().GetRelatedServiceList(Lang, ExhibitionID);
  93. }
  94. [HttpGet]
  95. public HttpResponseMessage Locations(string Lang)
  96. {
  97. return new ExhibitionService().GetLocationFilterList(Lang);
  98. }
  99. [HttpGet]
  100. public HttpResponseMessage Categories(string Lang)
  101. {
  102. return new ExhibitionService().GetCategoryFilterList(Lang);
  103. }
  104. [HttpGet]
  105. public HttpResponseMessage Cards(
  106. string Lang,
  107. int PageIndex,
  108. int PageSize,
  109. string RegionIDs,
  110. string CountryIDs,
  111. string CityIDs,
  112. string MainCategoryIDs,
  113. string SubCategoryIDs,
  114. string Status,
  115. string Date,
  116. string Sort,
  117. string Query)
  118. {
  119. List<string> rsRegionIDs = new List<string>();
  120. List<string> rsCountryIDs = new List<string>();
  121. List<string> rsCityIDs = new List<string>();
  122. List<string> rsMainCategoryIDs = new List<string>();
  123. List<string> rsSubCategoryIDs = new List<string>();
  124. List<string> rsStatus = new List<string>();
  125. List<string> rsDate = new List<string>();
  126. if (!string.IsNullOrEmpty(RegionIDs))
  127. {
  128. rsRegionIDs = JsonConvert.DeserializeObject<List<string>>(RegionIDs);
  129. }
  130. if (!string.IsNullOrEmpty(CountryIDs))
  131. {
  132. rsCountryIDs = JsonConvert.DeserializeObject<List<string>>(CountryIDs);
  133. }
  134. if (!string.IsNullOrEmpty(CityIDs))
  135. {
  136. rsCityIDs = JsonConvert.DeserializeObject<List<string>>(CityIDs);
  137. }
  138. if (!string.IsNullOrEmpty(MainCategoryIDs))
  139. {
  140. rsMainCategoryIDs = JsonConvert.DeserializeObject<List<string>>(MainCategoryIDs);
  141. }
  142. if (!string.IsNullOrEmpty(SubCategoryIDs))
  143. {
  144. rsSubCategoryIDs = JsonConvert.DeserializeObject<List<string>>(SubCategoryIDs);
  145. }
  146. if (!string.IsNullOrEmpty(Status))
  147. {
  148. rsStatus = JsonConvert.DeserializeObject<List<string>>(Status);
  149. }
  150. if (!string.IsNullOrEmpty(Date))
  151. {
  152. rsDate = JsonConvert.DeserializeObject<List<string>>(Date);
  153. }
  154. return new ExhibitionService().GetExhibitionCard(Lang, PageIndex, PageSize, rsRegionIDs, rsCountryIDs, rsCityIDs, rsMainCategoryIDs, rsSubCategoryIDs, rsStatus, rsDate, Sort, Query);
  155. }
  156. [HttpGet]
  157. public HttpResponseMessage Popular(string Lang, int Count)
  158. {
  159. return new ExhibitionService().GetPopularExhibitionList(Lang, Count);
  160. }
  161. [HttpGet]
  162. public HttpResponseMessage PopularCountry(string Lang, int Count)
  163. {
  164. return new ExhibitionService().GetPopularCountry(Lang, Count);
  165. }
  166. [HttpGet]
  167. public HttpResponseMessage PopularCategory(string Lang, int Count)
  168. {
  169. return new ExhibitionService().GetPopularCategory(Lang, Count);
  170. }
  171. [HttpGet]
  172. public HttpResponseMessage CategoryExhibition(string Lang, string IncludeCountryIDs, string ExcludeCountryIDs)
  173. {
  174. List<string> rsIncludeCountryIDs = new List<string>();
  175. List<string> rsExcludeCountryIDs = new List<string>();
  176. if (!string.IsNullOrEmpty(IncludeCountryIDs)) {
  177. rsIncludeCountryIDs = JsonConvert.DeserializeObject<List<string>>(IncludeCountryIDs);
  178. }
  179. if (!string.IsNullOrEmpty(ExcludeCountryIDs))
  180. {
  181. rsExcludeCountryIDs = JsonConvert.DeserializeObject<List<string>>(ExcludeCountryIDs);
  182. }
  183. return new ExhibitionService().GetCategoryExhibition(Lang, rsIncludeCountryIDs, rsExcludeCountryIDs);
  184. }
  185. [HttpGet]
  186. public HttpResponseMessage ExhibitionList(string Lang, int PageIndex, int PageSize, string SortType, string Query)
  187. {
  188. return new ExhibitionService().GetExhibitionByPage(Lang, PageIndex, PageSize, SortType, Query);
  189. }
  190. }
  191. }