Skip to content

Commit 7da895d

Browse files
updates
1 parent 610a74f commit 7da895d

File tree

2 files changed

+106
-3
lines changed

2 files changed

+106
-3
lines changed

PSFramework.NuGet/internal/functions/Get/Publish/Copy-Module.ps1

+60-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,73 @@
77
[string]
88
$Destination,
99

10-
$Cmdlet,
10+
$Cmdlet = $PSCmdlet,
1111

1212
[switch]
1313
$Continue,
1414

1515
[string]
1616
$ContinueLabel
1717
)
18+
begin {
19+
$killIt = $ErrorActionPreference -eq 'Stop'
20+
$stopCommon = @{
21+
Cmdlet = $Cmdlet
22+
EnableException = $killIt
23+
}
24+
if ($Continue) { $stopCommon.Continue = $true }
25+
if ($ContinueLabel) { $stopCommon.ContinueLabel = $ContinueLabel }
26+
}
1827
process {
19-
#TODO: Implement
20-
throw "Not Implemented Yet"
28+
$sourceDirectoryPath = $Path
29+
if ($Path -like '*.psd1') { $sourceDirectoryPath = Split-Path -Path $Path }
30+
31+
$moduleName = Split-Path -Path $sourceDirectoryPath -Leaf
32+
if ($moduleName -match '^\d+(\.\d+){1,3}$') {
33+
$moduleName = Split-Path -Path (Split-Path -Path $sourceDirectoryPath) -Leaf
34+
}
35+
36+
#region Validation
37+
$manifestPath = Join-Path -Path $sourceDirectoryPath -ChildPath "$moduleName.psd1"
38+
if (-not (Test-Path -Path $manifestPath)) {
39+
Stop-PSFFunction -String 'Copy-Module.Error.ManifestNotFound' -StringValues $Path -Target $Path @stopCommon -Category ObjectNotFound
40+
return
41+
}
42+
43+
$tokens = $null
44+
$errors = $null
45+
$ast = [System.Management.Automation.Language.Parser]::ParseFile($manifestPath, [ref]$tokens, [ref]$errors)
46+
47+
if ($errors) {
48+
Stop-PSFFunction -String 'Copy-Module.Error.ManifestSyntaxError' -StringValues $Path -Target $Path @stopCommon -Category ObjectNotFound
49+
return
50+
}
51+
#endregion Validation
52+
53+
#region Deploy to Staging
54+
try { $null = New-Item -Path $Destination -Name $moduleName -ItemType Directory -ErrorAction Stop }
55+
catch {
56+
Stop-PSFFunction -String 'Copy-Module.Error.StagingFolderFailed' -StringValues $Path -Target $Path @stopCommon -ErrorRecord $_
57+
return
58+
}
59+
60+
$destinationPath = Join-Path -Path $Destination -ChildPath $moduleName
61+
try { Copy-Item -Path "$($sourceDirectoryPath.Trim('\/'))\*" Destination $destinationPath -Recurse -Force -ErrorAction Stop }
62+
catch {
63+
Stop-PSFFunction -String 'Copy-Module.Error.StagingFolderCopy' -StringValues $Path -Target $Path @stopCommon -ErrorRecord $_
64+
return
65+
}
66+
#endregion Deploy to Staging
67+
68+
$hashtableAst = $ast.EndBlock.Statements[0].PipelineElements[0].Expression
69+
[PSCustomObject]@{
70+
Name = $moduleNamee
71+
Path = $destinationPath
72+
SourcePath = $sourceDirectoryPath
73+
Author = @($hashtableAst.KeyValuePairs).Where{ $_.Item1.Value -eq 'Author' }.Item2.PipelineElements.Expression.Value
74+
Version = @($hashtableAst.KeyValuePairs).Where{ $_.Item1.Value -eq 'ModuleVersion' }.Item2.PipelineElements.Expression.Value
75+
Description = @($hashtableAst.KeyValuePairs).Where{ $_.Item1.Value -eq 'Description' }.Item2.PipelineElements.Expression.Value
76+
RequiredModules = Read-ManifestDependency -Path $manifestPath
77+
}
2178
}
2279
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
function Read-ManifestDependency {
2+
[CmdletBinding()]
3+
param (
4+
[Parameter(Mandatory = $true)]
5+
[string]
6+
$Path
7+
)
8+
process {
9+
$tokens = $null
10+
$errors = $null
11+
$ast = [System.Management.Automation.Language.Parser]::ParseFile($Path, [ref]$tokens, [ref]$errors)
12+
13+
$requirements = foreach ($requirement in @($ast.EndBlock.Statements[0].PipelineElements[0].Expression.KeyValuePairs).Where{ $_.Item1.Value -eq 'RequiredModules' }.Item2.PipelineElements.Expression.SubExpression.Statements) {
14+
$actualRequirement = $requirement.PipelineElements[0].Expression
15+
switch ($actualRequirement.GetType().Name) {
16+
'HashtableAst' {
17+
[PSCustomObject]@{
18+
Name = $actualRequirement.KeyValuePairs.Where{ $_.Item1.Value -eq 'ModuleName' }.Item2.PipelineElements.Expression.Value
19+
Version = $actualRequirement.KeyValuePairs.Where{ $_.Item1.Value -match 'Version$' }.Item2.PipelineElements.Expression.Value -as [version]
20+
Exact = $actualRequirement.KeyValuePairs.Item1.Value -contains 'RequiredVersion'
21+
}
22+
}
23+
'StringConstantExpressionAst' {
24+
[PSCustomObject]@{
25+
Name = $actualRequirement.Value
26+
Version = '0.0.0' -as [version]
27+
Exact = $false
28+
}
29+
}
30+
default {
31+
throw "Unexpected Module Dependency AST in $Path : $($actualRequirement.GetType().Name)"
32+
}
33+
}
34+
}
35+
foreach ($requirement in $requirements) {
36+
if ($requirement.Exact -and -not $requirement.Version) {
37+
Write-PSFMessage -Level Warning -String 'Read-ManifestDependency.Warning.VersionError' -StringValues $Path, $requirement.Name
38+
}
39+
if (-not $requirement.Version) {
40+
$requirement.Version = '0.0.0' -as [version]
41+
}
42+
43+
$requirement
44+
}
45+
}
46+
}

0 commit comments

Comments
 (0)