|
@@ -18,8 +18,9 @@ namespace GxPress.Service.Implement.Topic
|
|
|
/// </summary>
|
|
|
/// <param name="request"></param>
|
|
|
/// <returns></returns>
|
|
|
- public async Task<bool> InsertTopicAsync(TopicInRequest request)
|
|
|
+ public async Task<AppResultJson<Entity.Topic.Topic>> InsertTopicAsync(TopicInRequest request)
|
|
|
{
|
|
|
+ var result = new AppResultJson<Entity.Topic.Topic>();
|
|
|
if (string.IsNullOrWhiteSpace(request.Title) && string.IsNullOrWhiteSpace(request.HtmlContent))
|
|
|
throw new BusinessException("标题和内容必填一项!");
|
|
|
try
|
|
@@ -50,15 +51,28 @@ namespace GxPress.Service.Implement.Topic
|
|
|
var topicId = await _topicRepository.InsertAsync(topic);
|
|
|
//修改话题访问量
|
|
|
await _visitService.AddVisit(request.UserId, GxPress.EnumConst.AllTypeConst.Topic.GetHashCode(), topicId);
|
|
|
+ result = new AppResultJson<Entity.Topic.Topic>
|
|
|
+ {
|
|
|
+ Code = 100,
|
|
|
+ Msg = "",
|
|
|
+ Success = false,
|
|
|
+ Data = await _topicRepository.GetAsync(topicId)
|
|
|
+ };
|
|
|
transactionScope.Complete();
|
|
|
}
|
|
|
}
|
|
|
- catch (Exception e)
|
|
|
+ catch
|
|
|
{
|
|
|
- throw new BusinessException(e.Message);
|
|
|
+ return result = new AppResultJson<Entity.Topic.Topic>
|
|
|
+ {
|
|
|
+ Code = 100,
|
|
|
+ Msg = "",
|
|
|
+ Success = false,
|
|
|
+ Data = new Entity.Topic.Topic()
|
|
|
+ };
|
|
|
}
|
|
|
|
|
|
- return true;
|
|
|
+ return result;
|
|
|
}
|
|
|
}
|
|
|
}
|