using System.Text.Json.Serialization; using StabilityMatrix.Core.Helper; namespace StabilityMatrix.Core.Models; /// /// Profile information for a user-installed package. /// public class InstalledPackage { // Unique ID for the installation public Guid Id { get; set; } // User defined name public string? DisplayName { get; set; } // Package name public string? PackageName { get; set; } // Package version public string? PackageVersion { get; set; } public string? InstalledBranch { get; set; } public string? DisplayVersion { get; set; } // Old type absolute path [Obsolete("Use LibraryPath instead. (Kept for migration)")] public string? Path { get; set; } /// /// Relative path from the library root. /// public string? LibraryPath { get; set; } /// /// Full path to the package, using LibraryPath and GlobalConfig.LibraryDir. /// [JsonIgnore] public string? FullPath => LibraryPath != null ? System.IO.Path.Combine(GlobalConfig.LibraryDir, LibraryPath) : null; public string? LaunchCommand { get; set; } public List? LaunchArgs { get; set; } public DateTimeOffset? LastUpdateCheck { get; set; } [JsonIgnore] public bool UpdateAvailable { get; set; } /// /// Get the path as a relative sub-path of the relative path. /// If not a sub-path, return null. /// public static string? GetSubPath(string relativeTo, string path) { var relativePath = System.IO.Path.GetRelativePath(relativeTo, path); // GetRelativePath returns the path if it's not relative if (relativePath == path) return null; // Further check if the path is a sub-path of the library var isSubPath = relativePath != "." && relativePath != ".." && !relativePath.StartsWith(".." + Environment.NewLine) && !System.IO.Path.IsPathRooted(relativePath); return isSubPath ? relativePath : null; } /// /// Migrates the old Path to the new LibraryPath. /// If libraryDirectory is null, GlobalConfig.LibraryDir is used. /// /// True if the path was migrated, false otherwise. public bool TryPureMigratePath(string? libraryDirectory = null) { #pragma warning disable CS0618 var oldPath = Path; #pragma warning restore CS0618 if (oldPath == null) return false; // Check if the path is a sub-path of the library var library = libraryDirectory ?? GlobalConfig.LibraryDir; var relativePath = GetSubPath(library, oldPath); // If so we migrate without any IO operations if (relativePath != null) { LibraryPath = relativePath; #pragma warning disable CS0618 Path = null; #pragma warning restore CS0618 return true; } return false; } /// /// Check if the old Path can be migrated to the new LibraryPath. /// /// /// public bool CanPureMigratePath(string? libraryDirectory = null) { #pragma warning disable CS0618 var oldPath = Path; #pragma warning restore CS0618 if (oldPath == null) return false; // Check if the path is a sub-path of the library var library = libraryDirectory ?? GlobalConfig.LibraryDir; var relativePath = GetSubPath(library, oldPath); return relativePath != null; } /// /// Migrate the old Path to the new LibraryPath. /// If libraryDirectory is null, GlobalConfig.LibraryDir is used. /// Will move the package directory to Library/Packages if not relative. /// public async Task MigratePath(string? libraryDirectory = null) { #pragma warning disable CS0618 var oldPath = Path; #pragma warning restore CS0618 if (oldPath == null) return; var libDir = libraryDirectory ?? GlobalConfig.LibraryDir; // if old package Path is same as new library, return if (oldPath.Replace(DisplayName, "") == libDir) { // Update the paths #pragma warning disable CS0618 Path = null; #pragma warning restore CS0618 LibraryPath = System.IO.Path.Combine("Packages", DisplayName); return; } // Try using pure migration first if (TryPureMigratePath(libraryDirectory)) return; // If not, we need to move the package directory var packageFolderName = new DirectoryInfo(oldPath).Name; // Get the new Library/Packages path var library = libraryDirectory ?? GlobalConfig.LibraryDir; var newPackagesDir = System.IO.Path.Combine(library, "Packages"); // Get the new target path var newPackagePath = System.IO.Path.Combine(newPackagesDir, packageFolderName); // Ensure it is not already there, if so, add a suffix until it's not var suffix = 2; while (Directory.Exists(newPackagePath)) { newPackagePath = System.IO.Path.Combine(newPackagesDir, $"{packageFolderName}-{suffix}"); suffix++; } // Move the package directory await Task.Run(() => Utilities.CopyDirectory(oldPath, newPackagePath, true)); // Update the paths #pragma warning disable CS0618 Path = null; #pragma warning restore CS0618 LibraryPath = System.IO.Path.Combine("Packages", packageFolderName); } protected bool Equals(InstalledPackage other) { return Id.Equals(other.Id); } public override bool Equals(object? obj) { if (ReferenceEquals(null, obj)) return false; if (ReferenceEquals(this, obj)) return true; return obj.GetType() == this.GetType() && Equals((InstalledPackage) obj); } public override int GetHashCode() { return Id.GetHashCode(); } }