JobRepository.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using AutoMapper;
  4. using Dapper;
  5. using GxPress.Common.AppOptions;
  6. using GxPress.Common.Tools;
  7. using GxPress.Entity.Topic;
  8. using GxPress.Repository.Interface.Job;
  9. using GxPress.Result.Job;
  10. using Microsoft.Extensions.Caching.Distributed;
  11. using Microsoft.Extensions.Options;
  12. using GxPress.Entity;
  13. using Datory;
  14. namespace GxPress.Repository.Implement.Job
  15. {
  16. public class JobRepository : IJobRepository
  17. {
  18. private readonly Repository<Entity.Missive.Missive> _repository;
  19. private readonly IMapper _mapper;
  20. private readonly IDistributedCache _cache;
  21. private readonly string _connectionString;
  22. private readonly string _databaseTypeStr;
  23. public JobRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper, IDistributedCache cache)
  24. {
  25. _databaseTypeStr = dbOptionsAccessor.CurrentValue.DatabaseType;
  26. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  27. var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  28. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  29. _mapper = mapper;
  30. _cache = cache;
  31. }
  32. public IDatabase Database => _repository.Database;
  33. public string TableName => _repository.TableName;
  34. public List<TableColumn> TableColumns => _repository.TableColumns;
  35. /// <summary>
  36. /// 执行话题
  37. /// </summary>
  38. /// <returns></returns>
  39. public async Task<IEnumerable<JobTopicResult>> ExecuteTopic()
  40. {
  41. string sql = "select a.Id,a.Title,a.Content,b.UserId,c.Name,a.CreatedDate,d.AvatarUrl from ccpph.tede_topic a inner join ccpph.tede_topic_addressee b on a.Id=b.TopicId inner join ccpph.tede_user c on c.Id=b.UserId inner join ccpph.tede_user d on d.Id=a.UserId where b.IsUpload=0 order by CreatedDate desc";
  42. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  43. var database = new Database(databaseType, _connectionString);
  44. var connection = database.GetConnection();
  45. var result = await connection.QueryAsync<JobTopicResult, Entity.Topic.Topic, TopicAddressee, User, User, JobTopicResult>(sql, (jobTopicResult, topic, topicAddressee, user, userDto) =>
  46. {
  47. jobTopicResult.Id = topic.Id;
  48. jobTopicResult.Title = topic.Title;
  49. jobTopicResult.Content = topic.Content;
  50. jobTopicResult.UserId = topicAddressee.UserId;
  51. jobTopicResult.Name = user.Name;
  52. jobTopicResult.CreatedDate = topic.CreatedDate;
  53. jobTopicResult.AvatarUrl = userDto.AvatarUrl;
  54. jobTopicResult.TopicAddresseeId = topicAddressee.Id;
  55. return jobTopicResult;
  56. }, splitOn: "Id,UserId,Name,AvatarUrl");
  57. return result;
  58. }
  59. }
  60. }