forked from chocolatey/choco-quickstart-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathC4B-Environment.psm1
2336 lines (1894 loc) · 67.3 KB
/
C4B-Environment.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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Helper Functions for the various QSG scripts
function Invoke-Choco {
[CmdletBinding()]
param(
[Parameter(Position=0)]
[string]$Command,
[Parameter(Position=1, ValueFromRemainingArguments)]
[string[]]$Arguments,
[int[]]$ValidExitCodes = @(0)
)
if ($Command -eq 'Install' -and $Arguments -notmatch '\b-(y|-confirm)\b') {
$Arguments += '--confirm'
}
if ($Arguments -notmatch '\b-(r|-limitoutput|-limit-output)\b') {
$Arguments += '--limit-output'
}
$chocoPath = if ($CommandPath = Get-Command choco.exe -ErrorAction SilentlyContinue) {
$CommandPath.Source
} elseif ($env:ChocolateyInstall) {
Join-Path $env:ChocolateyInstall "choco.exe"
} elseif (Test-Path C:\ProgramData\chocolatey\choco.exe) {
"C:\ProgramData\chocolatey\choco.exe"
} else {
Write-Error "Could not find 'choco.exe' - unexpected behaviour is expected!"
"choco.exe"
}
& $chocoPath $Command $Arguments | Tee-Object -Variable Result | Where-Object {$_} | ForEach-Object {
Write-Information -MessageData $_ -Tags Choco
}
if ($LASTEXITCODE -notin $ValidExitCodes) {
Write-Error -Message "$($Result[-5..-1] -join "`n")" -TargetObject "choco $Command $Arguments"
}
}
Update-TypeData -TypeName SecureString -MemberType ScriptMethod -MemberName ToPlainText -Force -Value {
[System.Net.NetworkCredential]::new("TempCredential", $this).Password
}
#region Package functions (OfflineInstallPreparation.ps1)
if (-not ("System.IO.Compression.ZipArchive" -as [type])) {
Add-Type -Assembly 'System.IO.Compression'
}
function Find-FileInArchive {
<#
.Synopsis
Finds files with a name matching a pattern in an archive.
.Example
Find-FileInArchive -Path "C:\Archive.zip" -like "tools/files/*-x86.exe"
.Example
Find-FileInArchive -Path $Nupkg -match "tools/files/dotnetcore-sdk-(?<Version>\d+\.\d+\.\d+)-win-x86\.exe(\.ignore)?"
.Notes
Please be aware that this matches against the full name of the file, not just the file name.
Though given that, you can easily write something to match the file name.
#>
[CmdletBinding(DefaultParameterSetName = "match")]
param(
# Path to the archive
[Parameter(Mandatory)]
[string]$Path,
# Pattern to match with regex
[Parameter(Mandatory, ValueFromPipeline, ParameterSetName = "match")]
[string]$match,
# Pattern to match with basic globbing
[Parameter(Mandatory, ParameterSetName = "like")]
[string]$like
)
begin {
while (-not $Zip -and $AccessRetries++ -lt 3) {
try {
$Stream = [IO.FileStream]::new($Path, [IO.FileMode]::Open)
$Zip = [IO.Compression.ZipArchive]::new($Stream, [IO.Compression.ZipArchiveMode]::Read)
} catch [System.IO.IOException] {
if ($AccessRetries -ge 3) {
Write-Error -Message "Accessing '$Path' failed after $AccessRetries attempts." -TargetObject $Path
} else {
Write-Information "Could not access '$Path', retrying..."
Start-Sleep -Milliseconds 500
}
}
}
}
process {
if ($Zip) {
# Improve "security"?
$WhereBlock = [ScriptBlock]::Create("`$_.FullName -$($PSCmdlet.ParameterSetName) '$(Get-Variable -Name $PSCmdlet.ParameterSetName -ValueOnly)'")
$Zip.Entries | Where-Object -FilterScript $WhereBlock
}
}
end {
if ($Zip) {
$Zip.Dispose()
}
if ($Stream) {
$Stream.Close()
$Stream.Dispose()
}
}
}
function Get-FileContentInArchive {
<#
.Synopsis
Returns the content of a file from within an archive
.Example
Get-FileContentInArchive -Path $ZipPath -Name "chocolateyInstall.ps1"
.Example
Get-FileContentInArchive -Zip $Zip -FullName "tools\chocolateyInstall.ps1"
.Example
Find-FileInArchive -Path $ZipPath -Like *.nuspec | Get-FileContentInArchive
#>
[CmdletBinding(DefaultParameterSetName = "PathFullName")]
[OutputType([string])]
param(
# Path to the archive
[Parameter(Mandatory, ParameterSetName = "PathFullName")]
[Parameter(Mandatory, ParameterSetName = "PathName")]
[string]$Path,
# Zip object for the archive
[Parameter(Mandatory, ParameterSetName = "ZipFullName", ValueFromPipelineByPropertyName)]
[Parameter(Mandatory, ParameterSetName = "ZipName", ValueFromPipelineByPropertyName)]
[Alias("Archive")]
[IO.Compression.ZipArchive]$Zip,
# Name of the file(s) to remove from the archive
[Parameter(Mandatory, ParameterSetName = "PathFullName", ValueFromPipelineByPropertyName)]
[Parameter(Mandatory, ParameterSetName = "ZipFullName", ValueFromPipelineByPropertyName)]
[string]$FullName,
# Name of the file(s) to remove from the archive
[Parameter(Mandatory, ParameterSetName = "PathName")]
[Parameter(Mandatory, ParameterSetName = "ZipName")]
[string]$Name
)
begin {
if (-not $PSCmdlet.ParameterSetName.StartsWith("Zip")) {
$Stream = [IO.FileStream]::new($Path, [IO.FileMode]::Open)
$Zip = [IO.Compression.ZipArchive]::new($Stream, [IO.Compression.ZipArchiveMode]::Read)
}
}
process {
if (-not $FullName) {
$MatchingEntries = $Zip.Entries | Where-Object {$_.Name -eq $Name}
if ($MatchingEntries.Count -ne 1) {
Write-Error "File '$Name' not found in archive" -ErrorAction Stop
}
$FullName = $MatchingEntries[0].FullName
}
[System.IO.StreamReader]::new(
$Zip.GetEntry($FullName).Open()
).ReadToEnd()
}
end {
if (-not $PSCmdlet.ParameterSetName.StartsWith("Zip")) {
$Zip.Dispose()
$Stream.Close()
$Stream.Dispose()
}
}
}
function Get-ChocolateyPackageMetadata {
[CmdletBinding(DefaultParameterSetName='All')]
param(
# The folder or nupkg to check
[Parameter(Mandatory, Position=0, ValueFromPipelineByPropertyName)]
[string]$Path,
# If provided, filters found packages by ID
[Parameter(Mandatory, Position=1, ParameterSetName='Id')]
[SupportsWildcards()]
[Alias('Name')]
[string]$Id = '*'
)
process {
Get-ChildItem $Path -Filter $Id*.nupkg | ForEach-Object {
([xml](Find-FileInArchive -Path $_.FullName -Like *.nuspec | Get-FileContentInArchive)).package.metadata | Where-Object Id -like $Id
}
}
}
#endregion
#region Nexus functions (Start-C4BNexusSetup.ps1)
function Wait-Nexus {
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::tls12
Do {
$response = try {
Invoke-WebRequest $("http://localhost:8081") -ErrorAction Stop
}
catch {
$null
}
} until($response.StatusCode -eq '200')
Write-Host "Nexus is ready!"
}
function Invoke-NexusScript {
[CmdletBinding()]
Param (
[Parameter(Mandatory)]
[String]
$ServerUri,
[Parameter(Mandatory)]
[Hashtable]
$ApiHeader,
[Parameter(Mandatory)]
[String]
$Script
)
$scriptName = [GUID]::NewGuid().ToString()
$body = @{
name = $scriptName
type = 'groovy'
content = $Script
}
# Call the API
$baseUri = "$ServerUri/service/rest/v1/script"
#Store the Script
$uri = $baseUri
Invoke-RestMethod -Uri $uri -ContentType 'application/json' -Body $($body | ConvertTo-Json) -Header $ApiHeader -Method Post
#Run the script
$uri = "{0}/{1}/run" -f $baseUri, $scriptName
$result = Invoke-RestMethod -Uri $uri -ContentType 'text/plain' -Header $ApiHeader -Method Post
#Delete the Script
$uri = "{0}/{1}" -f $baseUri, $scriptName
Invoke-RestMethod -Uri $uri -Header $ApiHeader -Method Delete -UseBasicParsing
$result
}
function Connect-NexusServer {
<#
.SYNOPSIS
Creates the authentication header needed for REST calls to your Nexus server
.DESCRIPTION
Creates the authentication header needed for REST calls to your Nexus server
.PARAMETER Hostname
The hostname or ip address of your Nexus server
.PARAMETER Credential
The credentials to authenticate to your Nexus server
.PARAMETER UseSSL
Use https instead of http for REST calls. Defaults to 8443.
.PARAMETER Sslport
If not the default 8443 provide the current SSL port your Nexus server uses
.EXAMPLE
Connect-NexusServer -Hostname nexus.fabrikam.com -Credential (Get-Credential)
.EXAMPLE
Connect-NexusServer -Hostname nexus.fabrikam.com -Credential (Get-Credential) -UseSSL
.EXAMPLE
Connect-NexusServer -Hostname nexus.fabrikam.com -Credential $Cred -UseSSL -Sslport 443
#>
[cmdletBinding(HelpUri = 'https://steviecoaster.dev/TreasureChest/Connect-NexusServer/')]
param(
[Parameter(Mandatory, Position = 0)]
[Alias('Server')]
[String]
$Hostname,
[Parameter(Mandatory, Position = 1)]
[System.Management.Automation.PSCredential]
$Credential,
[Parameter()]
[Switch]
$UseSSL,
[Parameter()]
[String]
$Sslport = '8443'
)
process {
if ($UseSSL) {
$script:protocol = 'https'
$script:port = $Sslport
}
else {
$script:protocol = 'http'
$script:port = '8081'
}
$script:HostName = $Hostname
$credPair = "{0}:{1}" -f $Credential.UserName, $Credential.GetNetworkCredential().Password
$encodedCreds = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($credPair))
$script:header = @{ Authorization = "Basic $encodedCreds" }
try {
$url = "$($protocol)://$($Hostname):$($port)/service/rest/v1/status"
$params = @{
Headers = $header
ContentType = 'application/json'
Method = 'GET'
Uri = $url
}
$null = Invoke-RestMethod @params -ErrorAction Stop
Write-Host "Connected to $Hostname" -ForegroundColor Green
}
catch {
$_.Exception.Message
}
}
}
function Invoke-Nexus {
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[String]
$UriSlug,
[Parameter()]
[Hashtable]
$Body,
[Parameter()]
[Array]
$BodyAsArray,
[Parameter()]
[String]
$BodyAsString,
[Parameter()]
[String]
$File,
[Parameter()]
[String]
$ContentType = 'application/json',
[Parameter(Mandatory)]
[String]
$Method,
[hashtable]
$AdditionalHeaders = @{}
)
process {
$UriBase = "$($protocol)://$($Hostname):$($port)"
$Uri = $UriBase + $UriSlug
$Params = @{
Headers = $header + $AdditionalHeaders
ContentType = $ContentType
Uri = $Uri
Method = $Method
}
if ($Body) {
$Params.Add('Body', $($Body | ConvertTo-Json -Depth 3))
}
if ($BodyAsArray) {
$Params.Add('Body', $($BodyAsArray | ConvertTo-Json -Depth 3))
}
if ($BodyAsString) {
$Params.Add('Body', $BodyAsString)
}
if ($File) {
$Params.Remove('ContentType')
$Params.Add('InFile', $File)
}
Invoke-RestMethod @Params
}
}
function Get-NexusUserToken {
<#
.SYNOPSIS
Fetches a User Token for the provided credential
.DESCRIPTION
Fetches a User Token for the provided credential
.PARAMETER Credential
The Nexus user for which to receive a token
.NOTES
This is a private function not exposed to the end user.
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory)]
[PSCredential]
$Credential
)
process {
$UriBase = "$($protocol)://$($Hostname):$($port)"
$slug = '/service/extdirect'
$uri = $UriBase + $slug
$data = @{
action = 'rapture_Security'
method = 'authenticationToken'
data = @("$([System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($($Credential.Username))))", "$([System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($($Credential.GetNetworkCredential().Password))))")
type = 'rpc'
tid = 16
}
Write-Verbose ($data | ConvertTo-Json)
$result = Invoke-RestMethod -Uri $uri -Method POST -Body ($data | ConvertTo-Json) -ContentType 'application/json' -Headers $header
$token = $result.result.data
$token
}
}
function Get-NexusRepository {
<#
.SYNOPSIS
Returns info about configured Nexus repository
.DESCRIPTION
Returns details for currently configured repositories on your Nexus server
.PARAMETER Format
Query for only a specific repository format. E.g. nuget, maven2, or docker
.PARAMETER Name
Query for a specific repository by name
.EXAMPLE
Get-NexusRepository
.EXAMPLE
Get-NexusRepository -Format nuget
.EXAMPLE
Get-NexusRepository -Name CompanyNugetPkgs
#>
[cmdletBinding(HelpUri = 'https://steviecoaster.dev/TreasureChest/Get-NexusRepository/', DefaultParameterSetName = "default")]
param(
[Parameter(ParameterSetName = "Format", Mandatory)]
[String]
[ValidateSet('apt', 'bower', 'cocoapods', 'conan', 'conda', 'docker', 'gitlfs', 'go', 'helm', 'maven2', 'npm', 'nuget', 'p2', 'pypi', 'r', 'raw', 'rubygems', 'yum')]
$Format,
[Parameter(ParameterSetName = "Type", Mandatory)]
[String]
[ValidateSet('hosted', 'group', 'proxy')]
$Type,
[Parameter(ParameterSetName = "Name", Mandatory)]
[String]
$Name
)
begin {
if (-not $header) {
throw "Not connected to Nexus server! Run Connect-NexusServer first."
}
$urislug = "/service/rest/v1/repositories"
}
process {
switch ($PSCmdlet.ParameterSetName) {
{ $Format } {
$filter = { $_.format -eq $Format }
$result = Invoke-Nexus -UriSlug $urislug -Method Get
$result | Where-Object $filter
}
{ $Name } {
$filter = { $_.name -eq $Name }
$result = Invoke-Nexus -UriSlug $urislug -Method Get
$result | Where-Object $filter
}
{ $Type } {
$filter = { $_.type -eq $Type }
$result = Invoke-Nexus -UriSlug $urislug -Method Get
$result | Where-Object $filter
}
default {
Invoke-Nexus -UriSlug $urislug -Method Get | ForEach-Object {
[pscustomobject]@{
Name = $_.SyncRoot.name
Format = $_.SyncRoot.format
Type = $_.SyncRoot.type
Url = $_.SyncRoot.url
Attributes = $_.SyncRoot.attributes
}
}
}
}
}
}
function Remove-NexusRepository {
<#
.SYNOPSIS
Removes a given repository from the Nexus instance
.DESCRIPTION
Removes a given repository from the Nexus instance
.PARAMETER Repository
The repository to remove
.PARAMETER Force
Disable prompt for confirmation before removal
.EXAMPLE
Remove-NexusRepository -Repository ProdNuGet
.EXAMPLE
Remove-NexusRepository -Repository MavenReleases -Force()
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.dev/TreasureChest/Remove-NexusRepository/', SupportsShouldProcess, ConfirmImpact = 'High')]
Param(
[Parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
[Alias('Name')]
[ArgumentCompleter( {
param($command, $WordToComplete, $CommandAst, $FakeBoundParams)
$repositories = (Get-NexusRepository).Name
if ($WordToComplete) {
$repositories.Where{ $_ -match "^$WordToComplete" }
}
else {
$repositories
}
})]
[String[]]
$Repository,
[Parameter()]
[Switch]
$Force
)
begin {
if (-not $header) {
throw "Not connected to Nexus server! Run Connect-NexusServer first."
}
$urislug = "/service/rest/v1/repositories"
}
process {
$Repository | Foreach-Object {
$Uri = $urislug + "/$_"
try {
if ($Force -and -not $Confirm) {
$ConfirmPreference = 'None'
if ($PSCmdlet.ShouldProcess("$_", "Remove Repository")) {
$result = Invoke-Nexus -UriSlug $Uri -Method 'DELETE' -ErrorAction Stop
[pscustomobject]@{
Status = 'Success'
Repository = $_
}
}
}
else {
if ($PSCmdlet.ShouldProcess("$_", "Remove Repository")) {
$result = Invoke-Nexus -UriSlug $Uri -Method 'DELETE' -ErrorAction Stop
[pscustomobject]@{
Status = 'Success'
Repository = $_
Timestamp = $result.date
}
}
}
}
catch {
$_.exception.message
}
}
}
}
function Remove-NexusRepositoryFolder {
<#
.SYNOPSIS
Removes a given folder from a repository from the Nexus instance
.PARAMETER RepositoryName
The repository to remove from
.PARAMETER Name
The name of the folder to remove
.EXAMPLE
Remove-NexusRepositoryFolder -RepositoryName MyNuGetRepo -Name 'v3'
# Removes the v3 folder in the MyNuGetRepo repository
#>
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[string]$RepositoryName,
[Parameter(Mandatory)]
[string]$Name
)
end {
if (-not $header) {
throw "Not connected to Nexus server! Run Connect-NexusServer first."
}
$ApiParameters = @{
UriSlug = "/service/extdirect"
Method = "POST"
Body = @{
action = "coreui_Component"
method = "deleteFolder"
data = @(
$Name,
$RepositoryName
)
type = "rpc"
tid = Get-Random -Minimum 1 -Maximum 100
}
AdditionalHeaders = @{
"X-Nexus-UI" = "true"
}
}
$Result = Invoke-Nexus @ApiParameters
if (-not $Result.result.success) {
throw "Failed to delete folder: $($Result.result.message)"
}
}
}
function New-NexusNugetHostedRepository {
<#
.SYNOPSIS
Creates a new NuGet Hosted repository
.DESCRIPTION
Creates a new NuGet Hosted repository
.PARAMETER Name
The name of the repository
.PARAMETER CleanupPolicy
The Cleanup Policies to apply to the repository
.PARAMETER Online
Marks the repository to accept incoming requests
.PARAMETER BlobStoreName
Blob store to use to store NuGet packages
.PARAMETER StrictContentValidation
Validate that all content uploaded to this repository is of a MIME type appropriate for the repository format
.PARAMETER DeploymentPolicy
Controls if deployments of and updates to artifacts are allowed
.PARAMETER HasProprietaryComponents
Components in this repository count as proprietary for namespace conflict attacks (requires Sonatype Nexus Firewall)
.EXAMPLE
New-NexusNugetHostedRepository -Name NugetHostedTest -DeploymentPolicy Allow
.EXAMPLE
$RepoParams = @{
Name = MyNuGetRepo
CleanupPolicy = '90 Days'
DeploymentPolicy = 'Allow'
UseStrictContentValidation = $true
}
New-NexusNugetHostedRepository @RepoParams
.NOTES
General notes
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.dev/TreasureChest/New-NexusNugetHostedRepository/')]
Param(
[Parameter(Mandatory)]
[String]
$Name,
[Parameter()]
[String]
$CleanupPolicy,
[Parameter()]
[Switch]
$Online = $true,
[Parameter()]
[String]
$BlobStoreName = 'default',
[Parameter()]
[ValidateSet('True', 'False')]
[String]
$UseStrictContentValidation = 'True',
[Parameter()]
[ValidateSet('Allow', 'Deny', 'Allow_Once')]
[String]
$DeploymentPolicy,
[Parameter()]
[Switch]
$HasProprietaryComponents
)
begin {
if (-not $header) {
throw "Not connected to Nexus server! Run Connect-NexusServer first."
}
$urislug = "/service/rest/v1/repositories"
}
process {
$formatUrl = $urislug + '/nuget'
$FullUrlSlug = $formatUrl + '/hosted'
$body = @{
name = $Name
online = [bool]$Online
storage = @{
blobStoreName = $BlobStoreName
strictContentTypeValidation = $UseStrictContentValidation
writePolicy = $DeploymentPolicy
}
cleanup = @{
policyNames = @($CleanupPolicy)
}
}
if ($HasProprietaryComponents) {
$Prop = @{
proprietaryComponents = 'True'
}
$Body.Add('component', $Prop)
}
Write-Verbose $($Body | ConvertTo-Json)
$null = Invoke-Nexus -UriSlug $FullUrlSlug -Body $Body -Method POST
}
}
function New-NexusRawHostedRepository {
<#
.SYNOPSIS
Creates a new Raw Hosted repository
.DESCRIPTION
Creates a new Raw Hosted repository
.PARAMETER Name
The Name of the repository to create
.PARAMETER Online
Mark the repository as Online. Defaults to True
.PARAMETER BlobStore
The blob store to attach the repository too. Defaults to 'default'
.PARAMETER UseStrictContentTypeValidation
Validate that all content uploaded to this repository is of a MIME type appropriate for the repository format
.PARAMETER DeploymentPolicy
Controls if deployments of and updates to artifacts are allowed
.PARAMETER CleanupPolicy
Components that match any of the Applied policies will be deleted
.PARAMETER HasProprietaryComponents
Components in this repository count as proprietary for namespace conflict attacks (requires Sonatype Nexus Firewall)
.PARAMETER ContentDisposition
Add Content-Disposition header as 'Attachment' to disable some content from being inline in a browser.
.EXAMPLE
New-NexusRawHostedRepository -Name BinaryArtifacts -ContentDisposition Attachment
.EXAMPLE
$RepoParams = @{
Name = 'BinaryArtifacts'
Online = $true
UseStrictContentTypeValidation = $true
DeploymentPolicy = 'Allow'
CleanupPolicy = '90Days',
BlobStore = 'AmazonS3Bucket'
}
New-NexusRawHostedRepository @RepoParams
.NOTES
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.dev/TreasureChest/New-NexusRawHostedRepository/', DefaultParameterSetname = "Default")]
Param(
[Parameter(Mandatory)]
[String]
$Name,
[Parameter()]
[Switch]
$Online = $true,
[Parameter()]
[String]
$BlobStore = 'default',
[Parameter()]
[Switch]
$UseStrictContentTypeValidation,
[Parameter()]
[ValidateSet('Allow', 'Deny', 'Allow_Once')]
[String]
$DeploymentPolicy = 'Allow_Once',
[Parameter()]
[String]
$CleanupPolicy,
[Parameter()]
[Switch]
$HasProprietaryComponents,
[Parameter(Mandatory)]
[ValidateSet('Inline', 'Attachment')]
[String]
$ContentDisposition
)
begin {
if (-not $header) {
throw "Not connected to Nexus server! Run Connect-NexusServer first."
}
$urislug = "/service/rest/v1/repositories/raw/hosted"
}
process {
$Body = @{
name = $Name
online = [bool]$Online
storage = @{
blobStoreName = $BlobStore
strictContentTypeValidation = [bool]$UseStrictContentTypeValidation
writePolicy = $DeploymentPolicy.ToLower()
}
cleanup = @{
policyNames = @($CleanupPolicy)
}
component = @{
proprietaryComponents = [bool]$HasProprietaryComponents
}
raw = @{
contentDisposition = $ContentDisposition.ToUpper()
}
}
Write-Verbose $($Body | ConvertTo-Json)
$null = Invoke-Nexus -UriSlug $urislug -Body $Body -Method POST
}
}
function Get-NexusRealm {
<#
.SYNOPSIS
Gets Nexus Realm information
.DESCRIPTION
Gets Nexus Realm information
.PARAMETER Active
Returns only active realms
.EXAMPLE
Get-NexusRealm
.EXAMPLE
Get-NexusRealm -Active
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.dev/TreasureChest/Get-NexusRealm/')]
Param(
[Parameter()]
[Switch]
$Active
)
begin {
if (-not $header) {
throw "Not connected to Nexus server! Run Connect-NexusServer first."
}
$urislug = "/service/rest/v1/security/realms/available"
}
process {
if ($Active) {
$current = Invoke-Nexus -UriSlug $urislug -Method 'GET'
$urislug = '/service/rest/v1/security/realms/active'
$Activated = Invoke-Nexus -UriSlug $urislug -Method 'GET'
$current | Where-Object { $_.Id -in $Activated }
}
else {
$result = Invoke-Nexus -UriSlug $urislug -Method 'GET'
$result | Foreach-Object {
[pscustomobject]@{
Id = $_.id
Name = $_.name
}
}
}
}
}
function Enable-NexusRealm {
<#
.SYNOPSIS
Enable realms in Nexus
.DESCRIPTION
Enable realms in Nexus
.PARAMETER Realm
The realms you wish to activate
.EXAMPLE
Enable-NexusRealm -Realm 'NuGet Api-Key Realm', 'Rut Auth Realm'
.EXAMPLE
Enable-NexusRealm -Realm 'LDAP Realm'
.NOTES
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.dev/TreasureChest/Enable-NexusRealm/')]
Param(
[Parameter(Mandatory)]
[ArgumentCompleter( {
param($Command, $Parameter, $WordToComplete, $CommandAst, $FakeBoundParams)
$r = (Get-NexusRealm).name
if ($WordToComplete) {
$r.Where($_ -match "^$WordToComplete")
}
else {