|
@@ -17,6 +17,7 @@ using GxPress.Result;
|
|
|
using SqlKata;
|
|
|
using GxPress.Result.Job;
|
|
|
using GxPress.EnumConst;
|
|
|
+using Newtonsoft.Json;
|
|
|
|
|
|
namespace GxPress.Repository.Implement
|
|
|
{
|
|
@@ -185,7 +186,7 @@ namespace GxPress.Repository.Implement
|
|
|
$"{showKey} tede_topic a inner join tede_user b on a.UserId=b.Id inner join tede_Department c on c.Id=b.DepartmentId where a.GroupId={request.GroupId}";
|
|
|
var strValue = "";
|
|
|
if (!string.IsNullOrEmpty(request.Key))
|
|
|
- strValue += $" and (a.Title like '%{request.Key}%' or a.Content like '%{request.Key}%' or b.Name like '%{request.Key}%')";
|
|
|
+ strValue += $" and (a.Title like '%{request.Key}%' or a.TextContent like '%{request.Key}%' or b.Name like '%{request.Key}%')";
|
|
|
sql += $"{strValue} order by a.CreatedDate DESC LIMIT @page , @pageSize";
|
|
|
countSql += $"{strValue}";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
@@ -227,7 +228,7 @@ namespace GxPress.Repository.Implement
|
|
|
if (!string.IsNullOrEmpty(request.Key))
|
|
|
{
|
|
|
sqlStr += $@"AND (a.Title LIKE '%{request.Key}%'
|
|
|
- OR a.Content LIKE '%{request.Key}%')";
|
|
|
+ OR a.TextContent LIKE '%{request.Key}%')";
|
|
|
}
|
|
|
string sql = $@"SELECT
|
|
|
a.Id,
|
|
@@ -390,7 +391,7 @@ namespace GxPress.Repository.Implement
|
|
|
if (!string.IsNullOrEmpty(request.Key))
|
|
|
{
|
|
|
sqlStr += $@"AND (a.Title LIKE '%{request.Key}%'
|
|
|
- OR a.Content LIKE '%{request.Key}%')";
|
|
|
+ OR a.TextContent LIKE '%{request.Key}%')";
|
|
|
}
|
|
|
string sql = $@"SELECT
|
|
|
a.Id,
|
|
@@ -722,7 +723,7 @@ namespace GxPress.Repository.Implement
|
|
|
{
|
|
|
sql += $@" AND (c.Name LIKE '%{request.Keyword}%'
|
|
|
OR a.Title LIKE '%{request.Keyword}%'
|
|
|
- OR a.HtmlContent LIKE '%{request.Keyword}%')";
|
|
|
+ OR a.TextContent LIKE '%{request.Keyword}%')";
|
|
|
}
|
|
|
if (!string.IsNullOrEmpty(request.Sort))
|
|
|
sql += $@" ORDER BY a.ReadCount DESC";
|
|
@@ -779,7 +780,7 @@ namespace GxPress.Repository.Implement
|
|
|
{
|
|
|
sql += $@" AND (c.Name LIKE '%{request.Keyword}%'
|
|
|
OR a.Title LIKE '%{request.Keyword}%'
|
|
|
- OR a.HtmlContent LIKE '%{request.Keyword}%')";
|
|
|
+ OR a.TextContent LIKE '%{request.Keyword}%')";
|
|
|
}
|
|
|
result.Total = await connection.ExecuteScalarAsync<int>(sql);
|
|
|
return result;
|
|
@@ -798,5 +799,34 @@ namespace GxPress.Repository.Implement
|
|
|
query.Where(nameof(Entity.Topic.Topic.GroupId), groupId);
|
|
|
return await _repository.DeleteAsync(query) > 0;
|
|
|
}
|
|
|
+
|
|
|
+ public async Task<bool> UpdateTopicTextContentAsync()
|
|
|
+ {
|
|
|
+ var query = Q.NewQuery();
|
|
|
+ query.Where(nameof(Entity.Note.Note.TextContent), "=", "");
|
|
|
+ query.OrderByDesc(nameof(Entity.Note.Note.CreatedDate));
|
|
|
+ query.Limit(100);
|
|
|
+ var result = await _repository.GetAllAsync(query);
|
|
|
+ foreach (var item in result)
|
|
|
+ {
|
|
|
+ if (!string.IsNullOrEmpty(item.Content))
|
|
|
+ {
|
|
|
+ var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
|
|
|
+ foreach (var data in contentJsonData)
|
|
|
+ {
|
|
|
+ if (data.Type == AllTypeConst.Text.GetHashCode())
|
|
|
+ item.TextContent += data.Text;
|
|
|
+ }
|
|
|
+ if (!string.IsNullOrEmpty(item.TextContent))
|
|
|
+ await _repository.UpdateAsync(item);
|
|
|
+ else
|
|
|
+ {
|
|
|
+ item.TextContent = "[]";
|
|
|
+ await _repository.UpdateAsync(item);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
}
|
|
|
}
|