MediaRepository.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. using System.Linq;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using AutoMapper;
  5. using Datory;
  6. using GxPress.Common.AppOptions;
  7. using GxPress.Common.Tools;
  8. using GxPress.Repository.Interface.Media;
  9. using GxPress.Result.Media;
  10. using Microsoft.Extensions.Options;
  11. using System.Transactions;
  12. using GxPress.Common.Exceptions;
  13. using GxPress.Common.Page;
  14. using GxPress.Request.Media;
  15. using System;
  16. namespace GxPress.Repository.Implement.Media
  17. {
  18. public class MediaRepository : IMediaRepository
  19. {
  20. private readonly Repository<Entity.tede2.Media.Media> _repository;
  21. private readonly Repository<Entity.tede2.Media.MediaLibrary> mediaLibraryRepository;
  22. private readonly Repository<Entity.tede2.Media.MediaLable> mediaLableRepository;
  23. private readonly IMapper _mapper;
  24. private readonly string _connectionString;
  25. private readonly string _databaseTypestr;
  26. public MediaRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  27. {
  28. _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
  29. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  30. var databaseType =
  31. StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  32. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  33. _repository = new Repository<Entity.tede2.Media.Media>(database);
  34. mediaLibraryRepository = new Repository<Entity.tede2.Media.MediaLibrary>(database);
  35. mediaLableRepository = new Repository<Entity.tede2.Media.MediaLable>(database);
  36. _mapper = mapper;
  37. }
  38. public IDatabase Database => _repository.Database;
  39. public string TableName => _repository.TableName;
  40. public List<TableColumn> TableColumns => _repository.TableColumns;
  41. public async Task<MediaResult> GetAsync(int id)
  42. {
  43. var result = new MediaResult();
  44. //获取媒体
  45. var media = await _repository.GetAsync(id);
  46. result = _mapper.Map<MediaResult>(media);
  47. result.ImageUrls = StringUtils.AddDomain(result.ImageUrls);
  48. result.CategoryId = StringUtils.StringCollectionToStringList(media.CategoryId).ToList();
  49. result.CategoryName = StringUtils.StringCollectionToStringList(media.CategoryName).ToList();
  50. result.FullCategoryId = StringUtils.StringCollectionToStringList(media.FullCategoryId).ToList();
  51. //获取媒体库资源
  52. var mediaLibrarys = await mediaLibraryRepository.GetAllAsync(Q.Where(nameof(Entity.tede2.Media.MediaLibrary.MediaId), id));
  53. result.MediaLibraryResults = mediaLibrarys.ToList().Select(n => _mapper.Map<MediaLibraryResult>(n)).ToList();
  54. foreach (var item in result.MediaLibraryResults)
  55. {
  56. item.FileUrl = StringUtils.AddDomain(item.FileUrl);
  57. }
  58. //获取媒体标签
  59. var mediaLables = await mediaLableRepository.GetAllAsync(Q.Where(nameof(Entity.tede2.Media.MediaLable.MediaId), id));
  60. result.MediaLableResults = mediaLables.Select(n => _mapper.Map<MediaLableResult>(n)).ToList();
  61. return result;
  62. }
  63. /// <summary>
  64. /// 删除媒体
  65. /// </summary>
  66. /// <param name="id"></param>
  67. /// <returns></returns>
  68. public async Task<bool> DeleteAsync(int id)
  69. {
  70. try
  71. {
  72. using (var transactionScope = new TransactionScope())
  73. {
  74. // //删除媒体库
  75. // await mediaLibraryRepository.DeleteAsync(Q.Where(nameof(Entity.tede2.Media.MediaLibrary.MediaId), id));
  76. // //删除媒体标签
  77. // await mediaLableRepository.DeleteAsync(Q.Where(nameof(Entity.tede2.Media.MediaLable.MediaId), id));
  78. await _repository.UpdateAsync(Q.Where(nameof(Entity.tede2.Media.Media.Id), id).Set(nameof(Entity.tede2.Media.Media.IsDelete), true));
  79. transactionScope.Complete();
  80. }
  81. }
  82. catch (System.Exception ex)
  83. {
  84. throw new BusinessException(ex.Message);
  85. }
  86. return true;
  87. }
  88. /// <summary>
  89. /// 添加媒体
  90. /// </summary>
  91. /// <param name="result"></param>
  92. /// <returns></returns>
  93. public async Task<bool> InsertAsync(MediaResult result)
  94. {
  95. var model = _mapper.Map<Entity.tede2.Media.Media>(result);
  96. model.ImageUrls = StringUtils.RemoveDomain(result.ImageUrls);
  97. try
  98. {
  99. using (var transactionScope = new TransactionScope())
  100. {
  101. model.AutoNumber = DateTime.Now.Ticks.ToString();
  102. var categoryId = "";
  103. foreach (var item in result.CategoryId)
  104. {
  105. categoryId += item.Split(",")[item.Split(",").Length - 1] + ",";
  106. }
  107. categoryId = categoryId.Remove(categoryId.Length - 1, 1);
  108. model.CategoryId = categoryId;
  109. model.FullCategoryId = StringUtils.ObjectCollectionToString(result.CategoryId);
  110. var categoryName = "";
  111. foreach (var item in result.CategoryName)
  112. {
  113. categoryName += item.Split(",")[item.Split(",").Length - 1] + ",";
  114. }
  115. categoryName = categoryName.Remove(categoryName.Length - 1, 1);
  116. model.CategoryName = categoryName;
  117. model.IsLibrary = result.MediaLibraryResults.Count > 0;
  118. var id = await _repository.InsertAsync(model);
  119. if (id > 0)
  120. {
  121. foreach (var item in result.MediaLibraryResults)
  122. {
  123. var mediaLibrary = _mapper.Map<Entity.tede2.Media.MediaLibrary>(item);
  124. mediaLibrary.MediaId = id;
  125. mediaLibrary.FileUrl = StringUtils.RemoveDomain(item.FileUrl);
  126. await mediaLibraryRepository.InsertAsync(mediaLibrary);
  127. }
  128. }
  129. //添加标签
  130. foreach (var item in result.MediaLableResults)
  131. {
  132. var mediaLable = _mapper.Map<Entity.tede2.Media.MediaLable>(item);
  133. mediaLable.MediaId = id;
  134. await mediaLableRepository.InsertAsync(mediaLable);
  135. }
  136. if (result.Id == 0 && result.TeacherId == 0 && !string.IsNullOrEmpty(result.Author))
  137. {
  138. //新增名师
  139. }
  140. //提交事务
  141. transactionScope.Complete();
  142. }
  143. }
  144. catch (System.Exception ex)
  145. {
  146. throw new Common.Exceptions.BusinessException(ex.Message);
  147. }
  148. return true;
  149. }
  150. public async Task<bool> UpdateAsync(Entity.tede2.Media.Media note)
  151. {
  152. return await _repository.UpdateAsync(note);
  153. }
  154. public async Task<bool> UpdateAsync(SqlKata.Query query)
  155. {
  156. return await _repository.UpdateAsync(query) > 0;
  157. }
  158. public async Task<PagedList<Entity.tede2.Media.Media>> GetAllAsync(MediaSearchRequest request)
  159. {
  160. var result = new PagedList<Entity.tede2.Media.Media>();
  161. var query = Q.NewQuery();
  162. if (!string.IsNullOrEmpty(request.KeyWord))
  163. query.WhereLike(nameof(Entity.tede2.Media.Media.Title), $"%{request.KeyWord}%");
  164. if (request.IsDelete > 0)
  165. query.Where(nameof(Entity.tede2.Media.Media.IsDelete), request.IsDelete == 1);
  166. if (request.MediaType > 0)
  167. query.Where(nameof(Entity.tede2.Media.Media.MediaType), request.MediaType);
  168. if (request.LibraryType > 0)
  169. query.Where(nameof(Entity.tede2.Media.Media.IsLibrary), request.LibraryType == 1);
  170. result.Total = await _repository.CountAsync(query);
  171. var item = await _repository.GetAllAsync(query.OrderByDesc(nameof(Entity.tede2.Media.Media.CreatedDate)).ForPage(request.Page, request.PerPage));
  172. result.Items = item;
  173. return result;
  174. }
  175. public async Task<bool> UpdateAsync(MediaResult result)
  176. {
  177. //var model = _mapper.Map<Entity.tede2.Media.Media>(result);
  178. try
  179. {
  180. using (var transactionScope = new TransactionScope())
  181. {
  182. var model = await _repository.GetAsync(result.Id);
  183. if (result.CategoryId != null && result.CategoryId.Count > 0)
  184. {
  185. var categoryId = "";
  186. foreach (var item in result.CategoryId)
  187. categoryId += item.Split(",")[item.Split(",").Length - 1] + ",";
  188. categoryId = categoryId.Remove(categoryId.Length - 1, 1);
  189. model.CategoryId = categoryId;
  190. model.FullCategoryId = StringUtils.ObjectCollectionToString(result.CategoryId);
  191. }
  192. if (result.CategoryName != null && result.CategoryName.Count > 0)
  193. {
  194. var categoryName = "";
  195. foreach (var item in result.CategoryName)
  196. categoryName += item.Split(",")[item.Split(",").Length - 1] + ",";
  197. categoryName = categoryName.Remove(categoryName.Length - 1, 1);
  198. model.CategoryName = categoryName;
  199. }
  200. if (result.AdminId > 0)
  201. model.AdminId = result.AdminId;
  202. if (!string.IsNullOrEmpty(result.Creator))
  203. model.Creator = result.Creator;
  204. if (result.MediaType > 0)
  205. model.MediaType = result.MediaType;
  206. if (!string.IsNullOrEmpty(result.Title))
  207. model.Title = result.Title;
  208. if (!string.IsNullOrEmpty(result.ImageUrls))
  209. model.ImageUrls = result.ImageUrls;
  210. if (!string.IsNullOrEmpty(result.Summary))
  211. model.Summary = result.Summary;
  212. if (!string.IsNullOrEmpty(result.Author))
  213. model.Author = result.Author;
  214. if (result.TeacherId > 0)
  215. model.TeacherId = result.TeacherId;
  216. if (!string.IsNullOrEmpty(result.Source))
  217. model.Source = result.Source;
  218. if (!string.IsNullOrEmpty(result.Blocks))
  219. model.Blocks = result.Blocks;
  220. if (result.IsChecked > 0)
  221. model.IsChecked = result.IsChecked == 1;
  222. if (!string.IsNullOrEmpty(result.AddDate))
  223. model.AddDate = Convert.ToDateTime(result.AddDate);
  224. if (model.Sort > 0)
  225. model.Sort = result.Sort;
  226. if (model.ReadCount > 0)
  227. model.ReadCount = result.ReadCount;
  228. if (result.IsTop > 0)
  229. model.IsTop = result.IsTop == 1;
  230. if (result.LableId > 0)
  231. model.LableId = result.LableId;
  232. if (result.IsRecommend > 0)
  233. model.IsRecommend = result.IsRecommend == 1;
  234. if (!string.IsNullOrEmpty(result.Press))
  235. model.Press = result.Press;
  236. if (!string.IsNullOrEmpty(result.PublishTime))
  237. model.PublishTime = result.PublishTime;
  238. if (result.IosDiscountPrice > 0)
  239. model.IosDiscountPrice = result.IosDiscountPrice;
  240. if (result.IosPrice > 0)
  241. model.IosPrice = result.IosPrice;
  242. if (result.OtherDiscountPrice > 0)
  243. model.OtherDiscountPrice = result.OtherDiscountPrice;
  244. if (result.OtherPrice > 0)
  245. model.OtherPrice = result.OtherPrice;
  246. if (result.FreeProportion > 0)
  247. model.FreeProportion = result.FreeProportion;
  248. if (result.AttachType > 0)
  249. model.AttachType = result.AttachType;
  250. if (result.AttachId > 0)
  251. model.AttachId = result.AttachId;
  252. if (result.MediaId > 0)
  253. model.MediaId = result.MediaId;
  254. if (!string.IsNullOrEmpty(result.MediaTitle))
  255. model.MediaTitle = result.MediaTitle;
  256. if (!string.IsNullOrEmpty(result.JournalsYear))
  257. model.JournalsYear = result.JournalsYear;
  258. if (result.JournalsCategory > 0)
  259. model.JournalsCategory = result.JournalsCategory;
  260. await _repository.UpdateAsync(model);
  261. if (result.MediaLibraryResults != null && result.MediaLibraryResults.Count > 0)
  262. {
  263. model.IsLibrary = result.MediaLibraryResults.Count > 0;
  264. //删除媒体库
  265. await mediaLibraryRepository.DeleteAsync(Q.Where(nameof(Entity.tede2.Media.MediaLibrary.MediaId), result.Id));
  266. foreach (var item in result.MediaLibraryResults)
  267. {
  268. var mediaLibrary = _mapper.Map<Entity.tede2.Media.MediaLibrary>(item);
  269. await mediaLibraryRepository.InsertAsync(mediaLibrary);
  270. }
  271. }
  272. if (result.MediaLableResults != null && result.MediaLableResults.Count > 0)
  273. {
  274. //删除媒体标签
  275. await mediaLableRepository.DeleteAsync(Q.Where(nameof(Entity.tede2.Media.MediaLable.MediaId), result.Id));
  276. //添加标签
  277. foreach (var item in result.MediaLableResults)
  278. {
  279. var mediaLable = _mapper.Map<Entity.tede2.Media.MediaLable>(item);
  280. await mediaLableRepository.InsertAsync(mediaLable);
  281. }
  282. }
  283. //提交事务
  284. transactionScope.Complete();
  285. }
  286. }
  287. catch (System.Exception ex)
  288. {
  289. throw new Common.Exceptions.BusinessException(ex.Message);
  290. }
  291. return true;
  292. }
  293. public async Task<int> CountAsync(string beginTime, string endTime)
  294. {
  295. return await _repository.CountAsync(Q.WhereDate(nameof(Entity.tede2.Media.Media.CreatedDate), ">=", beginTime).WhereDate(nameof(Entity.tede2.Media.Media.CreatedDate), "<=", endTime));
  296. }
  297. public async Task<int> CountAsync(SqlKata.Query query)
  298. {
  299. return await _repository.CountAsync(query);
  300. }
  301. }
  302. }