7
7
[string ]
8
8
$Destination ,
9
9
10
- $Cmdlet ,
10
+ $Cmdlet = $PSCmdlet ,
11
11
12
12
[switch ]
13
13
$Continue ,
14
14
15
15
[string ]
16
16
$ContinueLabel
17
17
)
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
+ }
18
27
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
+ }
21
78
}
22
79
}
0 commit comments