Private/Invoke-ResolveDependency.ps1
<#
.SYNOPSIS Parse installed module based to get dependent module .PARAMETER InstalledLocation Path to installed location of the module .PARAMETER Credential Repository Credential .PARAMETER Repository Name of the repository .PARAMETER SkipImport When is set import-module will be skipped. #> function Invoke-ResolveDependency { [CmdLetBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = "Path to installed location of the module")] [string] $InstalledLocation, [Parameter(Mandatory=$false, HelpMessage = "Repository Credential")] [PSCredential] $Credential = $null, [Parameter(Mandatory=$false, HelpMessage = "Repository name")] [string] $Repository = $null, [Parameter(Mandatory = $false, HelpMessage = "When is set import-module will be skipped.")] [switch] $SkipImport ) $ErrorActionPreference = 'Stop' Write-Verbose '-- begin - Invoke-ResolveDependency --' Write-Verbose "InstalledLocation: $InstalledLocation" if($SkipImport.IsPresent) { Write-Verbose "SkipImport: True" } else { Write-Verbose "SkipImport: False" } $psdFiles = Get-ChildItem -Path $InstalledLocation -Filter *.psd1 -File foreach ($onePsdFile in $psdFiles) { $Manifest = Import-PowershellDataFile -LiteralPath $onePsdFile.FullName foreach ($onePrivateData in $Manifest.PrivateData) { foreach ($onePSData in $onePrivateData.PSData) { [Object[]] $ExternalModuleDependencies = $onePSData.ExternalModuleDependencies if([string]::IsNullOrEmpty($onePSData.Tags)) { [Object[]] $Tags = @() } else { [Object[]] $Tags = $onePSData.Tags } Write-Verbose "Number of dependent modules:$($ExternalModuleDependencies.count)" if(![string]::IsNullOrEmpty($ExternalModuleDependencies)) { foreach ($oneExternalModuleDependencies in $ExternalModuleDependencies) { if([string]::IsNullOrEmpty($oneExternalModuleDependencies)) { [Hashtable] $PSGalleryInstallParam = Get-VersionParamHelper ` -Module $oneExternalModuleDependencies ` -Verbose:$VerbosePreference ` -Debug:$DebugPreference Write-Verbose "PSGAlleryInstallParam: $(ConvertTo-Json $PSGalleryInstallParam)" Write-Verbose "PSGAlleryInstallParam.Name: $($PSGalleryInstallParam.Name)" [Hashtable] $PSGalleryInstallParamBasedOnTags = Get-ExternalDependenciesParamBasedOnTags ` -ModuleName $PSGAlleryInstallParam.Name ` -Tags $Tags ` -Verbose:$VerbosePreference ` -Debug:$DebugPreference Write-Verbose "Install prerequisity from PSGallery:" Write-Debug (ConvertTo-Json -InputObject $PSGalleryInstallParamBasedOnTags) Install-OriAzBopPrerequisity @PSGalleryInstallParamBasedOnTags ` -SkipImport:$SkipImport ` -AllowClobber:$True ` -SkipPublisherCheck:$True ` -Verbose:$VerbosePreference ` -Debug:$DebugPreference | Out-Null #Invoke-ModuleInstall @PSGAlleryInstallParam ` #-Verbose:$VerbosePreference ` #-Debug:$DebugPreference | Out-Null } } } } } foreach ($oneModule in $Manifest.RequiredModules) { $InstallParam = Get-VersionParamHelper -Module $oneModule ` -Verbose:$VerbosePreference ` -Debug:$DebugPreference if($null -ne $Credential) { $InstallParam += @{Credential = $Credential} } if($null -ne $Repository) { $InstallParam += @{Repository = $Repository} } Write-Debug (ConvertTo-Json -InputObject $InstallParam) Invoke-ModuleInstall @InstallParam ` -SkipImport:$SkipImport ` -Verbose:$VerbosePreference ` -Debug:$DebugPreference | Out-Null } } Write-Verbose '-- end - Invoke-ResolveDependency --' } |