feat: scaffold initial loyalty-agent-service project with OpenAPI specifications and OAuth2-enabled API client configuration

This commit is contained in:
SonPhung
2026-07-17 01:49:30 +07:00
commit c3861d6476
30 changed files with 6991 additions and 0 deletions

38
download-specs.ps1 Normal file
View File

@@ -0,0 +1,38 @@
$baseUrl = "http://192.168.99.242:8081"
$specs = @(
@{ name="attribute"; url="/attribute/v3/api-docs" },
@{ name="batch-scheduler"; url="/batch-scheduler/v3/api-docs" },
@{ name="catalogue"; url="/catalogue/v3/api-docs" },
@{ name="customer"; url="/customer/v3/api-docs" },
@{ name="identity"; url="/identity/v3/api-docs" },
@{ name="marketing"; url="/marketing/v3/api-docs" },
@{ name="master"; url="/master/v3/api-docs" },
@{ name="notification"; url="/notification/v3/api-docs" },
@{ name="reward"; url="/reward/v3/api-docs" },
@{ name="transaction"; url="/transaction/v3/api-docs" }
)
$targetDir = "src/main/resources/specs"
if (-not (Test-Path $targetDir)) {
New-Item -ItemType Directory -Force -Path $targetDir | Out-Null
}
foreach ($spec in $specs) {
$fullUrl = $baseUrl + $spec.url
$outputPath = Join-Path $targetDir ($spec.name + ".json")
Write-Host "Downloading $($spec.name) from $fullUrl ..."
try {
Invoke-WebRequest -Uri $fullUrl -OutFile $outputPath -UseBasicParsing
Write-Host "[OK] $($spec.name) saved to $outputPath"
} catch {
Write-Host "[WARNING] Failed to download from $fullUrl, trying alternative path..."
$altUrl = $baseUrl + "/v3/api-docs/" + $spec.name
try {
Invoke-WebRequest -Uri $altUrl -OutFile $outputPath -UseBasicParsing
Write-Host "[OK] $($spec.name) saved to $outputPath (alternative path)"
} catch {
Write-Host "[ERROR] Failed to download $($spec.name)"
}
}
}
Write-Host "Done downloading specs."