Support/Package/State/Eigenverft.Manifested.Sandbox.Package.State.ps1
|
<#
Eigenverft.Manifested.Sandbox.Package.State #> function Get-PackageStateDirectorySummary { [CmdletBinding()] param( [AllowNull()] [string]$Path ) $exists = $false $childCount = 0 if (-not [string]::IsNullOrWhiteSpace($Path)) { $exists = Test-Path -LiteralPath $Path -PathType Container if ($exists) { $childCount = @( Get-ChildItem -LiteralPath $Path -Force -ErrorAction SilentlyContinue ).Count } } return [pscustomobject]@{ Path = $Path Exists = $exists ChildCount = $childCount } } function Test-PackageStateLeafPath { [CmdletBinding()] param( [AllowNull()] [string]$Path ) if ([string]::IsNullOrWhiteSpace($Path)) { return $false } return (Test-Path -LiteralPath $Path -PathType Leaf) } function Select-PackageStateOwnershipRecord { [CmdletBinding()] param( [Parameter(Mandatory = $true)] [object]$Record ) $installDirectory = [string]$Record.installDirectory $installDirectoryExists = $false if (-not [string]::IsNullOrWhiteSpace($installDirectory)) { $installDirectoryExists = Test-Path -LiteralPath $installDirectory -PathType Container } $pathRegistration = $null if ($Record.PSObject.Properties['pathRegistration'] -and $null -ne $Record.pathRegistration) { $sourcePath = [string]$Record.pathRegistration.sourcePath $registeredPath = [string]$Record.pathRegistration.registeredPath $registeredPathExists = $false if (-not [string]::IsNullOrWhiteSpace($registeredPath)) { $registeredPathExists = Test-Path -LiteralPath $registeredPath -PathType Container } $pathRegistration = [pscustomobject]@{ Mode = $Record.pathRegistration.mode SourceKind = $Record.pathRegistration.sourceKind SourceValue = $Record.pathRegistration.sourceValue SourceValues = @($Record.pathRegistration.sourceValues) SourcePath = $sourcePath SourcePathExists = Test-PackageStateLeafPath -Path $sourcePath RegisteredPath = $registeredPath RegisteredPathExists = $registeredPathExists Status = $Record.pathRegistration.status } } $dependencyInstallSlotIds = if ($Record.PSObject.Properties['dependencyInstallSlotIds'] -and $null -ne $Record.dependencyInstallSlotIds) { @($Record.dependencyInstallSlotIds | ForEach-Object { [string]$_ }) } else { @() } return [pscustomobject]@{ InstallSlotId = $Record.installSlotId DefinitionId = $Record.definitionId DefinitionRepositoryId = $Record.definitionRepositoryId DefinitionFileName = $Record.definitionFileName DefinitionSourceKind = if ($Record.PSObject.Properties['definitionSourceKind']) { $Record.definitionSourceKind } else { $null } DefinitionSourcePath = $Record.definitionSourcePath DefinitionSourceHash = if ($Record.PSObject.Properties['definitionSourceHash']) { $Record.definitionSourceHash } else { $null } DefinitionSnapshotPath = if ($Record.PSObject.Properties['definitionSnapshotPath']) { $Record.definitionSnapshotPath } elseif ($Record.PSObject.Properties['definitionLocalPath']) { $Record.definitionLocalPath } else { $null } DefinitionSnapshotHash = if ($Record.PSObject.Properties['definitionSnapshotHash']) { $Record.definitionSnapshotHash } else { $null } DefinitionSnapshotExists = Test-PackageStateLeafPath -Path $(if ($Record.PSObject.Properties['definitionSnapshotPath']) { [string]$Record.definitionSnapshotPath } elseif ($Record.PSObject.Properties['definitionLocalPath']) { [string]$Record.definitionLocalPath } else { $null }) DefinitionResolvedAtUtc = if ($Record.PSObject.Properties['definitionResolvedAtUtc']) { $Record.definitionResolvedAtUtc } else { $null } ReleaseTrack = $Record.releaseTrack ArtifactDistributionVariant = $Record.artifactDistributionVariant CurrentReleaseId = $Record.currentReleaseId CurrentVersion = $Record.currentVersion InstallDirectory = $installDirectory InstallDirectoryExists = $installDirectoryExists OwnershipKind = $Record.ownershipKind PathRegistration = $pathRegistration DependencyInstallSlotIds = @($dependencyInstallSlotIds) UpdatedAtUtc = $Record.updatedAtUtc } } function Get-PackageStateConfig { [CmdletBinding()] param() $globalDocumentInfo = Read-PackageJsonDocument -Path (Get-PackageGlobalConfigPath) Assert-PackageGlobalConfigSchema -GlobalDocumentInfo $globalDocumentInfo $packageGlobalConfig = $globalDocumentInfo.Document.package $applicationRootDirectory = Resolve-PackageApplicationRootDirectory -GlobalConfiguration $packageGlobalConfig $repositoryInventoryInfo = Get-PackageRepositoryInventoryInfo $depotInventoryInfo = Get-PackageDepotInventoryInfo $sourceInventoryInfo = Get-PackageSourceInventoryInfo -ApplicationRootDirectory $applicationRootDirectory $effectiveAcquisitionEnvironment = Resolve-PackageEffectiveAcquisitionEnvironment -GlobalConfiguration $packageGlobalConfig -SourceInventoryInfo $sourceInventoryInfo -DepotInventoryInfo $depotInventoryInfo $preferredTargetInstallDirectory = if ($packageGlobalConfig.PSObject.Properties['preferredTargetInstallDirectory'] -and -not [string]::IsNullOrWhiteSpace([string]$packageGlobalConfig.preferredTargetInstallDirectory)) { Resolve-PackageConfiguredPath -PathValue ([string]$packageGlobalConfig.preferredTargetInstallDirectory) -ApplicationRootDirectory $applicationRootDirectory } else { Resolve-PackageConfiguredPath -PathValue 'Inst' -ApplicationRootDirectory $applicationRootDirectory } $packageInventoryFilePath = if ($packageGlobalConfig.packageState.PSObject.Properties['inventoryFilePath'] -and -not [string]::IsNullOrWhiteSpace([string]$packageGlobalConfig.packageState.inventoryFilePath)) { Resolve-PackageConfiguredPath -PathValue ([string]$packageGlobalConfig.packageState.inventoryFilePath) -ApplicationRootDirectory $applicationRootDirectory } else { Resolve-PackageConfiguredPath -PathValue 'State\package-inventory.json' -ApplicationRootDirectory $applicationRootDirectory } $packageOperationHistoryFilePath = if ($packageGlobalConfig.packageState.PSObject.Properties['operationHistoryFilePath'] -and -not [string]::IsNullOrWhiteSpace([string]$packageGlobalConfig.packageState.operationHistoryFilePath)) { Resolve-PackageConfiguredPath -PathValue ([string]$packageGlobalConfig.packageState.operationHistoryFilePath) -ApplicationRootDirectory $applicationRootDirectory } else { Resolve-PackageConfiguredPath -PathValue 'State\package-operation-history.json' -ApplicationRootDirectory $applicationRootDirectory } $localRepositoryRoot = if ($packageGlobalConfig.PSObject.Properties['localRepositoryRoot'] -and -not [string]::IsNullOrWhiteSpace([string]$packageGlobalConfig.localRepositoryRoot)) { Resolve-PackageConfiguredPath -PathValue ([string]$packageGlobalConfig.localRepositoryRoot) -ApplicationRootDirectory $applicationRootDirectory } else { Resolve-PackageConfiguredPath -PathValue 'PackageRepositories' -ApplicationRootDirectory $applicationRootDirectory } $shimDirectory = if ($packageGlobalConfig.PSObject.Properties['shimDirectory'] -and -not [string]::IsNullOrWhiteSpace([string]$packageGlobalConfig.shimDirectory)) { Resolve-PackageConfiguredPath -PathValue ([string]$packageGlobalConfig.shimDirectory) -ApplicationRootDirectory $applicationRootDirectory } else { Resolve-PackageConfiguredPath -PathValue 'Shims' -ApplicationRootDirectory $applicationRootDirectory } return [pscustomobject]@{ GlobalConfigurationPath = $globalDocumentInfo.Path GlobalConfiguration = $packageGlobalConfig ApplicationRootDirectory = $applicationRootDirectory LocalConfigurationPath = Get-PackageLocalGlobalConfigPath LocalRepositoryInventoryPath = Get-PackageLocalRepositoryInventoryPath RepositoryInventoryPath = $repositoryInventoryInfo.Path RepositoryInventory = $repositoryInventoryInfo.Document RepositoryInventoryInfo = $repositoryInventoryInfo LocalDepotInventoryPath = Get-PackageLocalDepotInventoryPath DepotInventoryPath = $effectiveAcquisitionEnvironment.DepotInventoryPath DepotInventory = $depotInventoryInfo.Document DepotInventoryInfo = $depotInventoryInfo SourceInventoryPath = $effectiveAcquisitionEnvironment.SourceInventoryPath SourceInventory = $sourceInventoryInfo.Document SourceInventoryInfo = $sourceInventoryInfo EffectiveAcquisitionEnvironment = $effectiveAcquisitionEnvironment PackageFileStagingRootDirectory = $effectiveAcquisitionEnvironment.Stores.PackageFileStagingDirectory PackageInstallStageRootDirectory = $effectiveAcquisitionEnvironment.Stores.PackageInstallStageDirectory DefaultPackageDepotDirectory = $effectiveAcquisitionEnvironment.Stores.DefaultPackageDepotDirectory PreferredTargetInstallRootDirectory = $preferredTargetInstallDirectory LocalRepositoryRoot = $localRepositoryRoot ShimDirectory = $shimDirectory PackageInventoryFilePath = $packageInventoryFilePath PackageOperationHistoryFilePath = $packageOperationHistoryFilePath EnvironmentSources = $effectiveAcquisitionEnvironment.EnvironmentSources } } |