NpmPS.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 |
$Script:PSModuleRoot = $PSScriptRoot # Importing from [/home/vsts/work/1/s/NpmPS\Public] # ./NpmPS/Public/Get-NpmPackageInfo.ps1 function Get-NpmPackageInfo { <# .Synopsis Get package info from NPM registry .Example Get-NpmPackageInfo -Name contoso-component -Registry 'http://contoso.local/npm' .Notes #> [cmdletbinding()] param( # Name of the npm package [Alias('PackageName')] [Parameter( Mandatory, Position = 0, ValueFromPipelineByPropertyName )] [ValidateNotNullOrEmpty()] [String] $Name, # NPM registry uri [Alias('URI','Repository')] [Parameter( Mandatory, Position = 1, ValueFromPipelineByPropertyName )] [ValidateNotNullOrEmpty()] [String] $Registry ) process { try { # need trailing slash on registry name if ( $Registry -notmatch '/$' ) { $Registry = "$Registry/" } $uri = "{0}{1}" -f $Registry, $Name Invoke-RestMethod -Uri $uri } catch { $PSCmdlet.ThrowTerminatingError( $PSItem ) } } } # ./NpmPS/Public/Publish-NpmPackage.ps1 function Publish-NpmPackage { <# .Synopsis Publishes a npm package .Example $registry = 'https://contoso.local/npm' $credential = Get-Credential $publishLDNpmPackageSplat = @{ Credential = $credential Email = user@contoso.com Path = $path Registry = $registry Version = '0.1.0-rc.1' Tag = 'testrelease' } Publish-NpmPackage @publishLDNpmPackageSplat .Notes #> [cmdletbinding()] param( # Location of the package.json [Parameter( Mandatory, Position = 0, ValueFromPipelineByPropertyName )] [ValidateNotNullOrEmpty()] [String] $Path, # NPM Registry to publish [Alias('Repository')] [String] $Registry, # Username and API Token as password [PSCredential] $Credential, [String] $Email, # SemVer [String] $Version, # tags to set when publishing [Alias('Tags')] [String[]] $Tag, # Force publish even if package already exists [Switch] $Force ) begin { $npmProtocolRegex = '^https?:' } process { try { $Path = $Path -replace '\\\\[\w\d-]*\\(\w)\$', '$1:' if ( -not ( Test-Path -Path $Path ) ) { Write-Error "Could not find [$Path] or access is denied" -ErrorAction Stop } elseif ( Test-Path -Path $Path -PathType Leaf ) { $Path = Split-Path -Path $Path } $package = Join-Path -Path $Path -ChildPath 'package.json' if ( -not ( Test-Path -Path $package ) ) { Write-Error "Could not find NPM Package [$package] or access is denied" -ErrorAction Stop } if ( $Registry -notmatch $npmProtocolRegex ) { Write-Error "Registry URI [$Registry] is not valid. Should match regex pattern [$npmProtocolRegex]" -ErrorAction Stop } Write-Verbose "Deploying package from path [$path]" Push-Location -Path $Path -StackName PublishNpmPackage Write-Verbose "Working directory [$pwd]" if ( ![string]::IsNullOrEmpty( $Version ) ) { if ($Version -notmatch '^v?\d+\.\d+(\.\d+)?') { Write-Error "Version [$Version] is not a valid SemVer" -ErrorAction 'Stop' } # ProGet needs to use period instead of plus for semver $Version -replace '\+', '.' $json = Get-Content $package -Raw | ConvertFrom-LDJson -ErrorAction Stop $json.version = $Version Write-Verbose "Set version to [{0}]" -f $json.version $json | Format-LDJson | Set-Content -Path $package -Encoding UTF8 } Write-Verbose "Contents of [$package]:" $packageData = Get-Content -Path $package -Raw $packageObject = $packageData | ConvertFrom-JSON Write-Verbose "Package version [$($packageObject.Version)]" Write-Verbose "Checking to see if package is already published" if ( Test-NpmPackage -Name $packageObject.name -Version $packageObject.version ) { Write-Verbose 'This package is already published' if ( !$Force ) { return } Write-Warning "This version of the package is already published. This will invalidate existing checksums for this version." } Write-Verbose "NPM Version [$(npm --version)]" $password = $Credential.GetNetworkCredential().password # need trailing slash on registry name if ( $Registry -notmatch '/$' ) { $Registry = "$Registry/" } # need registry without protocol prefix $shortRegName = $Registry -replace $npmProtocolRegex $config = @" registry=${Registry} ${shortRegName}:_password=$password ${shortRegName}:username=$($credential.username) ${shortRegName}:email=$Email ${shortRegName}:always-auth=false "@ $configPath = Join-Path $pwd -ChildPath '.npmrc' Write-Verbose "Saving registry info to project local config [$configPath]" Set-Content -Path $configPath -Value $config Write-Verbose "Running [npm config list]" npm config list if ( $null -eq $PSBoundParameters.Tag ) { Write-Verbose "Running [npm publish]" npm publish -tag prerelease } else { Write-Verbose "Publishing with tags [$( $Tag -join ',' )]" foreach ($publishTag in $Tag) { Write-Verbose "Running [npm publish -tag $publishTag]" npm publish -tag $publishTag } } if ( Test-NpmPackage -Name $packageObject.name -Version $packageObject.version ) { Write-Verbose 'This package is now available in the registry' } else { Write-Error "This published package could not be found in the registry [$registry]" } } catch { $PSCmdlet.ThrowTerminatingError( $PSItem ) } finally { Pop-Location -StackName PublishNpmPackage } } } # ./NpmPS/Public/Test-NpmPackage.ps1 function Test-NpmPackage { <# .Synopsis Tests to see if specified package is already published .Example $Name = 'contoso-component' $Registry = 'http://contoso.local/npm/' Test-NpmPackage -Name $Name -Registry $Registry .Example $Name = 'contoso-component' $Registry = 'http://contoso.local/npm/' Test-NpmPackage -Name $Name -Registry $Registry -Version 0.0.1 -Tag Latest .Notes #> [cmdletbinding()] param( # Name of the npm package [Alias('PackageName')] [Parameter( Mandatory, Position = 0, ValueFromPipelineByPropertyName )] [ValidateNotNullOrEmpty()] [String] $Name, # NPM Registry uri [Alias('URI','Repository')] [Parameter( Mandatory, Position = 1, ValueFromPipelineByPropertyName )] [ValidateNotNullOrEmpty()] [String] $Registry, # NPM Package Version [Parameter( Position = 2, ValueFromPipelineByPropertyName )] [String] $Version, # Package tag [Parameter( Position = 3, ValueFromPipelineByPropertyName )] [String] $Tag ) process { try { try { Write-Verbose "Querying for [$Name] in [$Registry]" $package = Get-NpmPackageInfo -Name $Name -Registry $Registry -ErrorAction Stop } catch { Write-Verbose 'Was not able to connect to registry or find the package' Write-Verbose $PSItem return $false } if ( $null -eq $package ) { Write-Verbose 'No package was found' return $false } if ( ![String]::IsNullOrEmpty( $Version ) ) { if ( $null -eq $package.versions ) { Write-Verbose "This package does not have a version" return $false } if ( -not $package.versions.$Version ) { Write-Verbose "This package version [$Version] was not found" return $false } } if ( ![String]::IsNullOrEmpty( $Tag ) ) { if ( $null -eq $package.'dist-tags' -or @($package.'dist-tags').count -lt 1 ) { Write-Verbose "This package does not have a tag" return $false } if ( -not $package.'dist-tags'.$Tag ) { Write-Verbose "This package tag [$Tag] was not found" return $false } } if ( ![String]::IsNullOrEmpty( $Version ) -and ![String]::IsNullOrEmpty( $Tag ) ) { if ( $package.'dist-tags'.$Tag -ne $Version ) { Write-Verbose ( "This package has tag [{0}][{1}] but did not match version [{2}]" -f $Tag,$package.'dist-tags'[$Tag],$Version ) return $false } } $true } catch { $PSCmdlet.ThrowTerminatingError( $PSItem ) } } } |