-
Notifications
You must be signed in to change notification settings - Fork 191
Adding Get Repository.Contents functionality (take 2) #146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
db1e3fa
Initial commit
Shazwazza 23e7467
Fixes up the path to be correct, removes unneeded check
Shazwazza 71ecd1e
remove comment
Shazwazza 79a46b1
Pushes udpated/cleaned up code, need to get a test going
Shazwazza 8e99309
fixes whitespace
Shazwazza f12de5f
Adds first test
Shazwazza c90b9ed
Fixes casing, removes Path logging
Shazwazza 03a9f08
Adds Object support and unit tests
Shazwazza fdc6479
Adds test for folder
Shazwazza 882fc49
Update GitHubCore.ps1
Shazwazza 4d11dde
Fixes formatting, adds auto-formatting files, adds Uri + unit test
Shazwazza c02cc28
Removes extra Get-ContentMediaType and adjusts Get-MediaAcceptHeader …
Shazwazza e848215
Merge branch 'master' into GitHub-Contents
HowardWolosky 8c29133
Update GitHubCore.ps1
Shazwazza e66fd67
Update GitHubCore.ps1
Shazwazza 433a6e7
Update Tests/GitHubContents.tests.ps1
Shazwazza 4a1c9b3
Fixes tests
Shazwazza 9a8bcc1
Merge branch 'master' into GitHub-Contents
HowardWolosky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,8 @@ | ||
# editorconfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
|
||
trim_trailing_whitespace = true |
This file contains hidden or 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,7 @@ | ||
{ | ||
Shazwazza marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"[powershell]": { | ||
"files.trimTrailingWhitespace": true | ||
}, | ||
"powershell.codeFormatting.openBraceOnSameLine": false, | ||
"powershell.codeFormatting.alignPropertyValuePairs": false | ||
} |
This file contains hidden or 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
This file contains hidden or 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,145 @@ | ||
function Get-GitHubContent | ||
{ | ||
<# | ||
.SYNOPSIS | ||
Retrieve the contents of a file or directory in a repository on GitHub. | ||
|
||
.DESCRIPTION | ||
Retrieve content from files 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 Path | ||
The file path for which to retrieve contents | ||
|
||
.PARAMETER MediaType | ||
The format in which the API will return the body of the issue. | ||
Object - Return a json object representation a file or folder. This is the default if you do not pass any specific media type. | ||
Raw - Return the raw contents of a file. | ||
Html - For markup files such as Markdown or AsciiDoc, you can retrieve the rendered HTML using the Html media type. | ||
|
||
.PARAMETER ResultAsString | ||
If this switch is specified and the MediaType is either Raw or Html then the resulting bytes will be decoded the result will be | ||
returned as a string instead of bytes. If the MediaType is Object, then an additional property on the object is returned 'contentAsString' | ||
which will be the decoded base64 result as a string. | ||
|
||
.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-GitHubContent -OwnerName microsoft -RepositoryName PowerShellForGitHub -Path README.md -MediaType Html | ||
|
||
Get the Html output for the README.md file | ||
|
||
.EXAMPLE | ||
Get-GitHubContent -OwnerName microsoft -RepositoryName PowerShellForGitHub -Path LICENSE | ||
|
||
Get the Binary file output for the LICENSE file | ||
|
||
.EXAMPLE | ||
Get-GitHubContent -OwnerName microsoft -RepositoryName PowerShellForGitHub -Path Tests | ||
|
||
List the files within the "Tests" path of the repository | ||
#> | ||
[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(Mandatory, ParameterSetName = 'Elements')] | ||
[string] $OwnerName, | ||
|
||
[Parameter(Mandatory, ParameterSetName = 'Elements')] | ||
[string] $RepositoryName, | ||
|
||
[Parameter( | ||
Mandatory, | ||
ParameterSetName='Uri')] | ||
[string] $Uri, | ||
|
||
[string] $Path, | ||
|
||
[ValidateSet('Raw', 'Html', 'Object')] | ||
[string] $MediaType = 'Object', | ||
|
||
[switch] $ResultAsString, | ||
|
||
[string] $AccessToken, | ||
|
||
[switch] $NoStatus | ||
) | ||
|
||
Write-InvocationLog | ||
|
||
$elements = Resolve-RepositoryElements -DisableValidation | ||
$OwnerName = $elements.ownerName | ||
$RepositoryName = $elements.repositoryName | ||
|
||
$telemetryProperties = @{ | ||
'OwnerName' = (Get-PiiSafeString -PlainText $OwnerName) | ||
'RepositoryName' = (Get-PiiSafeString -PlainText $RepositoryName) | ||
} | ||
|
||
$description = [String]::Empty | ||
|
||
$uriFragment = "/repos/$OwnerName/$RepositoryName/contents" | ||
Shazwazza marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if ($PSBoundParameters.ContainsKey('Path')) | ||
{ | ||
$Path = $Path.TrimStart("\", "/") | ||
$uriFragment += "/$Path" | ||
$description = "Getting content for $Path in $RepositoryName" | ||
} | ||
else | ||
{ | ||
$description = "Getting all content for in $RepositoryName" | ||
} | ||
|
||
$params = @{ | ||
'UriFragment' = $uriFragment | ||
'Description' = $description | ||
'AcceptHeader' = (Get-MediaAcceptHeader -MediaType $MediaType) | ||
'AccessToken' = $AccessToken | ||
'TelemetryEventName' = $MyInvocation.MyCommand.Name | ||
'TelemetryProperties' = $telemetryProperties | ||
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus) | ||
} | ||
|
||
$result = Invoke-GHRestMethodMultipleResult @params | ||
|
||
if ($ResultAsString) | ||
{ | ||
if ($MediaType -eq 'Raw' -or $MediaType -eq 'Html') | ||
{ | ||
# Decode bytes to string | ||
$result = [System.Text.Encoding]::UTF8.GetString($result) | ||
} | ||
elseif ($MediaType -eq 'Object') | ||
{ | ||
# Convert from base64 | ||
$decoded = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($result.content)) | ||
Add-Member -InputObject $result -NotePropertyName "contentAsString" -NotePropertyValue $decoded | ||
} | ||
} | ||
|
||
return $result | ||
} |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.