sync build tree from private myoffice

This commit is contained in:
myoffice-sync
2026-08-05 11:31:19 +00:00
parent 405abdfe69
commit afa4c42105
60 changed files with 249 additions and 2400 deletions
+98 -33
View File
@@ -1,9 +1,9 @@
# Sync full source from the private repo to the public Gitea repo (manual build + Proxmox scripts).
# Sync buildable source + Proxmox scripts to the public Gitea repo.
# Allowlist: .publishinclude | Skips: Docker, private .gitignore, *.bat, tests, docs, CI, junk
#
# Usage:
# $env:GITEA_TOKEN = '<token>'
# .\proxmox\sync-public.ps1 -GiteaUrl https://gitea.example.com -Owner org -Repo myoffice-public -Push
#
# Copies tracked git files (plus generates public README.md). Skips private CI, secrets, build junk.
# .\proxmox\sync-public.ps1 -GiteaUrl https://gitea.example.com -Owner org -Repo myoffice_public -Push
[CmdletBinding()]
param(
@@ -31,20 +31,36 @@ $repoRoot = Resolve-Path (Join-Path $scriptDir '..')
Set-Location $repoRoot
$GiteaUrl = $GiteaUrl.TrimEnd('/')
$includeFile = Join-Path $repoRoot '.publishinclude'
if (-not (Test-Path $includeFile)) {
throw "Missing $includeFile"
}
if (-not $WorkDir) {
$WorkDir = Join-Path $env:TEMP 'myoffice-public-sync'
}
function Test-SkipPath([string]$RelPath) {
function Test-SkipRel([string]$RelPath) {
$n = $RelPath -replace '\\', '/'
$base = Split-Path -Leaf $n
if ($n -eq 'Docker' -or $n.StartsWith('Docker/')) { return $true }
if ($base -eq '.gitignore') { return $true }
if ($base -like '*.bat') { return $true }
if ($n -eq 'MyOffice.Tests' -or $n.StartsWith('MyOffice.Tests/')) { return $true }
if ($n -eq 'docs' -or $n.StartsWith('docs/')) { return $true }
if ($n -eq '.gitea' -or $n.StartsWith('.gitea/')) { return $true }
if ($n -eq '_Published' -or $n.StartsWith('_Published/')) { return $true }
if ($n -eq 'myoffice-publish.tar.gz') { return $true }
if ($n -eq 'Docker/data' -or $n.StartsWith('Docker/data/')) { return $true }
if ($n -eq '.env' -or $n.StartsWith('.env.') -or $n -eq 'env.local') { return $true }
if ($base -eq '.dockerignore' -or $base -eq 'gulpfile.js' -or $base -eq 'build.ps1' -or $base -eq 'linux_deploy.sh') { return $true }
if ($n -eq 'proxmox/README.public.md') { return $true }
if ($n.EndsWith('.user') -or $n.EndsWith('.suo')) { return $true }
if ($n -match '(^|/)node_modules(/|$)' -or $n -match '(^|/)(bin|obj|\.angular)(/|$)') { return $true }
if ($n -eq '_Published' -or $n.StartsWith('_Published/') -or $base -eq 'myoffice-publish.tar.gz') { return $true }
if ($base -eq '.env' -or $base -eq 'env.local' -or $base -like '.env.*') { return $true }
if ($base -eq 'appsettings.Docker.json' -or $base -eq 'appsettings.shared.Docker.json' -or $base -eq 'environment.docker.ts') { return $true }
if ($base -like '*.user' -or $base -like '*.suo') { return $true }
if ($base -eq 'karma.conf.js' -or $base -like '*.spec.ts') { return $true }
return $false
}
@@ -59,7 +75,7 @@ else {
}
Write-Host "-----------------------------------------------"
Write-Host "Sync full source -> $Owner/$Repo ($Branch)"
Write-Host "Sync allowlist (.publishinclude) -> $Owner/$Repo ($Branch)"
Write-Host "WorkDir: $WorkDir"
Write-Host "-----------------------------------------------"
@@ -70,9 +86,7 @@ New-Item -ItemType Directory -Path $WorkDir | Out-Null
$cloned = $false
git clone --depth 1 --branch $Branch $remote $WorkDir 2>$null
if ($LASTEXITCODE -eq 0) {
$cloned = $true
}
if ($LASTEXITCODE -eq 0) { $cloned = $true }
if (-not $cloned) {
Write-Host "Clone failed or empty repo — initializing new git repo..."
@@ -89,33 +103,71 @@ Get-ChildItem -Path $WorkDir -Force | Where-Object { $_.Name -ne '.git' } | ForE
Remove-Item $_.FullName -Recurse -Force
}
$tracked = git -C $repoRoot ls-files
$tracked = @(git -C $repoRoot ls-files)
$trackedSet = [System.Collections.Generic.HashSet[string]]::new([StringComparer]::OrdinalIgnoreCase)
foreach ($t in $tracked) { [void]$trackedSet.Add(($t -replace '\\', '/')) }
$copied = 0
$skipped = 0
foreach ($f in $tracked) {
if (Test-SkipPath $f) {
$skipped++
continue
function Copy-Rel([string]$Rel) {
$script:n = $Rel -replace '\\', '/'
if (Test-SkipRel $n) {
$script:skipped++
return
}
$src = Join-Path $repoRoot $f
if (-not (Test-Path -LiteralPath $src)) {
continue
}
$dest = Join-Path $WorkDir $f
$src = Join-Path $repoRoot $n
if (-not (Test-Path -LiteralPath $src)) { return }
$dest = Join-Path $WorkDir $n
$destDir = Split-Path -Parent $dest
if (-not (Test-Path $destDir)) {
New-Item -ItemType Directory -Path $destDir -Force | Out-Null
}
Copy-Item -LiteralPath $src -Destination $dest -Force
$copied++
$script:copied++
}
Write-Host "Copied $copied tracked files (skipped $skipped)."
Get-Content -LiteralPath $includeFile | ForEach-Object {
$line = $_
if ($line -match '#') { $line = $line.Substring(0, $line.IndexOf('#')) }
$line = $line.Trim()
if (-not $line) { return }
$norm = $line -replace '\\', '/'
if ($norm.EndsWith('/')) {
$prefix = $norm
$dir = $norm.TrimEnd('/')
if (-not (Test-Path (Join-Path $repoRoot $dir))) {
Write-Host "Skip missing dir: $dir"
return
}
foreach ($t in $tracked) {
$tn = $t -replace '\\', '/'
if ($tn.StartsWith($prefix)) { Copy-Rel $tn }
}
Write-Host "Synced $dir/"
}
else {
if (Test-SkipRel $norm) {
$skipped++
Write-Host "Skip excluded: $norm"
return
}
$src = Join-Path $repoRoot $norm
if (-not (Test-Path -LiteralPath $src)) {
Write-Host "Skip missing file: $norm"
return
}
Copy-Rel $norm
Write-Host "Synced $norm"
}
}
Write-Host "Copied $copied files (skipped $skipped)."
$repoRawBase = "$GiteaUrl/$Owner/$Repo/raw/branch/$Branch"
$template = Join-Path $scriptDir 'README.public.md'
if (-not (Test-Path $template)) {
throw "Missing $template"
}
if (-not (Test-Path $template)) { throw "Missing $template" }
$readme = Get-Content -LiteralPath $template -Raw -Encoding utf8
$readme = $readme.
Replace('__GITEA_URL__', $GiteaUrl).
@@ -126,6 +178,21 @@ $readme = $readme.
Set-Content -LiteralPath (Join-Path $WorkDir 'README.md') -Value $readme -Encoding utf8 -NoNewline
Write-Host "Wrote public README.md"
@(
'**/bin/',
'**/obj/',
'**/node_modules/',
'**/.angular/',
'_Published/',
'myoffice-publish.tar.gz',
'*.user',
'.env',
'env.local',
'MyOffice.SPA/src/environments/environment.ts',
'MyOffice.Shared/appsettings.shared.Development.json',
'MyOffice.Shared/appsettings.shared.Production.json'
) | Set-Content -LiteralPath (Join-Path $WorkDir '.gitignore') -Encoding utf8
git -C $WorkDir add -A
$status = git -C $WorkDir status --porcelain
if (-not $status) {
@@ -133,16 +200,14 @@ if (-not $status) {
}
else {
git -C $WorkDir -c user.email='myoffice-sync@local' -c user.name='myoffice-sync' `
commit -m "sync full source from private myoffice"
commit -m "sync build tree from private myoffice"
Write-Host "Committed public snapshot."
}
if ($Push) {
Write-Host "Pushing to origin $Branch..."
git -C $WorkDir push -u origin "HEAD:$Branch"
if ($LASTEXITCODE -ne 0) {
throw "git push failed with exit code $LASTEXITCODE"
}
if ($LASTEXITCODE -ne 0) { throw "git push failed with exit code $LASTEXITCODE" }
Write-Host "Pushed."
}
else {