|
@@ -5,7 +5,9 @@ using System.Threading.Tasks;
|
|
|
using Dapper;
|
|
|
using Datory;
|
|
|
using GxPress.Common.Tools;
|
|
|
+using GxPress.EnumConst;
|
|
|
using GxPress.Repository.Interface;
|
|
|
+using GxPress.Repository.Interface.Media;
|
|
|
using GxPress.Result.DataCenter;
|
|
|
using GxPress.Service.Interface.PlatformData;
|
|
|
|
|
@@ -15,10 +17,13 @@ namespace GxPress.Service.Implement.PlatformData
|
|
|
{
|
|
|
private readonly IUserRepository userRepository;
|
|
|
|
|
|
- public PlatformDataService(IUserRepository userRepository)
|
|
|
+ private readonly IMediaRepository mediaRepository;
|
|
|
+
|
|
|
+ public PlatformDataService(IUserRepository userRepository, IMediaRepository mediaRepository)
|
|
|
{
|
|
|
|
|
|
this.userRepository = userRepository;
|
|
|
+ this.mediaRepository = mediaRepository;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 平台运营数据
|
|
@@ -170,5 +175,144 @@ namespace GxPress.Service.Implement.PlatformData
|
|
|
FreeProportion>0) AS PayContentCount";
|
|
|
return await connection.QueryFirstAsync<PlatformContentDataResult>(sql);
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 内容类型分布图
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<List<ContentTypeDistributingResult>> GetContentTypeDistributingResults()
|
|
|
+ {
|
|
|
+ var result = new List<ContentTypeDistributingResult>();
|
|
|
+ var connectionString = ConfigHelper.GetValue("Database:ConnectionString");
|
|
|
+ var database = new Database(DatabaseType.MySql, connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ foreach (ResourceTypeConst item in Enum.GetValues(typeof(ResourceTypeConst)))
|
|
|
+ {
|
|
|
+ var model = new ContentTypeDistributingResult();
|
|
|
+ model.Name = item.GetDescriptionOriginal();
|
|
|
+
|
|
|
+ var sql = $"select count(1) from tede_media where MediaType={item.GetHashCode()}";
|
|
|
+ model.Value = await connection.ExecuteScalarAsync<int>(sql);
|
|
|
+ result.Add(model);
|
|
|
+ }
|
|
|
+ foreach (ResourceTypeConst item in Enum.GetValues(typeof(AttachTypeConst)))
|
|
|
+ {
|
|
|
+ var model = new ContentTypeDistributingResult();
|
|
|
+ model.Name = item.GetDescriptionOriginal();
|
|
|
+ var sql = $"select count(1) from tede_media where AttachId={item.GetHashCode()}";
|
|
|
+ model.Value = await connection.ExecuteScalarAsync<int>(sql);
|
|
|
+ result.Add(model);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 收费内容统计图
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<PayContentstatisticsResult> GetPayContentstatisticsResult()
|
|
|
+ {
|
|
|
+ var result = new PayContentstatisticsResult();
|
|
|
+ result.PageAdata = new List<int>();
|
|
|
+ result.PageBdata = new List<int>();
|
|
|
+ result.Title = new List<string>();
|
|
|
+ var connectionString = ConfigHelper.GetValue("Database:ConnectionString");
|
|
|
+ var database = new Database(DatabaseType.MySql, connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ foreach (ResourceTypeConst item in Enum.GetValues(typeof(ResourceTypeConst)))
|
|
|
+ {
|
|
|
+
|
|
|
+ result.Title.Add(item.GetDescriptionOriginal());
|
|
|
+ var sql = $"select count(1) from tede_media where MediaType={item.GetHashCode()} and FreeProportion>0";
|
|
|
+ result.PageAdata.Add(await connection.ExecuteScalarAsync<int>(sql));
|
|
|
+ sql = $"select count(1) from tede_media where MediaType={item.GetHashCode()} and FreeProportion=0";
|
|
|
+ result.PageBdata.Add(await connection.ExecuteScalarAsync<int>(sql));
|
|
|
+ }
|
|
|
+ foreach (ResourceTypeConst item in Enum.GetValues(typeof(AttachTypeConst)))
|
|
|
+ {
|
|
|
+ result.Title.Add(item.GetDescriptionOriginal());
|
|
|
+ var sql = $"select count(1) from tede_media where AttachId={item.GetHashCode()} and FreeProportion>0";
|
|
|
+ result.PageAdata.Add(await connection.ExecuteScalarAsync<int>(sql));
|
|
|
+ sql = $"select count(1) from tede_media where MediaType={item.GetHashCode()} and FreeProportion=0";
|
|
|
+
|
|
|
+ result.PageBdata.Add(await connection.ExecuteScalarAsync<int>(sql));
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 内容增长情况图
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<ContentIncreaseResult> GetContentIncreaseResult()
|
|
|
+ {
|
|
|
+ var result = new ContentIncreaseResult();
|
|
|
+ result.MonthData = new List<string>();
|
|
|
+ result.ExpectedData = new List<int>();
|
|
|
+ var nowTime = DateTime.Now;
|
|
|
+ for (int i = 0; i < 12; i++)
|
|
|
+ {
|
|
|
+ result.MonthData.Add(nowTime.AddMonths(-i).Month + "月");
|
|
|
+ result.ExpectedData.Add(await mediaRepository.CountAsync(nowTime.AddMonths(-i).ToString("yyyy-MM-01"), nowTime.AddMonths(-i + 1).ToString("yyyy-MM-01")));
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 平台累计访问数据(次)
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<PlatformAccumulativeVisitResult> GetPlatformAccumulativeVisitResult()
|
|
|
+ {
|
|
|
+
|
|
|
+ var sql = @"
|
|
|
+ SELECT
|
|
|
+ (SELECT
|
|
|
+ SUM(ReadCount)
|
|
|
+ FROM
|
|
|
+ tede_media) AS VisitCount,
|
|
|
+ (SELECT
|
|
|
+ SUM(CommentCount)
|
|
|
+ FROM
|
|
|
+ tede_media) AS CommentCount,
|
|
|
+ (SELECT
|
|
|
+ SUM(RetransmissionCount)
|
|
|
+ FROM
|
|
|
+ tede_media) AS RetransmissionCount,
|
|
|
+ (SELECT
|
|
|
+ SUM(CollectCount)
|
|
|
+ FROM
|
|
|
+ tede_media) AS CollctionCount";
|
|
|
+ var connectionString = ConfigHelper.GetValue("Database:ConnectionString");
|
|
|
+ var database = new Database(DatabaseType.MySql, connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ return await connection.QueryFirstAsync<PlatformAccumulativeVisitResult>(sql);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 平台商务数据
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<PlatformCommerceResult> GetPlatformCommerceResult()
|
|
|
+ {
|
|
|
+ var sql = @"SELECT
|
|
|
+ (SELECT
|
|
|
+ SUM(Price)
|
|
|
+ FROM
|
|
|
+ tede_order) AS Amount,
|
|
|
+ (SELECT
|
|
|
+ COUNT(1)
|
|
|
+ FROM
|
|
|
+ tede_order) AS OrderCount,
|
|
|
+ (SELECT
|
|
|
+ COUNT(1)
|
|
|
+ FROM
|
|
|
+ tede_user) AS VipUserCount,
|
|
|
+ (SELECT
|
|
|
+ SUM(Price)
|
|
|
+ FROM
|
|
|
+ tede_order
|
|
|
+ WHERE
|
|
|
+ IsVip = 1) AS VipAmount";
|
|
|
+ var connectionString = ConfigHelper.GetValue("Database:ConnectionString");
|
|
|
+ var database = new Database(DatabaseType.MySql, connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ return await connection.QueryFirstAsync<PlatformCommerceResult>(sql);
|
|
|
+ }
|
|
|
}
|
|
|
}
|