-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds support for the [Issues Assignees](https://developer.github.com/v3/issues/assignees/) API's
- Loading branch information
1 parent
6cf344f
commit 680696a
Showing
5 changed files
with
561 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,386 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
|
||
function Get-GitHubAssignee | ||
{ | ||
<# | ||
.DESCRIPTION | ||
Lists the available assignees for issues in a repository. | ||
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 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-GitHubAsigneeList -OwnerName Powershell -RepositoryName PowerShellForGitHub | ||
Lists the available assignees for issues from the PowerShell\PowerShellForGitHub project. | ||
#> | ||
[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')] | ||
[string] $OwnerName, | ||
|
||
[Parameter(ParameterSetName='Elements')] | ||
[string] $RepositoryName, | ||
|
||
[Parameter( | ||
Mandatory, | ||
ParameterSetName='Uri')] | ||
[string] $Uri, | ||
|
||
[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) | ||
} | ||
|
||
$params = @{ | ||
'UriFragment' = "repos/$OwnerName/$RepositoryName/assignees" | ||
'Description' = "Getting assignee list for $RepositoryName" | ||
'AccessToken' = $AccessToken | ||
'TelemetryEventName' = $MyInvocation.MyCommand.Name | ||
'TelemetryProperties' = $telemetryProperties | ||
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus) | ||
} | ||
|
||
return Invoke-GHRestMethodMultipleResult @params | ||
} | ||
|
||
function Test-GitHubAssignee | ||
{ | ||
<# | ||
.DESCRIPTION | ||
Checks if a user has permission to be assigned to an issue in this repository. Returns a boolean. | ||
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 Assignee | ||
Username for the assignee | ||
.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. | ||
.OUTPUTS | ||
[bool] If the assignee can be assigned to issues in the repository. | ||
.EXAMPLE | ||
Test-GitHubAssignee -OwnerName Powershell -RepositoryName PowerShellForGitHub -Assignee "LoginID123" | ||
Checks if a user has permission to be assigned to an issue from the PowerShell\PowerShellForGitHub project. | ||
#> | ||
[CmdletBinding( | ||
SupportsShouldProcess, | ||
DefaultParametersetName='Elements')] | ||
[OutputType([bool])] | ||
[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')] | ||
[string] $OwnerName, | ||
|
||
[Parameter(ParameterSetName='Elements')] | ||
[string] $RepositoryName, | ||
|
||
[Parameter( | ||
Mandatory, | ||
ParameterSetName='Uri')] | ||
[string] $Uri, | ||
|
||
[string] $Assignee, | ||
|
||
[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) | ||
'Asignee' = (Get-PiiSafeString -PlainText $Assignee) | ||
} | ||
|
||
$params = @{ | ||
'UriFragment' = "repos/$OwnerName/$RepositoryName/assignees/$Assignee" | ||
'Method' = 'Get' | ||
'Description' = "Checking permission for $Assignee for $RepositoryName" | ||
'AccessToken' = $AccessToken | ||
'TelemetryEventName' = $MyInvocation.MyCommand.Name | ||
'TelemetryProperties' = $telemetryProperties | ||
'ExtendedResult'= $true | ||
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus) | ||
} | ||
|
||
try | ||
{ | ||
$response = Invoke-GHRestMethod @params | ||
return $response.StatusCode -eq 204 | ||
} | ||
catch | ||
{ | ||
return $false | ||
} | ||
} | ||
|
||
function New-GithubAssignee | ||
{ | ||
<# | ||
.DESCRIPTION | ||
Adds a list of assignees to a Github Issue for the given repository. | ||
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 Issue | ||
Issue number to add the assignees to. | ||
.PARAMETER Assignee | ||
Usernames of users to assign this issue to. NOTE: Only users with push access can add assignees to an issue. | ||
Assignees are silently ignored otherwise. | ||
.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 | ||
New-GithubAssignee -OwnerName Powershell -RepositoryName PowerShellForGitHub -Assignee $assignee | ||
Lists the available assignees for issues from the PowerShell\PowerShellForGitHub project. | ||
#> | ||
[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')] | ||
[string] $OwnerName, | ||
|
||
[Parameter(ParameterSetName='Elements')] | ||
[string] $RepositoryName, | ||
|
||
[Parameter( | ||
Mandatory, | ||
ParameterSetName='Uri')] | ||
[string] $Uri, | ||
|
||
[Parameter(Mandatory)] | ||
[int] $Issue, | ||
|
||
[Parameter(Mandatory)] | ||
[ValidateCount(1, 10)] | ||
[string[]] $Assignee, | ||
|
||
[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) | ||
'AssigneeCount' = $Assignee.Count | ||
'Issue' = (Get-PiiSafeString -PlainText $Issue) | ||
} | ||
|
||
$hashBody = @{ | ||
'assignees' = $Assignee | ||
} | ||
|
||
$params = @{ | ||
'UriFragment' = "repos/$OwnerName/$RepositoryName/issues/$Issue/assignees" | ||
'Body' = (ConvertTo-Json -InputObject $hashBody) | ||
'Method' = 'Post' | ||
'Description' = "Add assignees to issue $Issue for $RepositoryName" | ||
'AccessToken' = $AccessToken | ||
'AcceptHeader' = 'application/vnd.github.symmetra-preview+json' | ||
'TelemetryEventName' = $MyInvocation.MyCommand.Name | ||
'TelemetryProperties' = $telemetryProperties | ||
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus) | ||
} | ||
|
||
return Invoke-GHRestMethod @params | ||
} | ||
|
||
function Remove-GithubAssignee | ||
{ | ||
<# | ||
.DESCRIPTION | ||
Removes an assignee from a Github issue. | ||
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 Issue | ||
Issue number to remove the assignees from. | ||
.PARAMETER Assignee | ||
Usernames of assignees to remove from an issue. NOTE: Only users with push access can remove assignees from an issue. Assignees are silently ignored otherwise. | ||
.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 | ||
Remove-GithubAssignee -OwnerName Powershell -RepositoryName PowerShellForGitHub -Assignee $assignees | ||
Lists the available assignees for issues from the PowerShell\PowerShellForGitHub project. | ||
#> | ||
[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')] | ||
[string] $OwnerName, | ||
|
||
[Parameter(ParameterSetName='Elements')] | ||
[string] $RepositoryName, | ||
|
||
[Parameter( | ||
Mandatory, | ||
ParameterSetName='Uri')] | ||
[string] $Uri, | ||
|
||
[Parameter(Mandatory)] | ||
[int] $Issue, | ||
|
||
[Parameter(Mandatory)] | ||
[string[]] $Assignee, | ||
|
||
[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) | ||
'AssigneeCount' = $Assignee.Count | ||
'Issue' = (Get-PiiSafeString -PlainText $Issue) | ||
} | ||
|
||
$hashBody = @{ | ||
'assignees' = $Assignee | ||
} | ||
|
||
$params = @{ | ||
'UriFragment' = "repos/$OwnerName/$RepositoryName/issues/$Issue/assignees" | ||
'Body' = (ConvertTo-Json -InputObject $hashBody) | ||
'Method' = 'Delete' | ||
'Description' = "Removing assignees from issue $Issue for $RepositoryName" | ||
'AccessToken' = $AccessToken | ||
'AcceptHeader' = 'application/vnd.github.symmetra-preview+json' | ||
'TelemetryEventName' = $MyInvocation.MyCommand.Name | ||
'TelemetryProperties' = $telemetryProperties | ||
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus) | ||
} | ||
|
||
return Invoke-GHRestMethod @params | ||
} |
Oops, something went wrong.