-
Notifications
You must be signed in to change notification settings - Fork 6
/
Atlassian.Bitbucket.Pipeline.Variable.psm1
94 lines (89 loc) · 3.62 KB
/
Atlassian.Bitbucket.Pipeline.Variable.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
using module .\Atlassian.Bitbucket.Authentication.psm1
function Get-BitbucketRepositoryVariable {
[CmdletBinding()]
param(
[Parameter( ValueFromPipelineByPropertyName = $true,
HelpMessage = 'Name of the workspace in Bitbucket. Defaults to selected workspace if not provided.')]
[Alias("Team")]
[string]$Workspace = (Get-BitbucketSelectedWorkspace),
[Parameter( Mandatory = $true,
Position = 0,
ValueFromPipeline = $true,
ValueFromPipelineByPropertyName = $true,
HelpMessage = 'The repository slug.')]
[Alias('Slug')]
[string]$RepoSlug
)
Process {
$endpoint = "repositories/$Workspace/$RepoSlug/pipelines_config/variables"
return (Invoke-BitbucketAPI -Path $endpoint).values
}
}
function New-BitbucketRepositoryVariable {
[CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'Low')]
param(
[Parameter( ValueFromPipelineByPropertyName = $true,
HelpMessage = 'Name of the workspace in Bitbucket. Defaults to selected workspace if not provided.')]
[Alias("Team")]
[string]$Workspace = (Get-BitbucketSelectedWorkspace),
[Parameter( Mandatory = $true,
Position = 0,
ValueFromPipeline = $true,
ValueFromPipelineByPropertyName = $true,
HelpMessage = 'The repository slug.')]
[Alias('Slug')]
[string]$RepoSlug,
[Parameter( Mandatory = $true,
Position = 1,
ValueFromPipelineByPropertyName = $true,
HelpMessage = 'Name of the environment.')]
[string]$Key,
[Parameter( Mandatory = $true,
ValueFromPipelineByPropertyName = $true,
HelpMessage = 'Variable value')]
[string]$Value,
[Parameter( ValueFromPipelineByPropertyName = $true,
HelpMessage = 'Obscure the variable value')]
[switch]$Secured
)
Process {
$body = [ordered]@{
key = $Key
secured = $Secured.IsPresent
value = $Value
} | ConvertTo-Json -Depth 1 -Compress
$endpoint = "repositories/$Workspace/$RepoSlug/pipelines_config/variables"
if ($pscmdlet.ShouldProcess("$Key in the repo $RepoSlug", 'create')) {
return Invoke-BitbucketAPI -Path $endpoint -Method Post -Body $body
}
}
}
function Remove-BitbucketRepositoryVariable {
[CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'Low')]
param(
[Parameter( ValueFromPipelineByPropertyName = $true,
HelpMessage = 'Name of the workspace in Bitbucket. Defaults to selected workspace if not provided.')]
[Alias("Team")]
[string]$Workspace = (Get-BitbucketSelectedWorkspace),
[Parameter( Mandatory = $true,
Position = 0,
ValueFromPipeline = $true,
ValueFromPipelineByPropertyName = $true,
HelpMessage = 'The repository slug.')]
[Alias('Slug')]
[string]$RepoSlug,
[Parameter( Mandatory = $true,
ValueFromPipelineByPropertyName = $true,
HelpMessage = 'Variable key')]
[string]$Key
)
Process {
$_uuidVar = (Get-BitbucketRepositoryVariable -Workspace $Workspace -RepoSlug $RepoSlug | Where-Object { $_.key -eq $Key }).uuid
if ($_uuidVar) {
$endpoint = "repositories/$Workspace/$RepoSlug/pipelines_config/variables/$_uuidVar"
if ($pscmdlet.ShouldProcess("$Key in the repo $RepoSlug", 'delete')) {
return Invoke-BitbucketAPI -Path $endpoint -Method Delete
}
}
}
}