07ea171af9
Generic: Repo Health / Site Health (push) Has been skipped
Generic: Repo Health / Access control (push) Successful in 1s
Platform: moko-platform CI / Gate 1: Code Quality (push) Failing after 43s
Platform: moko-platform CI / Gate 2: Unit Tests (8.1) (push) Has been cancelled
Platform: moko-platform CI / Gate 2: Unit Tests (8.2) (push) Has been cancelled
Platform: moko-platform CI / Gate 2: Unit Tests (8.3) (push) Has been cancelled
Platform: moko-platform CI / Gate 3: Self-Health Check (push) Has been cancelled
Platform: moko-platform CI / Gate 4: Governance (push) Has been cancelled
Platform: moko-platform CI / Gate 5: Template Integrity (push) Has been cancelled
Platform: moko-platform CI / CI Summary (push) Has been cancelled
Generic: Repo Health / Release configuration (push) Has been cancelled
Generic: Repo Health / Scripts governance (push) Has been cancelled
Generic: Repo Health / Repository health (push) Has been cancelled
New CLI tools: - manifest_element.php — extract element/type/prefix from any platform manifest - release_create.php — create/overwrite Gitea releases with proper naming - release_package.php — build ZIP+tar.gz, SHA-256, upload assets - release_promote.php — promote releases between channels (dev→RC→stable) - version_reset_dev.php — reset platform version on dev branch after release Updated CLI tools: - version_bump.php — now writes to manifests, Dolibarr mod, composer.json (not just README) - release_cascade.php — added --version for version-aware deletion of stale releases - release_validate.php — auto-detect platform, --github-output, source dir check Workflow changes (auto-release.yml): - Draft PR to main → auto-promote highest pre-release to RC - Merged PR to main → promote RC to stable (skip rebuild when RC exists) - Removed paths filter for Go/Node/generic repo compatibility - Fixed cascade --api-base parameter bug Workflow changes (pre-release.yml): - Auto-trigger development pre-release on feature branch merge to dev - Removed paths filter Infrastructure: - RepositorySynchronizer: fixed template repo names, .mokogitea/workflows path, universal workflow cascade (Template-Generic → other templates) - bulk_sync.php: syncs universal workflows to templates before repo sync - PHPDoc added to 4 classes missing class-level docs - Version bump 09.00.00 → 09.01.00 Closes #152 #153 #154 #155 #156 #157 #158 #159 #161 #162 Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
317 lines
12 KiB
PHP
317 lines
12 KiB
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* FILE INFORMATION
|
|
* DEFGROUP: moko-platform.CLI
|
|
* INGROUP: moko-platform
|
|
* REPO: https://git.mokoconsulting.tech/MokoConsulting/moko-platform
|
|
* PATH: /cli/release_promote.php
|
|
* BRIEF: Promote a Gitea release from one channel to another (rename release, tag, assets)
|
|
*
|
|
* Usage:
|
|
* php release_promote.php --from development --to release-candidate --token TOKEN --api-base URL
|
|
* php release_promote.php --from release-candidate --to stable --token TOKEN --api-base URL --path .
|
|
*
|
|
* When promoting to stable, --path detects extension type prefix for asset renaming.
|
|
* When --from is "auto", checks beta > alpha > development and uses the first found.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
$from = null;
|
|
$to = null;
|
|
$token = null;
|
|
$apiBase = null;
|
|
$path = '.';
|
|
$branch = 'main';
|
|
|
|
foreach ($argv as $i => $arg) {
|
|
if ($arg === '--from' && isset($argv[$i + 1])) {
|
|
$from = $argv[$i + 1];
|
|
}
|
|
if ($arg === '--to' && isset($argv[$i + 1])) {
|
|
$to = $argv[$i + 1];
|
|
}
|
|
if ($arg === '--token' && isset($argv[$i + 1])) {
|
|
$token = $argv[$i + 1];
|
|
}
|
|
if ($arg === '--api-base' && isset($argv[$i + 1])) {
|
|
$apiBase = $argv[$i + 1];
|
|
}
|
|
if ($arg === '--path' && isset($argv[$i + 1])) {
|
|
$path = $argv[$i + 1];
|
|
}
|
|
if ($arg === '--branch' && isset($argv[$i + 1])) {
|
|
$branch = $argv[$i + 1];
|
|
}
|
|
}
|
|
|
|
$token = $token ?: (getenv('GA_TOKEN') ?: (getenv('GITEA_TOKEN') ?: null));
|
|
|
|
if ($to === null || $token === null || $apiBase === null) {
|
|
fwrite(STDERR, "Usage: release_promote.php --from <channel|auto> --to <channel> --token TOKEN --api-base URL [--path .]\n");
|
|
fwrite(STDERR, " --from auto: checks beta > alpha > development\n");
|
|
exit(1);
|
|
}
|
|
|
|
// ── Suffix maps ──────────────────────────────────────────────────────────────
|
|
$suffixMap = [
|
|
'development' => '-dev',
|
|
'alpha' => '-alpha',
|
|
'beta' => '-beta',
|
|
'release-candidate' => '-rc',
|
|
'stable' => '',
|
|
];
|
|
|
|
// ── Channel hierarchy (highest first) ────────────────────────────────────────
|
|
$channelOrder = ['beta', 'alpha', 'development'];
|
|
|
|
// ── Helper: Gitea API request ────────────────────────────────────────────────
|
|
/** @return array<string, mixed>|null */
|
|
function giteaApi(string $url, string $token, string $method = 'GET', ?string $body = null): ?array
|
|
{
|
|
$ch = curl_init($url);
|
|
curl_setopt_array($ch, [
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
CURLOPT_HTTPHEADER => [
|
|
"Authorization: token {$token}",
|
|
'Content-Type: application/json',
|
|
],
|
|
CURLOPT_TIMEOUT => 30,
|
|
CURLOPT_CUSTOMREQUEST => $method,
|
|
]);
|
|
if ($body !== null) {
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
|
|
}
|
|
$response = curl_exec($ch);
|
|
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
|
curl_close($ch);
|
|
|
|
if ($httpCode < 200 || $httpCode >= 300 || empty($response)) {
|
|
return null;
|
|
}
|
|
return json_decode($response, true) ?: null;
|
|
}
|
|
|
|
function giteaDownload(string $url, string $token, string $dest): bool
|
|
{
|
|
$ch = curl_init($url);
|
|
$fp = fopen($dest, 'wb');
|
|
curl_setopt_array($ch, [
|
|
CURLOPT_HTTPHEADER => ["Authorization: token {$token}"],
|
|
CURLOPT_FILE => $fp,
|
|
CURLOPT_FOLLOWLOCATION => true,
|
|
CURLOPT_TIMEOUT => 120,
|
|
]);
|
|
curl_exec($ch);
|
|
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
|
curl_close($ch);
|
|
fclose($fp);
|
|
return $httpCode >= 200 && $httpCode < 300;
|
|
}
|
|
|
|
// ── Resolve --from auto ──────────────────────────────────────────────────────
|
|
if ($from === 'auto') {
|
|
foreach ($channelOrder as $candidate) {
|
|
$data = giteaApi("{$apiBase}/releases/tags/{$candidate}", $token);
|
|
if ($data && !empty($data['id'])) {
|
|
$from = $candidate;
|
|
echo "Auto-detected source channel: {$from}\n";
|
|
break;
|
|
}
|
|
}
|
|
if ($from === 'auto') {
|
|
echo "No pre-release found to promote\n";
|
|
exit(0);
|
|
}
|
|
}
|
|
|
|
// ── Find source release ──────────────────────────────────────────────────────
|
|
$sourceRelease = giteaApi("{$apiBase}/releases/tags/{$from}", $token);
|
|
if (!$sourceRelease || empty($sourceRelease['id'])) {
|
|
fwrite(STDERR, "No release found with tag: {$from}\n");
|
|
exit(1);
|
|
}
|
|
|
|
$sourceId = $sourceRelease['id'];
|
|
$sourceName = $sourceRelease['name'] ?? '';
|
|
$sourceBody = $sourceRelease['body'] ?? '';
|
|
echo "Source: {$from} (id: {$sourceId}) — {$sourceName}\n";
|
|
|
|
// ── Get source assets ────────────────────────────────────────────────────────
|
|
$assets = giteaApi("{$apiBase}/releases/{$sourceId}/assets", $token) ?: [];
|
|
echo "Assets: " . count($assets) . " file(s)\n";
|
|
|
|
// ── Download assets to temp ──────────────────────────────────────────────────
|
|
$tmpDir = sys_get_temp_dir() . '/moko-promote-' . getmypid();
|
|
@mkdir($tmpDir, 0755, true);
|
|
|
|
foreach ($assets as $asset) {
|
|
$name = $asset['name'];
|
|
$downloadUrl = $asset['browser_download_url'];
|
|
echo " Downloading: {$name}\n";
|
|
giteaDownload($downloadUrl, $token, "{$tmpDir}/{$name}");
|
|
}
|
|
|
|
// ── Detect type prefix for stable promotion ──────────────────────────────────
|
|
$typePrefix = '';
|
|
if ($to === 'stable') {
|
|
$root = realpath($path) ?: $path;
|
|
$manifestFiles = array_merge(
|
|
glob("{$root}/src/pkg_*.xml") ?: [],
|
|
glob("{$root}/src/*.xml") ?: [],
|
|
glob("{$root}/*.xml") ?: []
|
|
);
|
|
foreach ($manifestFiles as $xmlFile) {
|
|
$xmlContent = file_get_contents($xmlFile);
|
|
if (strpos($xmlContent, '<extension') === false) {
|
|
continue;
|
|
}
|
|
|
|
$extType = '';
|
|
$extFolder = '';
|
|
if (preg_match('/type="([^"]*)"/', $xmlContent, $tm)) {
|
|
$extType = $tm[1];
|
|
}
|
|
if (preg_match('/group="([^"]*)"/', $xmlContent, $gm)) {
|
|
$extFolder = $gm[1];
|
|
}
|
|
|
|
switch ($extType) {
|
|
case 'plugin':
|
|
$typePrefix = "plg_{$extFolder}_";
|
|
break;
|
|
case 'module':
|
|
$typePrefix = 'mod_';
|
|
break;
|
|
case 'component':
|
|
$typePrefix = 'com_';
|
|
break;
|
|
case 'template':
|
|
$typePrefix = 'tpl_';
|
|
break;
|
|
case 'library':
|
|
$typePrefix = 'lib_';
|
|
break;
|
|
case 'package':
|
|
$typePrefix = 'pkg_';
|
|
break;
|
|
}
|
|
if ($typePrefix !== '') {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ── Rename assets ────────────────────────────────────────────────────────────
|
|
$oldSuffix = $suffixMap[$from] ?? '';
|
|
$newSuffix = $suffixMap[$to] ?? '';
|
|
|
|
$renamedAssets = [];
|
|
foreach ($assets as $asset) {
|
|
$oldName = $asset['name'];
|
|
$newName = $oldName;
|
|
|
|
// Strip old suffix
|
|
if ($oldSuffix !== '') {
|
|
$newName = str_replace($oldSuffix, '', $newName);
|
|
}
|
|
|
|
// Add type prefix for stable (if not already prefixed)
|
|
if ($to === 'stable' && $typePrefix !== '' && strpos($newName, $typePrefix) !== 0) {
|
|
// Strip any existing type prefix to prevent duplication
|
|
$newName = preg_replace('/^(pkg_|com_|mod_|plg_[a-z]+_|tpl_|lib_)/', '', $newName);
|
|
$newName = $typePrefix . $newName;
|
|
}
|
|
|
|
// Add new suffix (for non-stable targets)
|
|
if ($newSuffix !== '' && strpos($newName, $newSuffix) === false) {
|
|
// Insert before extension
|
|
$newName = preg_replace('/(\.(zip|tar\.gz|sha256))$/', $newSuffix . '$1', $newName);
|
|
}
|
|
|
|
$renamedAssets[] = ['old' => $oldName, 'new' => $newName];
|
|
if ($oldName !== $newName) {
|
|
echo " Rename: {$oldName} → {$newName}\n";
|
|
}
|
|
}
|
|
|
|
// ── Delete source release + tag ──────────────────────────────────────────────
|
|
giteaApi("{$apiBase}/releases/{$sourceId}", $token, 'DELETE');
|
|
giteaApi("{$apiBase}/tags/{$from}", $token, 'DELETE');
|
|
echo "Deleted source: {$from} release + tag\n";
|
|
|
|
// ── Delete existing target release + tag (if any) ────────────────────────────
|
|
$existingTarget = giteaApi("{$apiBase}/releases/tags/{$to}", $token);
|
|
if ($existingTarget && !empty($existingTarget['id'])) {
|
|
giteaApi("{$apiBase}/releases/{$existingTarget['id']}", $token, 'DELETE');
|
|
giteaApi("{$apiBase}/tags/{$to}", $token, 'DELETE');
|
|
echo "Deleted existing target: {$to} release + tag\n";
|
|
}
|
|
|
|
// ── Create target release ────────────────────────────────────────────────────
|
|
$isPrerelease = ($to !== 'stable');
|
|
$newName = preg_replace('/\(' . preg_quote($from, '/') . '\)/', "({$to})", $sourceName);
|
|
if ($newName === $sourceName) {
|
|
$newName = str_ireplace($from, $to, $sourceName);
|
|
}
|
|
|
|
$newBody = str_ireplace($from, $to, $sourceBody);
|
|
|
|
$payload = json_encode([
|
|
'tag_name' => $to,
|
|
'target_commitish' => $branch,
|
|
'name' => $newName,
|
|
'body' => $newBody,
|
|
'prerelease' => $isPrerelease,
|
|
]);
|
|
|
|
$newRelease = giteaApi("{$apiBase}/releases", $token, 'POST', $payload);
|
|
if (!$newRelease || empty($newRelease['id'])) {
|
|
fwrite(STDERR, "Failed to create {$to} release\n");
|
|
exit(1);
|
|
}
|
|
|
|
$newId = $newRelease['id'];
|
|
echo "Created: {$to} release (id: {$newId})\n";
|
|
|
|
// ── Upload renamed assets ────────────────────────────────────────────────────
|
|
foreach ($renamedAssets as $entry) {
|
|
$localFile = "{$tmpDir}/{$entry['old']}";
|
|
if (!file_exists($localFile)) {
|
|
continue;
|
|
}
|
|
|
|
$uploadName = urlencode($entry['new']);
|
|
$url = "{$apiBase}/releases/{$newId}/assets?name={$uploadName}";
|
|
|
|
$ch = curl_init($url);
|
|
curl_setopt_array($ch, [
|
|
CURLOPT_POST => true,
|
|
CURLOPT_HTTPHEADER => [
|
|
"Authorization: token {$token}",
|
|
'Content-Type: application/octet-stream',
|
|
],
|
|
CURLOPT_POSTFIELDS => file_get_contents($localFile),
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
CURLOPT_TIMEOUT => 120,
|
|
]);
|
|
curl_exec($ch);
|
|
$code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
|
curl_close($ch);
|
|
|
|
$status = ($code >= 200 && $code < 300) ? 'OK' : "FAILED ({$code})";
|
|
echo " Upload: {$entry['new']} — {$status}\n";
|
|
}
|
|
|
|
// ── Cleanup temp ─────────────────────────────────────────────────────────────
|
|
array_map('unlink', glob("{$tmpDir}/*") ?: []);
|
|
@rmdir($tmpDir);
|
|
|
|
echo "Promoted: {$from} → {$to}\n";
|
|
exit(0);
|