forked from microsoft/PowerShellForGitHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitHubReleases.ps1
200 lines (156 loc) · 6.54 KB
/
GitHubReleases.ps1
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
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
function Get-GitHubRelease
{
<#
.SYNOPSIS
Retrieves information about a release or list of releases on GitHub.
.DESCRIPTION
Retrieves information about a release or list of releases on GitHub.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER OwnerName
Owner of the repository.
If not supplied here, the DefaultOwnerName configuration property value will be used.
.PARAMETER RepositoryName
Name of the repository.
If not supplied here, the DefaultRepositoryName configuration property value will be used.
.PARAMETER Uri
Uri for the repository.
The OwnerName and RepositoryName will be extracted from here instead of needing to provide
them individually.
.PARAMETER ReleaseId
Specific releaseId of a release.
This is an optional parameter which can limit the results to a single release.
.PARAMETER Latest
Retrieve only the latest release.
This is an optional parameter which can limit the results to a single release.
.PARAMETER Tag
Retrieves a list of releases with the associated tag.
This is an optional parameter which can filter the list of releases.
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.PARAMETER NoStatus
If this switch is specified, long-running commands will run on the main thread
with no commandline status update. When not specified, those commands run in
the background, enabling the command prompt to provide status information.
If not supplied here, the DefaultNoStatus configuration property value will be used.
.EXAMPLE
Get-GitHubRelease
Gets all releases for the default configured owner/repository.
.EXAMPLE
Get-GitHubRelease -ReleaseId 12345
Get a specific release for the default configured owner/repository
.EXAMPLE
Get-GitHubRelease -OwnerName dotnet -RepositoryName core
Gets all releases from the dotnet\core repository.
.EXAMPLE
Get-GitHubRelease -Uri https://github.com./microsoft/PowerShellForGitHub
Gets all releases from the microsoft/PowerShellForGitHub repository.
.EXAMPLE
Get-GitHubRelease -OwnerName dotnet -RepositoryName core -Latest
Gets the latest release from the dotnet\core repository.
.EXAMPLE
Get-GitHubRelease -Uri https://github.com./microsoft/PowerShellForGitHub -Tag 0.8.0
Gets the release tagged with 0.8.0 from the microsoft/PowerShellForGitHub repository.
.NOTES
Information about published releases are available to everyone. Only users with push
access will receive listings for draft releases.
#>
[CmdletBinding(
SupportsShouldProcess,
DefaultParameterSetName='Elements')]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
param(
[Parameter(
ParameterSetName='Elements')]
[Parameter(
ParameterSetName="Elements-ReleaseId")]
[Parameter(
ParameterSetName="Elements-Latest")]
[Parameter(
ParameterSetName="Elements-Tag")]
[string] $OwnerName,
[Parameter(
ParameterSetName='Elements')]
[Parameter(
ParameterSetName="Elements-ReleaseId")]
[Parameter(
ParameterSetName="Elements-Latest")]
[Parameter(
ParameterSetName="Elements-Tag")]
[string] $RepositoryName,
[Parameter(
Mandatory,
ParameterSetName='Uri')]
[Parameter(
Mandatory,
ParameterSetName="Uri-ReleaseId")]
[Parameter(
Mandatory,
ParameterSetName="Uri-Latest")]
[Parameter(
Mandatory,
ParameterSetName="Uri-Tag")]
[string] $Uri,
[Parameter(
Mandatory,
ParameterSetName="Elements-ReleaseId")]
[Parameter(
Mandatory,
ParameterSetName="Uri-ReleaseId")]
[string] $ReleaseId,
[Parameter(
Mandatory,
ParameterSetName="Elements-Latest")]
[Parameter(
Mandatory,
ParameterSetName="Uri-Latest")]
[switch] $Latest,
[Parameter(
Mandatory,
ParameterSetName="Elements-Tag")]
[Parameter(
Mandatory,
ParameterSetName="Uri-Tag")]
[string] $Tag,
[string] $AccessToken,
[switch] $NoStatus
)
Write-InvocationLog -Invocation $MyInvocation
$elements = Resolve-RepositoryElements -BoundParameters $PSBoundParameters -DisableValidation
$OwnerName = $elements.ownerName
$RepositoryName = $elements.repositoryName
$telemetryProperties = @{}
$telemetryProperties['OwnerName'] = Get-PiiSafeString -PlainText $OwnerName
$telemetryProperties['RepositoryName'] = Get-PiiSafeString -PlainText $RepositoryName
$uriFragment = "repos/$OwnerName/$RepositoryName/releases"
$description = "Getting releases for $OwnerName/$RepositoryName"
if(-not [String]::IsNullOrEmpty($ReleaseId))
{
$telemetryProperties['ProvidedReleaseId'] = $true
$uriFragment += "/$ReleaseId"
$description = "Getting release information for $ReleaseId from $OwnerName/$RepositoryName"
}
if($Latest)
{
$telemetryProperties['GetLatest'] = $true
$uriFragment += "/latest"
$description = "Getting latest release from $OwnerName/$RepositoryName"
}
if(-not [String]::IsNullOrEmpty($Tag))
{
$telemetryProperties['ProvidedTag'] = $true
$uriFragment += "/tags/$Tag"
$description = "Getting releases tagged with $Tag from $OwnerName/$RepositoryName"
}
$params = @{
'UriFragment' = $uriFragment
'Description' = $description
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
'TelemetryProperties' = $telemetryProperties
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -BoundParameters $PSBoundParameters -Name NoStatus -ConfigValueName DefaultNoStatus)
}
return Invoke-GHRestMethodMultipleResult @params
}