|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Net.Http;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using AsyncAwaitBestPractices;
|
|
|
|
using Avalonia;
|
|
|
|
using Avalonia.Controls;
|
|
|
|
using Avalonia.Media.Imaging;
|
|
|
|
using Avalonia.Platform;
|
|
|
|
using Avalonia.Threading;
|
|
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
using CommunityToolkit.Mvvm.Input;
|
|
|
|
using FluentAvalonia.UI.Controls;
|
|
|
|
using NLog;
|
|
|
|
using StabilityMatrix.Core.Extensions;
|
|
|
|
using StabilityMatrix.Core.Helper;
|
|
|
|
using StabilityMatrix.Core.Models;
|
|
|
|
using StabilityMatrix.Core.Models.Api;
|
|
|
|
using StabilityMatrix.Core.Models.FileInterfaces;
|
|
|
|
using StabilityMatrix.Core.Models.Progress;
|
|
|
|
using StabilityMatrix.Core.Processes;
|
|
|
|
using StabilityMatrix.Core.Services;
|
|
|
|
|
|
|
|
namespace StabilityMatrix.Avalonia.ViewModels;
|
|
|
|
|
|
|
|
public partial class CheckpointBrowserCardViewModel : ProgressViewModel
|
|
|
|
|
|
|
|
{
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
private readonly IDownloadService downloadService;
|
|
|
|
private readonly ISettingsManager settingsManager;
|
|
|
|
public CivitModel CivitModel { get; init; }
|
|
|
|
public Bitmap? CardImage { get; set; }
|
|
|
|
public override bool IsTextVisible => Value > 0;
|
|
|
|
|
|
|
|
[ObservableProperty] private bool isImporting;
|
|
|
|
|
|
|
|
public CheckpointBrowserCardViewModel(
|
|
|
|
CivitModel civitModel,
|
|
|
|
IDownloadService downloadService,
|
|
|
|
ISettingsManager settingsManager,
|
|
|
|
Bitmap? fixedImage = null)
|
|
|
|
{
|
|
|
|
this.downloadService = downloadService;
|
|
|
|
this.settingsManager = settingsManager;
|
|
|
|
CivitModel = civitModel;
|
|
|
|
|
|
|
|
if (fixedImage != null)
|
|
|
|
{
|
|
|
|
CardImage = fixedImage;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
UpdateImage().SafeFireAndForget();
|
|
|
|
|
|
|
|
// Update image when nsfw setting changes
|
|
|
|
settingsManager.RegisterPropertyChangedHandler(
|
|
|
|
s => s.ModelBrowserNsfwEnabled,
|
|
|
|
_ => UpdateImage().SafeFireAndForget());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Choose and load image based on nsfw setting
|
|
|
|
private async Task UpdateImage()
|
|
|
|
{
|
|
|
|
var nsfwEnabled = settingsManager.Settings.ModelBrowserNsfwEnabled;
|
|
|
|
var version = CivitModel.ModelVersions?.FirstOrDefault();
|
|
|
|
var images = version?.Images;
|
|
|
|
|
|
|
|
var image = images?.FirstOrDefault(image => nsfwEnabled || image.Nsfw == "None");
|
|
|
|
if (image != null)
|
|
|
|
{
|
|
|
|
var imageStream = await downloadService.GetImageStreamFromUrl(image.Url);
|
|
|
|
Dispatcher.UIThread.Invoke(() =>
|
|
|
|
{
|
|
|
|
CardImage = new Bitmap(imageStream);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var assetStream = AssetLoader.Open(new Uri("avares://StabilityMatrix.Avalonia/Assets/noimage.png"));
|
|
|
|
|
|
|
|
// Otherwise Default image
|
|
|
|
Dispatcher.UIThread.Invoke(() =>
|
|
|
|
{
|
|
|
|
CardImage = new Bitmap(assetStream);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// On any mode changes, update the image
|
|
|
|
private void OnNsfwModeChanged(object? sender, bool value)
|
|
|
|
{
|
|
|
|
UpdateImage().SafeFireAndForget();
|
|
|
|
}
|
|
|
|
|
|
|
|
[RelayCommand]
|
|
|
|
private void OpenModel()
|
|
|
|
{
|
|
|
|
ProcessRunner.OpenUrl($"https://civitai.com/models/{CivitModel.Id}");
|
|
|
|
}
|
|
|
|
|
|
|
|
[RelayCommand]
|
|
|
|
private async Task Import(CivitModel model)
|
|
|
|
{
|
|
|
|
await DoImport(model);
|
|
|
|
}
|
|
|
|
|
|
|
|
[RelayCommand]
|
|
|
|
private async Task ShowVersionDialog(CivitModel model)
|
|
|
|
{
|
|
|
|
// var dialog = dialogFactory.CreateSelectModelVersionDialog(model);
|
|
|
|
// var result = await dialog.ShowAsync();
|
|
|
|
//
|
|
|
|
// if (result != ContentDialogResult.Primary)
|
|
|
|
// {
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// var viewModel = dialog.DataContext as SelectModelVersionDialogViewModel;
|
|
|
|
// var selectedVersion = viewModel?.SelectedVersion;
|
|
|
|
// var selectedFile = viewModel?.SelectedFile;
|
|
|
|
//
|
|
|
|
// await Task.Delay(100);
|
|
|
|
// await DoImport(model, selectedVersion, selectedFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async Task DoImport(CivitModel model, CivitModelVersion? selectedVersion = null, CivitFile? selectedFile = null)
|
|
|
|
{
|
|
|
|
IsImporting = true;
|
|
|
|
Text = "Downloading...";
|
|
|
|
|
|
|
|
// Holds files to be deleted on errors
|
|
|
|
var filesForCleanup = new HashSet<FilePath>();
|
|
|
|
|
|
|
|
// Set Text when exiting, finally block will set 100 and delay clear progress
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Get latest version
|
|
|
|
var modelVersion = selectedVersion ?? model.ModelVersions?.FirstOrDefault();
|
|
|
|
if (modelVersion is null)
|
|
|
|
{
|
|
|
|
// snackbarService.ShowSnackbarAsync(
|
|
|
|
// "This model has no versions available for download",
|
|
|
|
// "Model has no versions available", ControlAppearance.Caution).SafeFireAndForget();
|
|
|
|
Text = "Unable to Download";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get latest version file
|
|
|
|
var modelFile = selectedFile ?? modelVersion.Files?.FirstOrDefault();
|
|
|
|
if (modelFile is null)
|
|
|
|
{
|
|
|
|
// snackbarService.ShowSnackbarAsync(
|
|
|
|
// "This model has no files available for download",
|
|
|
|
// "Model has no files available", ControlAppearance.Caution).SafeFireAndForget();
|
|
|
|
Text = "Unable to Download";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var downloadFolder = Path.Combine(settingsManager.ModelsDirectory,
|
|
|
|
model.Type.ConvertTo<SharedFolderType>().GetStringValue());
|
|
|
|
// Folders might be missing if user didn't install any packages yet
|
|
|
|
Directory.CreateDirectory(downloadFolder);
|
|
|
|
var downloadPath = Path.GetFullPath(Path.Combine(downloadFolder, modelFile.Name));
|
|
|
|
filesForCleanup.Add(downloadPath);
|
|
|
|
|
|
|
|
// Do the download
|
|
|
|
var downloadTask = downloadService.DownloadToFileAsync(modelFile.DownloadUrl, downloadPath,
|
|
|
|
new Progress<ProgressReport>(report =>
|
|
|
|
{
|
|
|
|
Dispatcher.UIThread.Invoke(() =>
|
|
|
|
{
|
|
|
|
Value = report.Percentage;
|
|
|
|
Text = $"Downloading... {report.Percentage}%";
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
await downloadTask;
|
|
|
|
|
|
|
|
// var downloadResult = await snackbarService.TryAsync(downloadTask, "Could not download file");
|
|
|
|
|
|
|
|
// Failed download handling
|
|
|
|
// if (downloadResult.Exception is not null)
|
|
|
|
// {
|
|
|
|
// // For exceptions other than ApiException or TaskCanceledException, log error
|
|
|
|
// var logLevel = downloadResult.Exception switch
|
|
|
|
// {
|
|
|
|
// HttpRequestException or ApiException or TaskCanceledException => LogLevel.Warn,
|
|
|
|
// _ => LogLevel.Error
|
|
|
|
// };
|
|
|
|
// Logger.Log(logLevel, downloadResult.Exception, "Error during model download");
|
|
|
|
//
|
|
|
|
// Text = "Download Failed";
|
|
|
|
// return;
|
|
|
|
//}
|
|
|
|
|
|
|
|
// When sha256 is available, validate the downloaded file
|
|
|
|
var fileExpectedSha256 = modelFile.Hashes.SHA256;
|
|
|
|
if (!string.IsNullOrEmpty(fileExpectedSha256))
|
|
|
|
{
|
|
|
|
var hashProgress = new Progress<ProgressReport>(progress =>
|
|
|
|
{
|
|
|
|
Value = progress.Percentage;
|
|
|
|
Text = $"Validating... {progress.Percentage}%";
|
|
|
|
});
|
|
|
|
var sha256 = await FileHash.GetSha256Async(downloadPath, hashProgress);
|
|
|
|
if (sha256 != fileExpectedSha256.ToLowerInvariant())
|
|
|
|
{
|
|
|
|
Text = "Import Failed!";
|
|
|
|
DelayedClearProgress(TimeSpan.FromMilliseconds(800));
|
|
|
|
// snackbarService.ShowSnackbarAsync(
|
|
|
|
// "This may be caused by network or server issues from CivitAI, please try again in a few minutes.",
|
|
|
|
// "Download failed hash validation").SafeFireAndForget();
|
|
|
|
Text = "Download Failed";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// snackbarService.ShowSnackbarAsync($"{model.Type} {model.Name} imported successfully!",
|
|
|
|
// "Import complete", ControlAppearance.Info).SafeFireAndForget();
|
|
|
|
}
|
|
|
|
|
|
|
|
IsIndeterminate = true;
|
|
|
|
|
|
|
|
// Save connected model info
|
|
|
|
var modelFileName = Path.GetFileNameWithoutExtension(modelFile.Name);
|
|
|
|
var modelInfo = new ConnectedModelInfo(CivitModel, modelVersion, modelFile, DateTime.UtcNow);
|
|
|
|
var modelInfoPath = Path.GetFullPath(Path.Combine(
|
|
|
|
downloadFolder, modelFileName + ConnectedModelInfo.FileExtension));
|
|
|
|
filesForCleanup.Add(modelInfoPath);
|
|
|
|
await modelInfo.SaveJsonToDirectory(downloadFolder, modelFileName);
|
|
|
|
|
|
|
|
// If available, save a model image
|
|
|
|
if (modelVersion.Images != null && modelVersion.Images.Any())
|
|
|
|
{
|
|
|
|
var image = modelVersion.Images[0];
|
|
|
|
var imageExtension = Path.GetExtension(image.Url).TrimStart('.');
|
|
|
|
if (imageExtension is "jpg" or "jpeg" or "png")
|
|
|
|
{
|
|
|
|
var imageDownloadPath = Path.GetFullPath(Path.Combine(downloadFolder, $"{modelFileName}.preview.{imageExtension}"));
|
|
|
|
filesForCleanup.Add(imageDownloadPath);
|
|
|
|
var imageTask = downloadService.DownloadToFileAsync(image.Url, imageDownloadPath);
|
|
|
|
// await snackbarService.TryAsync(imageTask, "Could not download preview image");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Successful - clear cleanup list
|
|
|
|
filesForCleanup.Clear();
|
|
|
|
|
|
|
|
Text = "Import complete!";
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
foreach (var file in filesForCleanup.Where(file => file.Exists))
|
|
|
|
{
|
|
|
|
file.Delete();
|
|
|
|
Logger.Info($"Download cleanup: Deleted file {file}");
|
|
|
|
}
|
|
|
|
IsIndeterminate = false;
|
|
|
|
Value = 100;
|
|
|
|
DelayedClearProgress(TimeSpan.FromMilliseconds(800));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void DelayedClearProgress(TimeSpan delay)
|
|
|
|
{
|
|
|
|
Task.Delay(delay).ContinueWith(_ =>
|
|
|
|
{
|
|
|
|
Text = string.Empty;
|
|
|
|
Value = 0;
|
|
|
|
IsImporting = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|