/NewsManagement_VS2010/src/NewsManagement/NMA.Application/NewsFacade.cs

# · C# · 439 lines · 352 code · 85 blank · 2 comment · 36 complexity · dd4a95038d0c4d11a9758484cde133db MD5 · raw file

  1. using System;
  2. using System.Linq;
  3. using System.Reflection;
  4. using System.Linq.Expressions;
  5. using System.Collections.Generic;
  6. using AutoMapper;
  7. namespace NMA.Application
  8. {
  9. using NMA.Domain.Model;
  10. using NMA.Domain.Model.Repository;
  11. using NMA.Infrastructure.Logging;
  12. using NMA.Infrastructure.EventAggregator;
  13. using NMA.Infrastructure.NHibernate.Container;
  14. using NMA.Infrastructure.DBC;
  15. using NMA.Infrastructure.NHibernate.DomainObject;
  16. using NMA.Infrastructure.LambdaExpression;
  17. using NMA.Domain.Model.Service.Application;
  18. using NMA.Domain.Model.DTO;
  19. using NMA.Domain.Shared.Paging;
  20. using NMA.Infrastructure.NHibernate.Paging;
  21. public class NewsFacade : INewsFacade
  22. {
  23. #region variables
  24. private readonly INewsRepository _newsRepository = null;
  25. private readonly IPollRepository _pollRepository = null;
  26. //private readonly IConsumer<CategoryAuditEvent> _handler = null;
  27. private static readonly ILog _logger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  28. #endregion
  29. #region ctors
  30. public NewsFacade() : this(IoC.GetInstance<INewsRepository>(),
  31. IoC.GetInstance<IPollRepository>()//,
  32. //IoC.GetInstance<IConsumer<CategoryAuditEvent>>()
  33. )
  34. {
  35. }
  36. public NewsFacade(INewsRepository newsRepository, IPollRepository pollRepository)
  37. {
  38. _newsRepository = newsRepository;
  39. _pollRepository = pollRepository;
  40. }
  41. #endregion
  42. #region implement functions
  43. public IEnumerable<NewsDTO> AllNews()
  44. {
  45. try
  46. {
  47. var result = _newsRepository.All();
  48. List<NewsDTO> listDto = new List<NewsDTO>();
  49. foreach (var item in result)
  50. {
  51. listDto.Add(Mapper.Map<News, NewsDTO>((News)item));
  52. }
  53. return listDto;
  54. }
  55. catch (Exception ex)
  56. {
  57. _logger.Error(ex.Message);
  58. throw ex;
  59. }
  60. }
  61. public IEnumerable<PollDTO> AllPoll()
  62. {
  63. try
  64. {
  65. var result = _pollRepository.All();
  66. List<PollDTO> listDto = new List<PollDTO>();
  67. foreach (var item in result)
  68. {
  69. listDto.Add(Mapper.Map<Poll, PollDTO>((Poll)item));
  70. }
  71. return listDto;
  72. }
  73. catch (Exception ex)
  74. {
  75. _logger.Error(ex.Message);
  76. throw ex;
  77. }
  78. }
  79. public NewsDTO GetNewsById(Guid id)
  80. {
  81. Check.Assert(id != null, "Id is null");
  82. Check.Assert(_newsRepository != null, "News Repository is null");
  83. try
  84. {
  85. INews result = _newsRepository.GetById(id);
  86. return Mapper.Map<News, NewsDTO>((News)result); ;
  87. }
  88. catch (Exception ex)
  89. {
  90. _logger.Error(ex.Message);
  91. throw ex;
  92. }
  93. }
  94. public Guid AddNews(NewsDTO dto)
  95. {
  96. Check.Assert(dto != null, "News's object is null");
  97. Check.Assert(_newsRepository != null, "News Repository is null");
  98. try
  99. {
  100. object result = null;
  101. var entityMapped = Mapper.Map<NewsDTO, News>(dto);
  102. result = _newsRepository.Add(entityMapped);
  103. return (Guid)result;
  104. }
  105. catch (Exception ex)
  106. {
  107. _logger.Error(ex.Message);
  108. throw ex;
  109. }
  110. }
  111. public void RemoveNews(Guid id)
  112. {
  113. Check.Assert(id != null, "News's id is null");
  114. Check.Assert(_newsRepository != null, "News Repository is null");
  115. try
  116. {
  117. var dto = GetNewsById(id);
  118. if (dto == null)
  119. throw new Exception("News's entity is null");
  120. RemoveNews(dto);
  121. }
  122. catch (Exception ex)
  123. {
  124. _logger.Error(ex.Message);
  125. throw ex;
  126. }
  127. }
  128. public void RemoveNews(NewsDTO dto)
  129. {
  130. Check.Assert(dto != null, "News's object is null");
  131. Check.Assert(_newsRepository != null, "News Repository is null");
  132. try
  133. {
  134. var entityMapped = Mapper.Map<NewsDTO, News>(dto);
  135. _newsRepository.Remove(entityMapped);
  136. }
  137. catch (Exception ex)
  138. {
  139. _logger.Error(ex.Message);
  140. throw ex;
  141. }
  142. }
  143. public void UpdateNews(NewsDTO dto)
  144. {
  145. Check.Assert(dto != null, "News's entity is null");
  146. Check.Assert(_newsRepository != null, "News Repository is null");
  147. try
  148. {
  149. var entityMapped = Mapper.Map<NewsDTO, News>(dto);
  150. _newsRepository.Update(entityMapped);
  151. }
  152. catch (Exception ex)
  153. {
  154. _logger.Error(ex.Message);
  155. throw ex;
  156. }
  157. }
  158. public int CountAllNews()
  159. {
  160. Check.Assert(_newsRepository != null, "News Repository is null");
  161. try
  162. {
  163. int result = 0;
  164. result = _newsRepository.CountAllNews();
  165. return result;
  166. }
  167. catch (Exception ex)
  168. {
  169. _logger.Error(ex.Message);
  170. throw ex;
  171. }
  172. }
  173. public int GetNumberOfView(Guid id)
  174. {
  175. Check.Assert(id != null, "Id is null");
  176. Check.Assert(_newsRepository != null, "News Repository is null");
  177. try
  178. {
  179. var entity = GetNewsById(id);
  180. if (entity == null)
  181. throw new Exception("News's object is null");
  182. return entity.NumberOfView;
  183. }
  184. catch (Exception ex)
  185. {
  186. _logger.Error(ex.Message);
  187. throw ex;
  188. }
  189. }
  190. public IEnumerable<NewsDTO> GetNewsBy(Expression<Func<NewsDTO, bool>> condition, Type identifyColumn)
  191. {
  192. Check.Assert(condition != null, "Condition for searching news is null");
  193. Check.Assert(identifyColumn != null, "Type is null");
  194. Check.Assert(_newsRepository != null, "News Repository is null");
  195. try
  196. {
  197. var lambda = LambdaExpressionHelper<INews, NewsDTO>.Convert(condition, identifyColumn);
  198. var result = _newsRepository.GetBy(lambda);
  199. IList<NewsDTO> list = new List<NewsDTO>();
  200. result.ToList().ForEach(x =>
  201. {
  202. list.Add(Mapper.Map<News, NewsDTO>((News)x));
  203. });
  204. return list;
  205. }
  206. catch (Exception ex)
  207. {
  208. _logger.Error(ex.Message);
  209. throw ex;
  210. }
  211. }
  212. public int CountAllPoll()
  213. {
  214. Check.Assert(_pollRepository != null, "Poll Repository is null");
  215. try
  216. {
  217. int result = 0;
  218. result = _pollRepository.CountAllPoll();
  219. return result;
  220. }
  221. catch (Exception ex)
  222. {
  223. _logger.Error(ex.Message);
  224. throw ex;
  225. }
  226. }
  227. public PollDTO GetPollById(Guid id)
  228. {
  229. Check.Assert(_pollRepository != null, "Poll Repository is null");
  230. Check.Assert(id != null, "Id is null");
  231. try
  232. {
  233. IPoll poll = _pollRepository.GetById(id);
  234. return Mapper.Map<Poll, PollDTO>((Poll)poll);
  235. }
  236. catch (Exception ex)
  237. {
  238. _logger.Error(ex.Message);
  239. throw ex;
  240. }
  241. }
  242. public Guid AddPoll(Guid newsId, PollDTO dto)
  243. {
  244. Check.Assert(_newsRepository != null, "News Repository is null");
  245. Check.Assert(_pollRepository != null, "Poll Repository is null");
  246. Check.Assert(newsId != null, "News ID is null");
  247. Check.Assert(dto != null, "Poll's object is null");
  248. try
  249. {
  250. object result = null;
  251. var entityMapped = Mapper.Map<PollDTO, Poll>(dto);
  252. result = _pollRepository.Add(entityMapped);
  253. var newsObj = _newsRepository.GetById(newsId);
  254. newsObj.Poll = entityMapped;
  255. _newsRepository.Update(newsObj);
  256. return (Guid)result;
  257. }
  258. catch (Exception ex)
  259. {
  260. _logger.Error(ex.Message);
  261. throw ex;
  262. }
  263. }
  264. public void RemovePoll(PollDTO dto)
  265. {
  266. Check.Assert(_pollRepository != null, "Poll Repository is null");
  267. Check.Assert(dto != null, "Poll's object is null");
  268. try
  269. {
  270. var entityMapped = Mapper.Map<PollDTO, Poll>(dto);
  271. _pollRepository.Remove(entityMapped);
  272. }
  273. catch (Exception ex)
  274. {
  275. _logger.Error(ex.Message);
  276. throw ex;
  277. }
  278. }
  279. public void UpdatePoll(PollDTO dto)
  280. {
  281. Check.Assert(_pollRepository != null, "Poll Repository is null");
  282. Check.Assert(dto != null, "Poll's entity is null");
  283. try
  284. {
  285. var entityMapped = Mapper.Map<PollDTO, Poll>(dto);
  286. _pollRepository.Update(entityMapped);
  287. }
  288. catch (Exception ex)
  289. {
  290. _logger.Error(ex.Message);
  291. throw ex;
  292. }
  293. }
  294. public IEnumerable<PollDTO> GetPollBy(Expression<Func<PollDTO, bool>> condition, Type identifyColumn)
  295. {
  296. Check.Assert(_pollRepository != null, "Poll Repository is null");
  297. Check.Assert(condition != null, "Condition for searching poll is null");
  298. Check.Assert(identifyColumn != null, "Type is null");
  299. try
  300. {
  301. var lambda = LambdaExpressionHelper<IPoll, PollDTO>.Convert(condition, identifyColumn);
  302. var result = _pollRepository.GetBy(lambda);
  303. IList<PollDTO> list = new List<PollDTO>();
  304. result.ToList().ForEach(x =>
  305. {
  306. list.Add(Mapper.Map<Poll, PollDTO>((Poll)x));
  307. });
  308. return list;
  309. }
  310. catch (Exception ex)
  311. {
  312. _logger.Error(ex.Message);
  313. throw ex;
  314. }
  315. }
  316. public IPagedList<NewsDTO> AllNews(int pageIndex, int pageSize)
  317. {
  318. Check.Assert(_newsRepository != null, "News Repository is null");
  319. Check.Assert(pageIndex > 0, "Page Index is less than zero");
  320. Check.Assert(pageSize > 0, "Page Size is less than zero");
  321. var result = _newsRepository.All(pageIndex, pageSize);
  322. int count = 0;
  323. IPagedList<NewsDTO> list = new PagedList<NewsDTO>();
  324. ((IEnumerable<INews>)result).ToList().ForEach(x =>
  325. {
  326. list.Add(Mapper.Map<News, NewsDTO>((News)x));
  327. count++;
  328. });
  329. list.TotalCount = count;
  330. list.PageIndex = pageIndex;
  331. list.PageSize = pageSize;
  332. return list;
  333. }
  334. public IPagedList<PollDTO> AllPoll(int pageIndex, int pageSize)
  335. {
  336. Check.Assert(_pollRepository != null, "Poll Repository is null");
  337. Check.Assert(pageIndex > 0, "Page Index is less than zero");
  338. Check.Assert(pageSize > 0, "Page Size is less than zero");
  339. var result = _newsRepository.All(pageIndex, pageSize);
  340. int count = 0;
  341. IPagedList<PollDTO> list = new PagedList<PollDTO>();
  342. ((IEnumerable<IPoll>)result).ToList().ForEach(x =>
  343. {
  344. list.Add(Mapper.Map<Poll, PollDTO>((Poll)x));
  345. count++;
  346. });
  347. list.TotalCount = count;
  348. list.PageIndex = pageIndex;
  349. list.PageSize = pageSize;
  350. return list;
  351. }
  352. #endregion
  353. }
  354. }