forked from microsoft/PowerShellForGitHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GitHubEvents.ps1
123 lines (98 loc) · 4.79 KB
/
GitHubEvents.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
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
function Get-GitHubEvent
{
<#
.DESCRIPTION
Lists events for an issue, repository, or a single event
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 EventID
The ID of a specific event to get. If not supplied, will return back all events for this repository.
.PARAMETER Issue
Issue number to get events for. If not supplied, will return back all events for this repository.
.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-GitHubEvent -OwnerName Microsoft -RepositoryName PowerShellForGitHub
Get the events for the Microsoft\PowerShellForGitHub project.
#>
[CmdletBinding(
SupportsShouldProcess,
DefaultParametersetName='RepositoryElements')]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
param(
[Parameter(Mandatory, ParameterSetName='RepositoryElements')]
[Parameter(Mandatory, ParameterSetName='IssueElements')]
[Parameter(Mandatory, ParameterSetName='EventElements')]
[string] $OwnerName,
[Parameter(Mandatory, ParameterSetName='RepositoryElements')]
[Parameter(Mandatory, ParameterSetName='IssueElements')]
[Parameter(Mandatory, ParameterSetName='EventElements')]
[string] $RepositoryName,
[Parameter(Mandatory, ParameterSetName='RepositoryUri')]
[Parameter(Mandatory, ParameterSetName='IssueUri')]
[Parameter(Mandatory, ParameterSetName='EventUri')]
[string] $Uri,
[Parameter(Mandatory, ParameterSetName='EventUri')]
[Parameter(Mandatory, ParameterSetName='EventElements')]
[int64] $EventID,
[Parameter(Mandatory, ParameterSetName='IssueUri')]
[Parameter(Mandatory, ParameterSetName='IssueElements')]
[int64] $Issue,
[string] $AccessToken,
[switch] $NoStatus
)
Write-InvocationLog
$elements = Resolve-RepositoryElements
$OwnerName = $elements.ownerName
$RepositoryName = $elements.repositoryName
$telemetryProperties = @{
'OwnerName' = (Get-PiiSafeString -PlainText $OwnerName)
'RepositoryName' = (Get-PiiSafeString -PlainText $RepositoryName)
'ProvidedIssue' = $PSBoundParameters.ContainsKey('Issue')
'ProvidedEvent' = $PSBoundParameters.ContainsKey('EventID')
}
$uriFragment = "repos/$OwnerName/$RepositoryName/issues/events"
$description = "Getting events for $RepositoryName"
if ($PSBoundParameters.ContainsKey('EventID'))
{
$uriFragment = "repos/$OwnerName/$RepositoryName/issues/events/$EventID"
$description = "Getting event $EventID for $RepositoryName"
}
elseif ($PSBoundParameters.ContainsKey('Issue'))
{
$uriFragment = "repos/$OwnerName/$RepositoryName/issues/$Issue/events"
$description = "Getting events for issue $Issue in $RepositoryName"
}
$acceptHeaders = @(
'application/vnd.github.starfox-preview+json',
'application/vnd.github.sailer-v-preview+json',
'application/vnd.github.symmetra-preview+json',
'application/vnd.github.machine-man-preview')
$params = @{
'UriFragment' = $uriFragment
'Description' = $description
'AccessToken' = $AccessToken
'AcceptHeader' = $acceptHeaders -join ','
'TelemetryEventName' = $MyInvocation.MyCommand.Name
'TelemetryProperties' = $telemetryProperties
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus)
}
return Invoke-GHRestMethodMultipleResult @params
}