Functions/Solutions/Import-CdsSolution.ps1
<#
.SYNOPSIS Import solution. #> function Import-CdsSolution { [CmdletBinding()] param ( [Parameter(Mandatory=$false, ValueFromPipeline)] [Microsoft.Xrm.Tooling.Connector.CrmServiceClient] $CdsClient = $Global:CdsClient, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [String] $SolutionUniqueName, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [ValidateScript( { Test-Path $_ })] [String] $SolutionFilePath, [Parameter(Mandatory = $false)] [Boolean] $PublishWorkflows = $true, [Parameter(Mandatory = $false)] [Boolean] $OverwriteUnmanagedCustomizations = $true, [Parameter(Mandatory = $false)] [Boolean] $ConvertToManaged = $false, [Parameter(Mandatory = $false)] [Boolean] $Upgrade = $false ) begin { $StopWatch = [System.Diagnostics.Stopwatch]::StartNew(); Trace-CdsFunction -Name $MyInvocation.MyCommand.Name -Stage Start -Parameters ($MyInvocation.MyCommand.Parameters); } process { # Retrieve solution content $solutionContent = [System.IO.File]::ReadAllBytes($SolutionFilePath); # Initialize import solution request $importJobId = New-Guid; $importSolutionRequest = New-CdsRequest -Name "ImportSolution"; $importSolutionRequest | Add-CdsRequestParameter -Name "ImportJobId" -Value $importJobId | Out-Null; $importSolutionRequest | Add-CdsRequestParameter -Name "CustomizationFile" -Value $solutionContent | Out-Null; $importSolutionRequest | Add-CdsRequestParameter -Name "PublishWorkflows" -Value $PublishWorkflows | Out-Null; $importSolutionRequest | Add-CdsRequestParameter -Name "OverwriteUnmanagedCustomizations" -Value $OverwriteUnmanagedCustomizations | Out-Null; $importSolutionRequest | Add-CdsRequestParameter -Name "ConvertToManaged" -Value $ConvertToManaged | Out-Null; if($Upgrade) { $importSolutionRequest | Add-CdsRequestParameter -Name "HoldingSolution" -Value $Upgrade | Out-Null; } try { $importSolutionResponse = $CdsClient | Invoke-CdsRequest -Request $importSolutionRequest -Async; $asyncOperationId = $importSolutionResponse.AsyncJobId; $importJob = $null; $lastProgressValue = $null; Watch-CdsAsynchOperation -AsyncOperationId $asyncOperationId -ScriptBlock { param($asyncOperation) try { $importJob = $CdsClient | Get-CdsRecord -LogicalName "importjob" -Id $importJobId -Columns "completedon", "data", "progress"; } catch { # First import job retrieve could failed if the delay is too short return; } if ($importJob.progress -ne $lastProgressValue) { Write-HostAndLog " > $SolutionUniqueName import in progress... ($($importJob.progress) %)" -ForegroundColor Cyan; Write-Progress -Activity $($MyInvocation.MyCommand.Name) -Status "Importing solution $SolutionUniqueName...($($importJob.progress) %)" -PercentComplete $importJob.progress_Value; } $lastProgressValue = $importJob.progress; } $importJob = $CdsClient | Get-CdsRecord -LogicalName "importjob" -Id $importJobId -Columns "completedon", "data", "progress"; $xmlData = [xml] $importJob.data; $resultNode = $xmlData.importexportxml.solutionManifests.solutionManifest.result; if ($resultNode.result -eq "failure") { throw "$($resultNode.errorcode): $($resultNode.errortext)"; } } catch { $errorMessage = $_.Exception.Message; Write-HostAndLog "$($MyInvocation.MyCommand.Name) => KO : [Error: $errorMessage]" -ForegroundColor Red -Level FAIL; write-progress one one -completed; throw $errorMessage; } if($Upgrade) { Start-CdsSolutionUpgrade -SolutionUniqueName $SolutionUniqueName; } } end { $StopWatch.Stop(); Trace-CdsFunction -Name $MyInvocation.MyCommand.Name -Stage Stop -StopWatch $StopWatch; } } Export-ModuleMember -Function Import-CdsSolution -Alias *; |