10 Commits
1.3.0 ... 1.4.3

Author SHA1 Message Date
5854940f75 Bump module version to 1.4.3 and update download URL in Get-GiteaChildItem function to allow for getting LFS files from other branches
All checks were successful
Publish Powershell Module to Gitea Repository / test (push) Successful in 10s
Publish Powershell Module to Gitea Repository / deploy (push) Successful in 32s
2025-05-27 12:11:54 -04:00
02f83e6633 Bump module version to 1.4.2 and update exported functions in the module manifest
All checks were successful
Publish Powershell Module to Gitea Repository / test (push) Successful in 10s
Publish Powershell Module to Gitea Repository / deploy (push) Successful in 33s
2025-05-27 11:52:31 -04:00
d4c7aa5a92 Bump module version to 1.4.1 in the module manifest 2025-05-27 11:41:09 -04:00
15381257e5 Exclude "Tests" directory when retrieving module name for publishing
All checks were successful
Publish Powershell Module to Gitea Repository / test (push) Successful in 10s
Publish Powershell Module to Gitea Repository / deploy (push) Successful in 34s
2025-05-27 11:35:41 -04:00
1c09d40253 Resolve -preserverelativepath issue in invoke-giteafiledownload, update pester tests, and bump module version to 1.4.0
Some checks failed
Publish Powershell Module to Gitea Repository / deploy (push) Has been cancelled
Publish Powershell Module to Gitea Repository / test (push) Has been cancelled
2025-05-27 11:31:00 -04:00
1d0c8b43bc Update module path in test files for consistency 2025-05-27 08:19:53 -04:00
445fa8a429 Move tests to root 2025-05-27 08:16:01 -04:00
dd47a1b7e2 Bump module version to 1.3.1 in the module manifest.
All checks were successful
Publish Powershell Module to Gitea Repository / test (push) Successful in 9s
Publish Powershell Module to Gitea Repository / deploy (push) Successful in 32s
2025-04-30 15:23:44 -04:00
c65cde9fbc Refactor path handling for cross-platform compatibility and update configuration directory path 2025-04-30 15:20:52 -04:00
c18f68bc46 Remove unnecessary blank line in Pester test execution step 2025-04-30 15:05:05 -04:00
9 changed files with 131 additions and 83 deletions

View File

@@ -20,7 +20,6 @@ jobs:
- name: Run pester tests and verify all tests pass
shell: pwsh
run: |
Write-Host "Changing to repository directory: ${{ github.workspace }}"
Set-Location -Path ${{ github.workspace }}
Write-Host "Running Pester tests"
@@ -73,7 +72,7 @@ jobs:
Set-Location -Path ${{ github.workspace }}
$moduleVersion = git describe --tags
Write-Host "Module version: $moduleVersion"
$module = get-childItem -path . -Directory -Exclude ".*" | Select-Object -ExpandProperty Name
$module = get-childItem -path . -Directory -Exclude (".*", "Tests") | Select-Object -ExpandProperty Name
Write-Host "Publishing module $module to Gitea"
Publish-Module -Path $module -Repository 'GiteaPublic' -NuGetApiKey "${{ secrets.PACKAGES_TOKEN }}"
Write-Host "Module $module published to Gitea"

View File

@@ -12,7 +12,7 @@
RootModule = 'PS-GiteaUtilities.psm1'
# Version number of this module.
ModuleVersion = '1.3.0'
ModuleVersion = '1.4.3'
# Supported PSEditions
# CompatiblePSEditions = @()
@@ -69,7 +69,7 @@ PowerShellVersion = '5.1'
# NestedModules = @()
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = 'Set-GiteaConfiguration', 'Get-GiteaConfiguration', 'Get-GiteaFileContent', 'Invoke-GiteaFileDownload', 'Get-GiteaChildItem'
FunctionsToExport = 'Set-GiteaConfiguration', 'Get-GiteaConfiguration', 'Get-GiteaFileContent', 'Invoke-GiteaFileDownload', 'Get-GiteaChildItem', 'Get-GiteaReleases'
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = '*'

View File

@@ -11,7 +11,7 @@ Function Set-GiteaConfiguration {
)
# Create configuration directory if it doesn't exist
$configDir = Join-Path -Path $env:USERPROFILE -ChildPath ".giteautils"
$configDir = Join-Path -Path $HOME -ChildPath ".giteautils"
if (-not (Test-Path -Path $configDir)) {
New-Item -Path $configDir -ItemType Directory | Out-Null
}
@@ -36,7 +36,7 @@ Function Get-GiteaConfiguration {
[switch]$Force
)
$configPath = Join-Path -Path $env:USERPROFILE -ChildPath ".giteautils\config.xml"
$configPath = Join-Path -Path $HOME -ChildPath ".giteautils/config.xml"
if (Test-Path -Path $configPath) {
$config = Import-Clixml -Path $configPath
@@ -180,6 +180,8 @@ Function Get-GiteaFileContent {
process {
foreach ($file in $filePath) {
# Normalize path separators for cross-platform compatibility
$file = $file -replace '\\', '/'
Write-Verbose "Processing file: $file"
$encodedFile = [System.Uri]::EscapeDataString($file)
Write-Verbose "Encoded file: $encodedFile"
@@ -191,7 +193,6 @@ Function Get-GiteaFileContent {
$url += "/$encodedFile"
$url += "?ref=$branch"
Write-Verbose "URL: $url"
try {
$fileContent = Invoke-RestMethod -Uri $url -Method Get -Headers $headers
@@ -323,16 +324,22 @@ Function Invoke-GiteaFileDownload {
A personal access token for the Gitea server.
.PARAMETER outputPath
The path where the downloaded file should be saved. If not specified, the file will be saved in the current directory using the filename from the URL.
The path where the downloaded file should be saved. If not specified, the file will be saved in the current directory with its original name from the download URL.
If using PreserveRelativePath, outputPath is treated as the base directory to append the relative path to.
.PARAMETER force
A switch parameter to force overwriting of an existing file at the output path.
.PARAMETER outputName
The name of the file to save the downloaded content as. If not specified, the file will be saved with its original name from the download URL.
Cannot be used with PreserveRelativePath.
.PARAMETER PreserveRelativePath
A switch parameter to preserve the relative path structure from the repository.
If used without specifying an outputPath, creates the directory structure in the current location.
If used with outputPath, treats the outputPath as the base directory to append the relative path to.
Cannot be used with outputName.
.PARAMETER force
A switch parameter to force overwriting of an existing file at the output path.
.PARAMETER type
The type of the item to download (file, dir, lfs). This parameter is typically used with pipeline input from Get-GiteaChildItem.
Directories will be skipped with a verbose message.
@@ -343,7 +350,7 @@ Function Invoke-GiteaFileDownload {
.EXAMPLE
# Example 2: Download a file to a specific location with force overwrite
Invoke-GiteaFileDownload -downloadURL "https://gitea.example.com/api/v1/repos/owner/repo/raw/path/to/file.txt" -token "your_token" -outputPath "C:\Downloads\file.txt" -force
Invoke-GiteaFileDownload -downloadURL "https://gitea.example.com/api/v1/repos/owner/repo/raw/path/to/file.txt" -token "your_token" -outputPath "C:\Downloads\" -outputName "file.txt" -force
.EXAMPLE
# Example 3: Download files in pipeline from Get-GiteaChildItem
@@ -365,10 +372,10 @@ Function Invoke-GiteaFileDownload {
[string]$token,
[Parameter(ValueFromPipelineByPropertyName)]
[string]$outputPath,
[switch]$force,
[Parameter(ValueFromPipelineByPropertyName)]
[string]$filePath,
[string]$outputName,
[switch]$PreserveRelativePath,
[switch]$force,
[Parameter(ValueFromPipelineByPropertyName)]
[string]$type
)
@@ -391,6 +398,11 @@ Function Invoke-GiteaFileDownload {
Write-Verbose "Parameters:"
Write-Debug "Token: $token (length: $(if($token){$token.Length}else{0}))"
Write-Verbose "PreserveRelativePath: $PreserveRelativePath"
# Ensure PreserveRelativePath is not used with outputName
if ($PreserveRelativePath -and $PSBoundParameters.ContainsKey('outputName')) {
throw "The -PreserveRelativePath switch cannot be used with the -outputName parameter. Use -outputPath instead."
}
# Create a WebClient to be reused
$webClient = New-Object System.Net.WebClient
@@ -398,16 +410,15 @@ Function Invoke-GiteaFileDownload {
}
process {
Write-Verbose "File path: $filePath"
Write-Verbose "Type: $type"
# Handle the type parameter
# Skip directories and provide a verbose message
if ($type -eq "dir") {
Write-Verbose "Skipping directory: $filePath"
Write-Verbose "Skipping directory"
return [PSCustomObject]@{
Path = $filePath
SourceURL = $downloadURL
FilePath = $filePath
Type = $type
Success = $true
Error = "Skipped - item is a directory"
@@ -418,12 +429,10 @@ Function Invoke-GiteaFileDownload {
# Handle invalid entry types
if ([string]::IsNullOrEmpty($type) -and [string]::IsNullOrEmpty($downloadURL)) {
$errorMsg = "Invalid item type or missing download URL for path: $filePath"
$errorMsg = "Invalid item type or missing download URL for path"
Write-Error $errorMsg
return [PSCustomObject]@{
Path = $filePath
SourceURL = $downloadURL
FilePath = $filePath
Type = $type
Success = $false
Error = $errorMsg
@@ -432,59 +441,70 @@ Function Invoke-GiteaFileDownload {
}
}
Write-Verbose "Processing download URL: $downloadURL"
# Set the output path based on parameters
$currentOutputPath = ""
# Get the file name from the download URL or file path
$outputFileName = $downloadURL.Substring($downloadURL.LastIndexOf("/") + 1)
# Clean the file name by removing any query string parameters and HTML encoded characters
$outputFileName = [System.Uri]::UnescapeDataString($outputFileName.Split("?")[0])
if ($PreserveRelativePath -and $filePath) {
# If PreserveRelativePath is used, set up the directory structure
Write-Verbose "Preserving relative path structure for: $filePath"
if ($outputPath) {
# If outputPath is specified, use it as the base directory
$baseDir = $outputPath
Write-Verbose "Using base directory: $baseDir"
# Parse the download URL to extract the file path and file name
# Separate the URL into its components: Gitea URL, Repo Owner, Repo Name, branch, file path, and file name
$uri = New-Object System.Uri($downloadURL)
$pathSegments = $uri.AbsolutePath.Trim('/').Split('/')
# Everything after the branch + 1 segment is considered the file path with the last segment being the file name
$branchIndex = [Array]::IndexOf($pathSegments, "branch") + 2
$DownloadFilePath = $pathSegments[$branchIndex..($pathSegments.Length - 2)] -join '/'
$DownloadFileName = $pathSegments[-1]
# Combine the base directory with the file path
$currentOutputPath = Join-Path -Path $baseDir -ChildPath $filePath
} else {
# If no outputPath is specified, use the current directory as base
$currentOutputPath = Join-Path -Path (Get-Location) -ChildPath $filePath
}
if ($PreserveRelativePath -and $outputPath) {
# If PreserveRelativePath is used, set up the directory structure
Write-Verbose "Preserving relative path structure for: $DownloadFileName"
$baseDir = $outputPath
Write-Verbose "Using base directory: $baseDir"
# Normalize path separators
$currentOutputPath = $currentOutputPath.Replace("/", [System.IO.Path]::DirectorySeparatorChar)
Write-Verbose "Output path with preserved structure: $currentOutputPath"
} else {
# Standard path handling (unchanged from original)
if ($outputPath) {
$currentOutputPath = $outputPath
} else {
# Append the outputFileName to the current location
$currentOutputPath = Join-Path -Path (Get-Location) -ChildPath $outputFileName
}
Write-Verbose "Output path: $currentOutputPath"
# Combine the base directory with the file path
$fileOutputPath = Join-Path -Path $baseDir -ChildPath $DownloadFilePath
# Combine with the file name
$fileOutputPath = Join-Path -Path $fileOutputPath -ChildPath $DownloadFileName
}
elseif($PreserveRelativePath) {
# If no outputPath is specified, use the current directory as base and the file name from the download URL
$fileOutputPath = Join-Path -Path (Get-Location) -ChildPath $DownloadFilePath
# Combine with the file name
$fileOutputPath = Join-Path -Path $fileOutputPath -ChildPath $DownloadFileName
}
elseif ($outputPath -and $outputName) {
# If both outputPath and outputName are specified, use outputPath as the base directory with the file name specified by outputName
$fileOutputPath = Join-Path -Path $outputPath -ChildPath $outputName
}
elseif ($outputPath) {
# If outputPath is specified, use it as the base directory with the file name from the download URL
$fileOutputPath = Join-Path -Path $outputPath -ChildPath $DownloadFileName
}
elseif($outputName) {
# If only outputName is specified, use the current directory with the specified outputName
$fileOutputPath = Join-Path -Path (Get-Location) -ChildPath $outputName
}
else {
# Fallback to current directory with the file name from the download URL
$fileOutputPath = Join-Path -Path (Get-Location) -ChildPath $DownloadFileName
}
# Normalize path separators
$fileOutputPath = $fileOutputPath.Replace("/", [System.IO.Path]::DirectorySeparatorChar)
Write-Verbose "Output path: $fileOutputPath"
$result = [PSCustomObject]@{
Path = $currentOutputPath
Path = $fileOutputPath
SourceURL = $downloadURL
FilePath = $filePath
Type = $type
Type = "file"
Success = $false
Error = $null
Timestamp = Get-Date
FileSize = $null
}
if((Test-Path -Path $currentOutputPath -PathType Leaf) -and (-not $force)) {
$errorMsg = "The file '$currentOutputPath' already exists. Use the -Force switch to overwrite the file."
if((Test-Path -Path $fileOutputPath -PathType Leaf) -and (-not $force)) {
$errorMsg = "The file '$fileOutputPath' already exists. Use the -Force switch to overwrite the file."
Write-Error $errorMsg
$result.Error = $errorMsg
return $result
@@ -492,23 +512,23 @@ Function Invoke-GiteaFileDownload {
try {
# Create the directory structure if it doesn't exist
$directory = Split-Path -Path $currentOutputPath -Parent
$directory = Split-Path -Path $fileOutputPath -Parent
if (-not (Test-Path -Path $directory -PathType Container) -and $directory) {
Write-Verbose "Creating directory structure: $directory"
New-Item -Path $directory -ItemType Directory -Force | Out-Null
}
# Download the file
Write-Verbose "Downloading from $downloadURL to $currentOutputPath"
Write-Verbose "Downloading from $downloadURL to $fileOutputPath"
# Use synchronous download
$webClient.DownloadFile($downloadURL, $currentOutputPath)
$webClient.DownloadFile($downloadURL, $fileOutputPath)
Write-Verbose "File downloaded successfully to $currentOutputPath"
Write-Verbose "File downloaded successfully to $fileOutputPath"
# Get file info for the result object
if (Test-Path -Path $currentOutputPath -PathType Leaf) {
$fileInfo = Get-Item -Path $currentOutputPath
if (Test-Path -Path $fileOutputPath -PathType Leaf) {
$fileInfo = Get-Item -Path $fileOutputPath
$result.FileSize = $fileInfo.Length
}
@@ -664,11 +684,10 @@ Function Get-GiteaChildItem {
$paths = $path
foreach ($path in $paths) {
Write-Verbose "Processing path: $path"
# Normalize the path format - replace backslashes with forward slashes and trim trailing slashes
# Normalize path separators for cross-platform compatibility
$normalizedPath = $path -replace '\\', '/' -replace '/$', ''
$encodedPath = [System.Uri]::EscapeDataString($normalizedPath)
Write-Verbose "Normalized path: $normalizedPath"
Write-Verbose "Encoded path: $encodedPath"
$encodedPath = [System.Uri]::EscapeDataString($normalizedPath)
$url = "$giteaURL"
$url += "/api/v1/repos"
$url += "/$repoOwner"
@@ -713,7 +732,7 @@ Function Get-GiteaChildItem {
$item.size = [long]$matches[1]
}
# Set the download URL to the media endpoint for LFS files to download the actual file
$item.download_url = "$giteaURL/api/v1/repos/$repoOwner/$repoName/media/$($item.path)"
$item.download_url = "$giteaURL/api/v1/repos/$repoOwner/$repoName/media/$($item.path)?ref=$branch"
}
$itemObj = [PSCustomObject]@{
@@ -1010,4 +1029,4 @@ function Get-GiteaReleases {
}
}
Export-ModuleMember -Function Set-GiteaConfiguration, Get-GiteaConfiguration, Get-GiteaFileContent, Invoke-GiteaFileDownload, Get-GiteaChildItem, Get-GiteaLFSFile, Get-GiteaReleases
# Export-ModuleMember -Function Set-GiteaConfiguration, Get-GiteaConfiguration, Get-GiteaFileContent, Invoke-GiteaFileDownload, Get-GiteaChildItem, Get-GiteaReleases

View File

@@ -1,7 +1,7 @@
# Get-GiteaChildItem.Tests.ps1
# Import the module under test
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities.psm1'
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities\PS-GiteaUtilities.psm1'
Import-Module -Name $modulePath -Force
Describe 'Get-GiteaChildItem' {

View File

@@ -1,7 +1,7 @@
# Get-GiteaConfiguration.Tests.ps1
# Import the module under test
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities.psm1'
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities\PS-GiteaUtilities.psm1'
Import-Module -Name $modulePath -Force
Describe 'Get-GiteaConfiguration' {

View File

@@ -1,7 +1,7 @@
# Get-GiteaFileContent.Tests.ps1
# Import the module under test
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities.psm1'
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities\PS-GiteaUtilities.psm1'
Import-Module -Name $modulePath -Force
Describe 'Get-GiteaFileContent' {

View File

@@ -1,7 +1,7 @@
# Get-GiteaReleases.Tests.ps1
# Import the module
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities.psm1'
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities\PS-GiteaUtilities.psm1'
Import-Module -Name $modulePath -Force
Describe 'Get-GiteaReleases' {

View File

@@ -1,7 +1,7 @@
# Invoke-GiteaFileDownload.Tests.ps1
# Import the module under test
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities.psm1'
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities\PS-GiteaUtilities.psm1'
Import-Module -Name $modulePath -Force
Describe 'Invoke-GiteaFileDownload' {
@@ -13,7 +13,7 @@ Describe 'Invoke-GiteaFileDownload' {
}
# Correct webClient Mock: headers, download, dispose
Mock -CommandName New-Object -ModuleName PS-GiteaUtilities -MockWith {
Mock -CommandName New-Object -ModuleName PS-GiteaUtilities -ParameterFilter { $TypeName -eq 'System.Net.WebClient' } -MockWith {
$headers = New-Object System.Net.WebHeaderCollection
# Create a real object
@@ -54,19 +54,49 @@ Describe 'Invoke-GiteaFileDownload' {
}
}
Context 'When preserving relative paths' {
It 'Should create a path based on filePath with PreserveRelativePath' {
Context 'When specifying an outputPath' {
It 'Should create a path based on outputPath' {
$result = Invoke-GiteaFileDownload -downloadURL 'https://gitea.example.com/raw/path/to/file.txt' `
-filePath 'docs/manual/file.txt' -PreserveRelativePath -token 'abc123'
-outputPath 'docs/manual/' -token 'abc123'
$result.Path | Should -Match 'docs[\\/]+manual[\\/]+file\.txt$'
$result.Success | Should -Be $true
}
}
Context 'When specifying an outputName' {
It 'Should download file and name it based on outputName' {
$result = Invoke-GiteaFileDownload -downloadURL 'https://gitea.example.com/raw/path/to/file.txt' `
-outputName 'newfile.txt' -token 'abc123'
$result.Path | Should -Match 'newfile\.txt$'
$result.Success | Should -Be $true
}
}
Context 'When specifying an outputName and outputPath' {
It 'Should download file and name it based on outputName' {
$result = Invoke-GiteaFileDownload -downloadURL 'https://gitea.example.com/raw/path/to/file.txt' `
-outputPath 'docs/manual/' -outputName 'newfile.txt' -token 'abc123'
$result.Path | Should -Match 'docs[\\/]+manual[\\/]+newfile\.txt$'
$result.Success | Should -Be $true
}
}
Context 'When using -PreserveRelativePath' {
It 'Should preserve the relative path structure' {
$result = Invoke-GiteaFileDownload -downloadURL 'https://gitea.example.com/raw/path/to/file.txt' `
-PreserveRelativePath -token 'abc123'
$result.Path | Should -Match 'path[\\/]+to[\\/]+file\.txt$'
$result.Success | Should -Be $true
}
}
Context 'When skipping directories' {
It 'Should skip items with type = dir' {
$result = Invoke-GiteaFileDownload -filePath 'docs/' -type 'dir' -token 'abc123'
$result = Invoke-GiteaFileDownload -outputPath 'docs/' -type 'dir' -token 'abc123'
$result.Success | Should -Be $true
$result.Error | Should -Match 'Skipped'
@@ -93,7 +123,7 @@ Describe 'Invoke-GiteaFileDownload' {
Context 'When download fails' {
BeforeEach {
Mock -CommandName New-Object -ModuleName PS-GiteaUtilities -MockWith {
Mock -CommandName New-Object -ModuleName PS-GiteaUtilities -ParameterFilter { $TypeName -eq 'System.Net.WebClient' } -MockWith {
$headers = New-Object System.Net.WebHeaderCollection
$webClient = New-Object PSObject

View File

@@ -4,7 +4,7 @@ Describe 'Set-GiteaConfiguration' {
BeforeAll {
# Import the module dynamically
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities.psm1'
$modulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\PS-GiteaUtilities\PS-GiteaUtilities.psm1'
Import-Module -Name $modulePath -Force
}