90 lines
3.5 KiB
C#
90 lines
3.5 KiB
C#
using dy.net.dto;
|
|
using dy.net.model;
|
|
using dy.net.service;
|
|
using dy.net.utils;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace dy.net.job
|
|
{
|
|
public class DouyinFavoritSyncJob : DouyinBaseSyncJob
|
|
{
|
|
public DouyinFavoritSyncJob(
|
|
DouyinCookieService dyCookieService,
|
|
DouyinHttpClientService dyHttpClientService,
|
|
DouyinVideoService dyCollectVideoService,
|
|
DouyinCommonService commonService, IServiceProvider serviceProvider, IWebHostEnvironment webHostEnvironment)
|
|
: base(dyCookieService, dyHttpClientService, dyCollectVideoService, commonService, serviceProvider, webHostEnvironment) { }
|
|
|
|
protected override string JobType => "favorite";
|
|
protected override async Task<List<DouyinUserCookie>> GetValidCookies()
|
|
{
|
|
var cookies = await _dyCookieService.GetAllCookies();
|
|
return cookies.Where(c => !string.IsNullOrWhiteSpace(c.FavSavePath)).ToList();
|
|
}
|
|
|
|
protected override bool IsCookieValid(DouyinUserCookie cookie)
|
|
{
|
|
return !string.IsNullOrWhiteSpace(cookie.Cookies) && cookie.Cookies.Length >= 1000 &&
|
|
!string.IsNullOrWhiteSpace(cookie.FavSavePath) &&
|
|
!string.IsNullOrWhiteSpace(cookie.SecUserId) && cookie.SecUserId.Length >= 10;
|
|
}
|
|
|
|
protected override async Task<DouyinVideoInfo> FetchVideoData(DouyinUserCookie cookie, string cursor)
|
|
{
|
|
return await _douyinService.SyncFavoriteVideos(count, cursor, cookie.SecUserId, cookie.Cookies);
|
|
}
|
|
|
|
protected override bool ShouldContinueSync(DouyinUserCookie cookie, DouyinVideoInfo data)
|
|
{
|
|
return data != null && data.HasMore == 1 && cookie.FavHasSyncd == 0;
|
|
}
|
|
|
|
protected override string GetNextCursor(DouyinVideoInfo data)
|
|
{
|
|
return data?.MaxCursor ?? "0";
|
|
}
|
|
|
|
protected override string CreateSaveFolder(DouyinUserCookie cookie, Aweme item, string tag1, string tag2, AppConfig config)
|
|
{
|
|
var safeTag1 = string.IsNullOrWhiteSpace(tag1) ? "other" : TikTokFileNameHelper.SanitizePath(tag1);
|
|
var folder = Path.Combine(cookie.FavSavePath, safeTag1, $"{TikTokFileNameHelper.SanitizePath(item.Desc)}@{item.AwemeId}");
|
|
if (!Directory.Exists(folder)) Directory.CreateDirectory(folder);
|
|
return folder;
|
|
}
|
|
|
|
protected override string GetVideoFileName(DouyinUserCookie cookie, Aweme item)
|
|
{
|
|
var bitRate = item.Video.BitRate.FirstOrDefault();
|
|
return $"{item.AwemeId}.{bitRate.Format}";
|
|
}
|
|
|
|
protected override string GetAuthorAvatarBasePath(DouyinUserCookie cookie)
|
|
{
|
|
return Path.Combine(cookie.FavSavePath, "author");
|
|
}
|
|
|
|
protected override async Task HandleSyncCompletion(DouyinUserCookie cookie, int syncCount)
|
|
{
|
|
if (syncCount > 0)
|
|
{
|
|
Serilog.Log.Debug($"{JobType}-Cookie-[{cookie.UserName}],本次同步成功{syncCount}条视频");
|
|
cookie.FavHasSyncd = 1;
|
|
await _dyCookieService.UpdateAsync(cookie);
|
|
}
|
|
else
|
|
{
|
|
Serilog.Log.Debug($"{JobType}-Cookie-[{cookie.UserName}],本次没有查询到新的视频");
|
|
}
|
|
}
|
|
|
|
protected override VideoEntityDifferences GetVideoEntityDifferences(DouyinUserCookie cookie, Aweme item)
|
|
{
|
|
return new VideoEntityDifferences
|
|
{
|
|
VideoType = VideoTypeEnum.Favorite
|
|
};
|
|
}
|
|
}
|
|
} |