|
@@ -11,7 +11,10 @@ using GxPress.Repository.Interface.SpecialLabel;
|
|
using GxPress.Repository.Interface.SystemLabel;
|
|
using GxPress.Repository.Interface.SystemLabel;
|
|
using GxPress.Repository.Interface.Teacher;
|
|
using GxPress.Repository.Interface.Teacher;
|
|
using GxPress.Result.Navigation;
|
|
using GxPress.Result.Navigation;
|
|
|
|
+using GxPress.Repository.Interface.Visit;
|
|
using GxPress.Service.Interface.Navigation;
|
|
using GxPress.Service.Interface.Navigation;
|
|
|
|
+using Datory;
|
|
|
|
+using GxPress.Entity.Article;
|
|
|
|
|
|
namespace GxPress.Service.Implement.Navigation
|
|
namespace GxPress.Service.Implement.Navigation
|
|
{
|
|
{
|
|
@@ -27,7 +30,15 @@ namespace GxPress.Service.Implement.Navigation
|
|
private readonly ISlideRepository slideRepository;
|
|
private readonly ISlideRepository slideRepository;
|
|
private readonly ISpecialLabelRepository specialLabelRepository;
|
|
private readonly ISpecialLabelRepository specialLabelRepository;
|
|
private readonly ITeacherRepository teacherRepository;
|
|
private readonly ITeacherRepository teacherRepository;
|
|
- public NavigationService(INavigationRepository _repository, IMapper _mapper, IMiddleLableRepository _middleLableRepository, ISystemLabelRepository _systemLabelRepository, IMediaRepository _mediaRepository, IMediaLableRepository _mediaLableRepository, ISlideRepository slideRepository, ISpecialLabelRepository specialLabelRepository, ITeacherRepository teacherRepository, IMiddleLableNexusRepository middleLableNexusRepository)
|
|
|
|
|
|
+ private readonly IArticleRepository articleRepository;
|
|
|
|
+ private readonly IVisitRepository visitRepository;
|
|
|
|
+
|
|
|
|
+ public NavigationService(INavigationRepository _repository, IMapper _mapper,
|
|
|
|
+ IMiddleLableRepository _middleLableRepository, ISystemLabelRepository _systemLabelRepository,
|
|
|
|
+ IMediaRepository _mediaRepository, IMediaLableRepository _mediaLableRepository,
|
|
|
|
+ ISlideRepository slideRepository, ISpecialLabelRepository specialLabelRepository,
|
|
|
|
+ ITeacherRepository teacherRepository, IMiddleLableNexusRepository middleLableNexusRepository,
|
|
|
|
+ IArticleRepository articleRepository, IVisitRepository visitRepository)
|
|
{
|
|
{
|
|
this._navigationrepository = _repository;
|
|
this._navigationrepository = _repository;
|
|
this._middleLableRepository = _middleLableRepository;
|
|
this._middleLableRepository = _middleLableRepository;
|
|
@@ -39,6 +50,8 @@ namespace GxPress.Service.Implement.Navigation
|
|
this.specialLabelRepository = specialLabelRepository;
|
|
this.specialLabelRepository = specialLabelRepository;
|
|
this.teacherRepository = teacherRepository;
|
|
this.teacherRepository = teacherRepository;
|
|
this.middleLableNexusRepository = middleLableNexusRepository;
|
|
this.middleLableNexusRepository = middleLableNexusRepository;
|
|
|
|
+ this.articleRepository = articleRepository;
|
|
|
|
+ this.visitRepository = visitRepository;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 获取导航栏数据
|
|
/// 获取导航栏数据
|
|
@@ -82,7 +95,7 @@ namespace GxPress.Service.Implement.Navigation
|
|
StyleType = item.StyleType,
|
|
StyleType = item.StyleType,
|
|
ActionUrl = item.ActionUrl,
|
|
ActionUrl = item.ActionUrl,
|
|
ControllerUrl = item.ControllerUrl,
|
|
ControllerUrl = item.ControllerUrl,
|
|
- PageSize=item.PageSize,
|
|
|
|
|
|
+ PageSize = item.PageSize,
|
|
IsPage = item.IsPage,
|
|
IsPage = item.IsPage,
|
|
IsSkip = item.IsSkip,
|
|
IsSkip = item.IsSkip,
|
|
LabelName = item.LabelName,
|
|
LabelName = item.LabelName,
|
|
@@ -111,10 +124,52 @@ namespace GxPress.Service.Implement.Navigation
|
|
result.NavigationLabelMediaResults.Add(navigationLabelMediaResult);
|
|
result.NavigationLabelMediaResults.Add(navigationLabelMediaResult);
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
- //获取媒体标签
|
|
|
|
- var mediaIds = await _mediaLableRepository.GetMediaIdsAysnc(item.Id);
|
|
|
|
- var medias = await _mediaRepository.GetNavigationMediaResults(mediaIds,1,item.PageSize);
|
|
|
|
- navigationLabelMediaResult.MediaResults = medias.ToList();
|
|
|
|
|
|
+ if (item.LabelName.Equals("推荐"))
|
|
|
|
+ {
|
|
|
|
+ var request = new List<Entity.BlacklistArticle>();
|
|
|
|
+ var articleResult = await articleRepository.GetArticleResults();
|
|
|
|
+ var articleResults = new List<Result.Media.NavigationMediaResult>();
|
|
|
|
+ foreach (var article in articleResult)
|
|
|
|
+ {
|
|
|
|
+ var jsonContent = article.ArticleContent;
|
|
|
|
+ var textContent = string.Empty;
|
|
|
|
+ //新版json
|
|
|
|
+ if (jsonContent != null && jsonContent.type.Count() > 0)
|
|
|
|
+ {
|
|
|
|
+ foreach (var content in jsonContent.content)
|
|
|
|
+ {
|
|
|
|
+ foreach (var contentItem in content.content)
|
|
|
|
+ {
|
|
|
|
+ if (contentItem.type == "text")
|
|
|
|
+ textContent += contentItem.text;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ var imageUrl = article.ImageUrls != null ? article.ImageUrls.FirstOrDefault() : "";
|
|
|
|
+ articleResults.Add(
|
|
|
|
+ new Result.Media.NavigationMediaResult
|
|
|
|
+ {
|
|
|
|
+ Id = article.Id,
|
|
|
|
+ Title = article.Title,
|
|
|
|
+ ImageUrls = string.IsNullOrEmpty(imageUrl) ? StringUtils.AddDomain(imageUrl) : "",
|
|
|
|
+ Summary = textContent,
|
|
|
|
+ Author = article.Author,
|
|
|
|
+ CreatedDate = article.AddDate,
|
|
|
|
+ CollectCount = article.CollectCount,
|
|
|
|
+ ReadCount = article.ReadCount,
|
|
|
|
+ MediaType = AllTypeConst.Article.GetHashCode()
|
|
|
|
+ }
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+ navigationLabelMediaResult.MediaResults = articleResults;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ //获取媒体标签
|
|
|
|
+ var mediaIds = await _mediaLableRepository.GetMediaIdsAysnc(item.Id);
|
|
|
|
+ var medias = await _mediaRepository.GetNavigationMediaResults(mediaIds, 1, item.PageSize);
|
|
|
|
+ navigationLabelMediaResult.MediaResults = medias.ToList();
|
|
|
|
+ }
|
|
foreach (var itemMedia in navigationLabelMediaResult.MediaResults)
|
|
foreach (var itemMedia in navigationLabelMediaResult.MediaResults)
|
|
itemMedia.ImageUrls = StringUtils.AddDomain(itemMedia.ImageUrls);
|
|
itemMedia.ImageUrls = StringUtils.AddDomain(itemMedia.ImageUrls);
|
|
result.NavigationLabelMediaResults.Add(navigationLabelMediaResult);
|
|
result.NavigationLabelMediaResults.Add(navigationLabelMediaResult);
|
|
@@ -172,7 +227,7 @@ namespace GxPress.Service.Implement.Navigation
|
|
{
|
|
{
|
|
//获取特殊
|
|
//获取特殊
|
|
navigationLabelMediaResult.IsSpecial = true;
|
|
navigationLabelMediaResult.IsSpecial = true;
|
|
- navigationLabelMediaResult.SpecialLabelResults = await specialLabelRepository.GetAllAsync(item.ResourceType,item.PageSize);
|
|
|
|
|
|
+ navigationLabelMediaResult.SpecialLabelResults = await specialLabelRepository.GetAllAsync(item.ResourceType, item.PageSize);
|
|
foreach (var specialLabelResult in navigationLabelMediaResult.SpecialLabelResults)
|
|
foreach (var specialLabelResult in navigationLabelMediaResult.SpecialLabelResults)
|
|
specialLabelResult.ImageUrls = StringUtils.AddDomain(specialLabelResult.ImageUrls);
|
|
specialLabelResult.ImageUrls = StringUtils.AddDomain(specialLabelResult.ImageUrls);
|
|
result.NavigationLabelMediaResults.Add(navigationLabelMediaResult);
|
|
result.NavigationLabelMediaResults.Add(navigationLabelMediaResult);
|