using DownKyi.Core.BiliApi.History; using DownKyi.Core.BiliApi.VideoStream; using DownKyi.Core.Storage; using DownKyi.Core.Utils; using DownKyi.CustomControl; using DownKyi.Events; using DownKyi.Images; using DownKyi.Services; using DownKyi.Services.Download; using DownKyi.Utils; using DownKyi.ViewModels.PageViewModels; using Prism.Commands; using Prism.Events; using Prism.Regions; using Prism.Services.Dialogs; using System; using System.Collections; using System.Collections.ObjectModel; using System.Linq; using System.Threading; using System.Threading.Tasks; using System.Windows; using System.Windows.Media.Imaging; namespace DownKyi.ViewModels { public class ViewMyHistoryViewModel : BaseViewModel { public const string Tag = "PageMyHistory"; private readonly IDialogService dialogService; private CancellationTokenSource tokenSource; // 每页视频数量,暂时在此写死,以后在设置中增加选项 private readonly int VideoNumberInPage = 30; #region 页面属性申明 private string pageName = Tag; public string PageName { get => pageName; set => SetProperty(ref pageName, value); } private VectorImage arrowBack; public VectorImage ArrowBack { get => arrowBack; set => SetProperty(ref arrowBack, value); } private VectorImage downloadManage; public VectorImage DownloadManage { get => downloadManage; set => SetProperty(ref downloadManage, value); } private Visibility contentVisibility; public Visibility ContentVisibility { get => contentVisibility; set => SetProperty(ref contentVisibility, value); } private ObservableCollection medias; public ObservableCollection Medias { get => medias; set => SetProperty(ref medias, value); } private bool isSelectAll; public bool IsSelectAll { get => isSelectAll; set => SetProperty(ref isSelectAll, value); } private GifImage loading; public GifImage Loading { get => loading; set => SetProperty(ref loading, value); } private Visibility loadingVisibility; public Visibility LoadingVisibility { get => loadingVisibility; set => SetProperty(ref loadingVisibility, value); } private Visibility noDataVisibility; public Visibility NoDataVisibility { get => noDataVisibility; set => SetProperty(ref noDataVisibility, value); } #endregion public ViewMyHistoryViewModel(IEventAggregator eventAggregator, IDialogService dialogService) : base(eventAggregator) { this.dialogService = dialogService; #region 属性初始化 // 初始化loading gif Loading = new GifImage(Properties.Resources.loading); Loading.StartAnimate(); LoadingVisibility = Visibility.Collapsed; NoDataVisibility = Visibility.Collapsed; ArrowBack = NavigationIcon.Instance().ArrowBack; ArrowBack.Fill = DictionaryResource.GetColor("ColorTextDark"); // 下载管理按钮 DownloadManage = ButtonIcon.Instance().DownloadManage; DownloadManage.Height = 24; DownloadManage.Width = 24; DownloadManage.Fill = DictionaryResource.GetColor("ColorPrimary"); Medias = new ObservableCollection(); #endregion } #region 命令申明 // 返回事件 private DelegateCommand backSpaceCommand; public DelegateCommand BackSpaceCommand => backSpaceCommand ?? (backSpaceCommand = new DelegateCommand(ExecuteBackSpace)); /// /// 返回事件 /// private void ExecuteBackSpace() { InitView(); ArrowBack.Fill = DictionaryResource.GetColor("ColorText"); // 结束任务 tokenSource?.Cancel(); NavigationParam parameter = new NavigationParam { ViewName = ParentView, ParentViewName = null, Parameter = null }; eventAggregator.GetEvent().Publish(parameter); } // 前往下载管理页面 private DelegateCommand downloadManagerCommand; public DelegateCommand DownloadManagerCommand => downloadManagerCommand ?? (downloadManagerCommand = new DelegateCommand(ExecuteDownloadManagerCommand)); /// /// 前往下载管理页面 /// private void ExecuteDownloadManagerCommand() { NavigationParam parameter = new NavigationParam { ViewName = ViewDownloadManagerViewModel.Tag, ParentViewName = Tag, Parameter = null }; eventAggregator.GetEvent().Publish(parameter); } // 全选按钮点击事件 private DelegateCommand selectAllCommand; public DelegateCommand SelectAllCommand => selectAllCommand ?? (selectAllCommand = new DelegateCommand(ExecuteSelectAllCommand)); /// /// 全选按钮点击事件 /// /// private void ExecuteSelectAllCommand(object parameter) { if (IsSelectAll) { foreach (var item in Medias) { item.IsSelected = true; } } else { foreach (var item in Medias) { item.IsSelected = false; } } } // 列表选择事件 private DelegateCommand mediasCommand; public DelegateCommand MediasCommand => mediasCommand ?? (mediasCommand = new DelegateCommand(ExecuteMediasCommand)); /// /// 列表选择事件 /// /// private void ExecuteMediasCommand(object parameter) { if (!(parameter is IList selectedMedia)) { return; } if (selectedMedia.Count == Medias.Count) { IsSelectAll = true; } else { IsSelectAll = false; } } // 添加选中项到下载列表事件 private DelegateCommand addToDownloadCommand; public DelegateCommand AddToDownloadCommand => addToDownloadCommand ?? (addToDownloadCommand = new DelegateCommand(ExecuteAddToDownloadCommand)); /// /// 添加选中项到下载列表事件 /// private void ExecuteAddToDownloadCommand() { AddToDownload(true); } // 添加所有视频到下载列表事件 private DelegateCommand addAllToDownloadCommand; public DelegateCommand AddAllToDownloadCommand => addAllToDownloadCommand ?? (addAllToDownloadCommand = new DelegateCommand(ExecuteAddAllToDownloadCommand)); /// /// 添加所有视频到下载列表事件 /// private void ExecuteAddAllToDownloadCommand() { AddToDownload(false); } #endregion /// /// 添加到下载 /// /// private async void AddToDownload(bool isOnlySelected) { // BANGUMI类型 AddToDownloadService addToDownloadService = new AddToDownloadService(PlayStreamType.VIDEO); // 选择文件夹 string directory = addToDownloadService.SetDirectory(dialogService); // 视频计数 int i = 0; await Task.Run(() => { // 为了避免执行其他操作时, // Medias变化导致的异常 var list = Medias.ToList(); // 添加到下载 foreach (var media in list) { // 只下载选中项,跳过未选中项 if (isOnlySelected && !media.IsSelected) { continue; } /// 有分P的就下载全部 // 开启服务 IInfoService service = null; switch (media.Business) { case "archive": service = new VideoInfoService(media.Url); break; case "pgc": service = new BangumiInfoService(media.Url); break; } if (service == null) { return; } addToDownloadService.SetVideoInfoService(service); addToDownloadService.GetVideo(); addToDownloadService.ParseVideo(service); // 下载 i += addToDownloadService.AddToDownload(eventAggregator, directory); } }); if (directory == null) { return; } // 通知用户添加到下载列表的结果 if (i <= 0) { eventAggregator.GetEvent().Publish(DictionaryResource.GetString("TipAddDownloadingZero")); } else { eventAggregator.GetEvent().Publish($"{DictionaryResource.GetString("TipAddDownloadingFinished1")}{i}{DictionaryResource.GetString("TipAddDownloadingFinished2")}"); } } private async void UpdateHistoryMediaList() { LoadingVisibility = Visibility.Visible; NoDataVisibility = Visibility.Collapsed; Medias.Clear(); await Task.Run(() => { CancellationToken cancellationToken = tokenSource.Token; var historyList = History.GetHistory(0, 0, VideoNumberInPage); if (historyList == null || historyList.List == null || historyList.List.Count == 0) { LoadingVisibility = Visibility.Collapsed; NoDataVisibility = Visibility.Visible; return; } foreach (var history in historyList.List) { if (history.History == null) { continue; } if (history.History.Business != "archive" && history.History.Business != "pgc") { continue; } // 播放url string url = "https://www.bilibili.com"; switch (history.History.Business) { case "archive": url = "https://www.bilibili.com/video/" + history.History.Bvid; break; case "pgc": url = history.Uri; break; } // 查询、保存封面 string coverUrl = history.Cover; BitmapImage cover; if (coverUrl == null || coverUrl == "") { cover = null; } else { if (!coverUrl.ToLower().StartsWith("http")) { coverUrl = $"https:{history.Cover}"; } StorageCover storageCover = new StorageCover(); cover = storageCover.GetCoverThumbnail(history.History.Oid, history.History.Bvid, history.History.Cid, coverUrl, 160, 100); } // 获取用户头像 string upName; BitmapImage upHeader; if (history.AuthorFace != null) { upName = history.AuthorName; StorageHeader storageHeader = new StorageHeader(); upHeader = storageHeader.GetHeaderThumbnail(history.AuthorMid, upName, history.AuthorFace, 24, 24); } else { upName = ""; upHeader = null; } // 观看进度 // -1 已看完 // 0 刚开始 // >0 看到 progress string progress; if (history.Progress == -1) { progress = DictionaryResource.GetString("HistoryFinished"); } else if (history.Progress == 0) { progress = DictionaryResource.GetString("HistoryStarted"); } else { progress = DictionaryResource.GetString("HistoryWatch") + " " + Format.FormatDuration3(history.Progress); } // 观看平台 VectorImage platform; switch (history.History.Dt) { case 1: case 3: case 5: case 7: // 手机端 platform = NormalIcon.Instance().PlatformMobile; break; case 2: // web端 platform = NormalIcon.Instance().PlatformPC; break; case 4: case 6: // pad端 platform = NormalIcon.Instance().PlatformIpad; break; case 33: // TV端 platform = NormalIcon.Instance().PlatformTV; break; default: // 其他 platform = null; break; } // 是否显示Partdesc Visibility partdescVisibility; if (history.NewDesc == "") { partdescVisibility = Visibility.Hidden; } else { partdescVisibility = Visibility.Visible; } // 是否显示UP主信息和分区信息 Visibility upAndTagVisibility; if (history.History.Business == "archive") { upAndTagVisibility = Visibility.Visible; } else { upAndTagVisibility = Visibility.Hidden; } App.PropertyChangeAsync(() => { HistoryMedia media = new HistoryMedia(eventAggregator) { Business = history.History.Business, Bvid = history.History.Bvid, Url = url, UpMid = history.AuthorMid, Cover = cover ?? new BitmapImage(new Uri($"pack://application:,,,/Resources/video-placeholder.png")), Title = history.Title, SubTitle = history.ShowTitle, Duration = history.Duration, TagName = history.TagName, Partdesc = history.NewDesc, Progress = progress, Platform = platform, UpName = upName, UpHeader = upHeader, PartdescVisibility = partdescVisibility, UpAndTagVisibility = upAndTagVisibility, }; Medias.Add(media); ContentVisibility = Visibility.Visible; LoadingVisibility = Visibility.Collapsed; NoDataVisibility = Visibility.Collapsed; }); // 判断是否该结束线程,若为true,跳出循环 if (cancellationToken.IsCancellationRequested) { break; } } }, (tokenSource = new CancellationTokenSource()).Token); } /// /// 初始化页面数据 /// private void InitView() { ArrowBack.Fill = DictionaryResource.GetColor("ColorTextDark"); DownloadManage = ButtonIcon.Instance().DownloadManage; DownloadManage.Height = 24; DownloadManage.Width = 24; DownloadManage.Fill = DictionaryResource.GetColor("ColorPrimary"); ContentVisibility = Visibility.Collapsed; LoadingVisibility = Visibility.Collapsed; NoDataVisibility = Visibility.Collapsed; Medias.Clear(); IsSelectAll = false; } /// /// 导航到VideoDetail页面时执行 /// /// public override void OnNavigatedTo(NavigationContext navigationContext) { base.OnNavigatedTo(navigationContext); ArrowBack.Fill = DictionaryResource.GetColor("ColorTextDark"); DownloadManage = ButtonIcon.Instance().DownloadManage; DownloadManage.Height = 24; DownloadManage.Width = 24; DownloadManage.Fill = DictionaryResource.GetColor("ColorPrimary"); // 根据传入参数不同执行不同任务 long mid = navigationContext.Parameters.GetValue("Parameter"); if (mid == 0) { IsSelectAll = false; foreach (var media in Medias) { media.IsSelected = false; } return; } InitView(); UpdateHistoryMediaList(); } } }