From e16538811708a779c7b39dc212685ff804490191 Mon Sep 17 00:00:00 2001 From: MyDrift Date: Tue, 1 Oct 2024 22:23:36 +0200 Subject: [PATCH] [IMPEX] add link support (#2815) * rework impex - rework impex - add link logic * add error handling --- functions/public/Invoke-WPFImpex.ps1 | 77 +++++++++++++++++----------- 1 file changed, 46 insertions(+), 31 deletions(-) diff --git a/functions/public/Invoke-WPFImpex.ps1 b/functions/public/Invoke-WPFImpex.ps1 index 43d835de..83f1887f 100644 --- a/functions/public/Invoke-WPFImpex.ps1 +++ b/functions/public/Invoke-WPFImpex.ps1 @@ -19,44 +19,59 @@ function Invoke-WPFImpex { $Config = $null ) - if ($type -eq "export") { - $FileBrowser = New-Object System.Windows.Forms.SaveFileDialog - } - if ($type -eq "import") { - $FileBrowser = New-Object System.Windows.Forms.OpenFileDialog - } + function ConfigDialog { + if (!$Config) { + switch ($type) { + "export" { $FileBrowser = New-Object System.Windows.Forms.SaveFileDialog } + "import" { $FileBrowser = New-Object System.Windows.Forms.OpenFileDialog } + } + $FileBrowser.InitialDirectory = [Environment]::GetFolderPath('Desktop') + $FileBrowser.Filter = "JSON Files (*.json)|*.json" + $FileBrowser.ShowDialog() | Out-Null - if (-not $Config) { - $FileBrowser.InitialDirectory = [Environment]::GetFolderPath('Desktop') - $FileBrowser.Filter = "JSON Files (*.json)|*.json" - $FileBrowser.ShowDialog() | Out-Null - - if($FileBrowser.FileName -eq "") { - return + if ($FileBrowser.FileName -eq "") { + return $null + } else { + return $FileBrowser.FileName + } } else { - $Config = $FileBrowser.FileName + return $Config } } - if ($type -eq "export") { - $jsonFile = Get-WinUtilCheckBoxes -unCheck $false - $jsonFile | ConvertTo-Json | Out-File $FileBrowser.FileName -Force - $runscript = "iex ""& { `$(irm christitus.com/win) } -Config '$($FileBrowser.FileName)'""" - $runscript | Set-Clipboard - } - if ($type -eq "import") { - $jsonFile = Get-Content $Config | ConvertFrom-Json - - $flattenedJson = @() - $jsonFile.PSObject.Properties | ForEach-Object { - $category = $_.Name - foreach ($checkboxName in $_.Value) { - if ($category -ne "Install") { - $flattenedJson += $checkboxName + switch ($type) { + "export" { + try { + $Config = ConfigDialog + if ($Config) { + $jsonFile = Get-WinUtilCheckBoxes -unCheck $false | ConvertTo-Json + $jsonFile | Out-File $Config -Force + "iex ""& { `$(irm christitus.com/win) } -Config '$Config'""" | Set-Clipboard } + } catch { + Write-Error "An error occurred while exporting: $_" + } + } + "import" { + try { + $Config = ConfigDialog + if ($Config) { + try { + if ($Config -match '^https?://') { + $jsonFile = (Invoke-WebRequest "$Config").Content | ConvertFrom-Json + } else { + $jsonFile = Get-Content $Config | ConvertFrom-Json + } + } catch { + Write-Error "Failed to load the JSON file from the specified path or URL: $_" + return + } + $flattenedJson = $jsonFile.PSObject.Properties.Where({ $_.Name -ne "Install" }).ForEach({ $_.Value }) + Invoke-WPFPresets -preset $flattenedJson -imported $true + } + } catch { + Write-Error "An error occurred while importing: $_" } } - - Invoke-WPFPresets -preset $flattenedJson -imported $true } }