2024-05-04 15:35:32 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Avalonia.Media.Imaging;
|
|
|
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
|
using CommunityToolkit.Mvvm.Input;
|
|
|
|
|
using CRD.Downloader;
|
|
|
|
|
using CRD.Utils.Structs;
|
|
|
|
|
|
|
|
|
|
namespace CRD.ViewModels;
|
|
|
|
|
|
|
|
|
|
public partial class DownloadsPageViewModel : ViewModelBase{
|
|
|
|
|
public ObservableCollection<DownloadItemModel> Items{ get; }
|
|
|
|
|
|
2024-06-24 20:29:13 +00:00
|
|
|
|
[ObservableProperty]
|
|
|
|
|
public bool _autoDownload;
|
2024-05-04 15:35:32 +00:00
|
|
|
|
|
2024-06-24 20:29:13 +00:00
|
|
|
|
[ObservableProperty]
|
|
|
|
|
public bool _removeFinished;
|
|
|
|
|
|
2024-05-04 15:35:32 +00:00
|
|
|
|
public DownloadsPageViewModel(){
|
2024-06-26 22:04:50 +00:00
|
|
|
|
Crunchyroll.Instance.UpdateDownloadListItems();
|
2024-05-04 15:35:32 +00:00
|
|
|
|
Items = Crunchyroll.Instance.DownloadItemModels;
|
2024-06-24 20:29:13 +00:00
|
|
|
|
AutoDownload = Crunchyroll.Instance.CrunOptions.AutoDownload;
|
|
|
|
|
RemoveFinished = Crunchyroll.Instance.CrunOptions.RemoveFinishedDownload;
|
2024-05-04 15:35:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
partial void OnAutoDownloadChanged(bool value){
|
2024-06-24 20:29:13 +00:00
|
|
|
|
Crunchyroll.Instance.CrunOptions.AutoDownload = value;
|
2024-05-04 15:35:32 +00:00
|
|
|
|
if (value){
|
2024-06-26 22:04:50 +00:00
|
|
|
|
Crunchyroll.Instance.UpdateDownloadListItems();
|
2024-05-04 15:35:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-24 20:29:13 +00:00
|
|
|
|
partial void OnRemoveFinishedChanged(bool value){
|
|
|
|
|
Crunchyroll.Instance.CrunOptions.RemoveFinishedDownload = value;
|
|
|
|
|
}
|
2024-06-26 22:04:50 +00:00
|
|
|
|
|
2024-05-04 15:35:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public partial class DownloadItemModel : INotifyPropertyChanged{
|
|
|
|
|
public string ImageUrl{ get; set; }
|
|
|
|
|
public Bitmap? ImageBitmap{ get; set; }
|
|
|
|
|
public string Title{ get; set; }
|
|
|
|
|
|
|
|
|
|
public bool isDownloading{ get; set; }
|
|
|
|
|
public bool Done{ get; set; }
|
|
|
|
|
public bool Paused{ get; set; }
|
|
|
|
|
|
|
|
|
|
public double Percent{ get; set; }
|
|
|
|
|
public string Time{ get; set; }
|
|
|
|
|
public string DoingWhat{ get; set; }
|
|
|
|
|
public string DownloadSpeed{ get; set; }
|
|
|
|
|
public string InfoText{ get; set; }
|
|
|
|
|
|
|
|
|
|
public CrunchyEpMeta epMeta{ get; set; }
|
|
|
|
|
|
2024-06-24 20:29:13 +00:00
|
|
|
|
|
2024-05-04 15:35:32 +00:00
|
|
|
|
public bool Error{ get; set; }
|
|
|
|
|
|
|
|
|
|
public DownloadItemModel(CrunchyEpMeta epMetaF){
|
|
|
|
|
epMeta = epMetaF;
|
|
|
|
|
|
|
|
|
|
ImageUrl = epMeta.Image;
|
|
|
|
|
Title = epMeta.SeriesTitle + " - S" + epMeta.Season + "E" + (epMeta.EpisodeNumber != string.Empty ? epMeta.EpisodeNumber : epMeta.AbsolutEpisodeNumberE) + " - " + epMeta.EpisodeTitle;
|
2024-06-24 20:29:13 +00:00
|
|
|
|
isDownloading = epMeta.DownloadProgress.IsDownloading || Done;
|
|
|
|
|
|
2024-05-04 15:35:32 +00:00
|
|
|
|
Done = epMeta.DownloadProgress.Done;
|
|
|
|
|
Percent = epMeta.DownloadProgress.Percent;
|
2024-07-06 18:48:58 +00:00
|
|
|
|
Time = "Estimated Time: " + TimeSpan.FromSeconds(epMeta.DownloadProgress.Time).ToString(@"hh\:mm\:ss");
|
2024-05-04 15:35:32 +00:00
|
|
|
|
DownloadSpeed = $"{epMeta.DownloadProgress.DownloadSpeed / 1000000.0:F2}Mb/s";
|
|
|
|
|
Paused = epMeta.Paused || !isDownloading && !epMeta.Paused;
|
2024-06-24 20:29:13 +00:00
|
|
|
|
DoingWhat = epMeta.Paused ? "Paused" : Done ? "Done" : epMeta.DownloadProgress.Doing != string.Empty ? epMeta.DownloadProgress.Doing : "Waiting";
|
2024-05-04 15:35:32 +00:00
|
|
|
|
|
2024-05-24 22:46:11 +00:00
|
|
|
|
if (epMeta.Data != null) InfoText = GetDubString() + " - " + GetSubtitleString();
|
2024-05-04 15:35:32 +00:00
|
|
|
|
|
|
|
|
|
Error = epMeta.DownloadProgress.Error;
|
|
|
|
|
}
|
2024-06-24 20:29:13 +00:00
|
|
|
|
|
2024-05-24 22:46:11 +00:00
|
|
|
|
private string GetDubString(){
|
|
|
|
|
var hardSubs = Crunchyroll.Instance.CrunOptions.Hslang != "none" ? "Hardsub: " + Crunchyroll.Instance.CrunOptions.Hslang : "";
|
|
|
|
|
if (hardSubs != string.Empty){
|
|
|
|
|
return hardSubs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var dubs = "Dub: ";
|
|
|
|
|
|
|
|
|
|
if (epMeta.SelectedDubs != null)
|
|
|
|
|
foreach (var crunOptionsDlDub in epMeta.SelectedDubs){
|
|
|
|
|
dubs += crunOptionsDlDub + " ";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dubs;
|
|
|
|
|
}
|
2024-05-04 15:35:32 +00:00
|
|
|
|
|
|
|
|
|
private string GetSubtitleString(){
|
|
|
|
|
var hardSubs = Crunchyroll.Instance.CrunOptions.Hslang != "none" ? "Hardsub: " + Crunchyroll.Instance.CrunOptions.Hslang : "";
|
|
|
|
|
if (hardSubs != string.Empty){
|
|
|
|
|
return hardSubs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var softSubs = "Softsub: ";
|
|
|
|
|
|
2024-06-15 13:55:39 +00:00
|
|
|
|
if (Crunchyroll.Instance.CrunOptions.DlSubs.Contains("all")){
|
|
|
|
|
if (epMeta.AvailableSubs != null){
|
|
|
|
|
foreach (var epMetaAvailableSub in epMeta.AvailableSubs){
|
|
|
|
|
softSubs += epMetaAvailableSub + " ";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return softSubs;
|
|
|
|
|
}
|
2024-06-24 20:29:13 +00:00
|
|
|
|
}
|
2024-05-24 22:46:11 +00:00
|
|
|
|
|
2024-05-04 15:35:32 +00:00
|
|
|
|
foreach (var crunOptionsDlSub in Crunchyroll.Instance.CrunOptions.DlSubs){
|
2024-05-24 22:46:11 +00:00
|
|
|
|
if (epMeta.AvailableSubs != null && epMeta.AvailableSubs.Contains(crunOptionsDlSub)){
|
|
|
|
|
softSubs += crunOptionsDlSub + " ";
|
|
|
|
|
}
|
2024-05-04 15:35:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return softSubs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Refresh(){
|
2024-06-24 20:29:13 +00:00
|
|
|
|
isDownloading = epMeta.DownloadProgress.IsDownloading || Done;
|
2024-05-04 15:35:32 +00:00
|
|
|
|
Done = epMeta.DownloadProgress.Done;
|
|
|
|
|
Percent = epMeta.DownloadProgress.Percent;
|
2024-07-06 18:48:58 +00:00
|
|
|
|
Time = "Estimated Time: " + TimeSpan.FromSeconds(epMeta.DownloadProgress.Time).ToString(@"hh\:mm\:ss");
|
2024-05-04 15:35:32 +00:00
|
|
|
|
DownloadSpeed = $"{epMeta.DownloadProgress.DownloadSpeed / 1000000.0:F2}Mb/s";
|
|
|
|
|
|
|
|
|
|
Paused = epMeta.Paused || !isDownloading && !epMeta.Paused;
|
2024-06-24 20:29:13 +00:00
|
|
|
|
DoingWhat = epMeta.Paused ? "Paused" : Done ? "Done" : epMeta.DownloadProgress.Doing != string.Empty ? epMeta.DownloadProgress.Doing : "Waiting";
|
2024-05-04 15:35:32 +00:00
|
|
|
|
|
2024-05-24 22:46:11 +00:00
|
|
|
|
if (epMeta.Data != null) InfoText = GetDubString() + " - " + GetSubtitleString();
|
2024-06-24 20:29:13 +00:00
|
|
|
|
|
2024-05-04 15:35:32 +00:00
|
|
|
|
Error = epMeta.DownloadProgress.Error;
|
2024-06-24 20:29:13 +00:00
|
|
|
|
|
2024-05-04 15:35:32 +00:00
|
|
|
|
if (PropertyChanged != null){
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(isDownloading)));
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Percent)));
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Time)));
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(DownloadSpeed)));
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(DoingWhat)));
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Error)));
|
2024-05-24 22:46:11 +00:00
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(InfoText)));
|
2024-05-04 15:35:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public event PropertyChangedEventHandler? PropertyChanged;
|
|
|
|
|
|
|
|
|
|
[RelayCommand]
|
|
|
|
|
public void ToggleIsDownloading(){
|
|
|
|
|
if (isDownloading){
|
|
|
|
|
//StopDownload();
|
|
|
|
|
epMeta.Paused = !epMeta.Paused;
|
|
|
|
|
|
|
|
|
|
Paused = epMeta.Paused || !isDownloading && !epMeta.Paused;
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Paused)));
|
|
|
|
|
} else{
|
|
|
|
|
if (epMeta.Paused){
|
|
|
|
|
epMeta.Paused = false;
|
|
|
|
|
Paused = epMeta.Paused || !isDownloading && !epMeta.Paused;
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Paused)));
|
|
|
|
|
} else{
|
|
|
|
|
StartDownload();
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-06-24 20:29:13 +00:00
|
|
|
|
|
|
|
|
|
|
2024-05-04 15:35:32 +00:00
|
|
|
|
if (PropertyChanged != null){
|
|
|
|
|
PropertyChanged.Invoke(this, new PropertyChangedEventArgs("isDownloading"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async void StartDownload(){
|
|
|
|
|
if (!isDownloading){
|
|
|
|
|
isDownloading = true;
|
|
|
|
|
epMeta.DownloadProgress.IsDownloading = true;
|
|
|
|
|
Paused = !epMeta.Paused && !isDownloading || epMeta.Paused;
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Paused)));
|
2024-06-24 15:40:20 +00:00
|
|
|
|
await Crunchyroll.Instance.DownloadEpisode(epMeta, Crunchyroll.Instance.CrunOptions);
|
2024-05-04 15:35:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[RelayCommand]
|
|
|
|
|
public void RemoveFromQueue(){
|
|
|
|
|
CrunchyEpMeta? downloadItem = Crunchyroll.Instance.Queue.FirstOrDefault(e => e.Equals(epMeta)) ?? null;
|
|
|
|
|
if (downloadItem != null){
|
|
|
|
|
Crunchyroll.Instance.Queue.Remove(downloadItem);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task LoadImage(){
|
|
|
|
|
try{
|
|
|
|
|
using (var client = new HttpClient()){
|
|
|
|
|
var response = await client.GetAsync(ImageUrl);
|
|
|
|
|
response.EnsureSuccessStatusCode();
|
|
|
|
|
using (var stream = await response.Content.ReadAsStreamAsync()){
|
|
|
|
|
ImageBitmap = new Bitmap(stream);
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(ImageBitmap)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception ex){
|
|
|
|
|
// Handle exceptions
|
2024-06-19 00:16:02 +00:00
|
|
|
|
Console.Error.WriteLine("Failed to load image: " + ex.Message);
|
2024-05-04 15:35:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|