b3d9ee8255
Platform: moko-platform CI / Gate 2: Unit Tests (8.1) (push) Blocked by required conditions
Platform: moko-platform CI / Gate 2: Unit Tests (8.2) (push) Blocked by required conditions
Platform: moko-platform CI / Gate 2: Unit Tests (8.3) (push) Blocked by required conditions
Platform: moko-platform CI / Gate 3: Self-Health Check (push) Blocked by required conditions
Platform: moko-platform CI / Gate 4: Governance (push) Blocked by required conditions
Platform: moko-platform CI / Gate 5: Template Integrity (push) Blocked by required conditions
Platform: moko-platform CI / CI Summary (push) Blocked by required conditions
Generic: Repo Health / Release configuration (push) Blocked by required conditions
Generic: Repo Health / Scripts governance (push) Blocked by required conditions
Generic: Repo Health / Repository health (push) Blocked by required conditions
Generic: Repo Health / Site Health (push) Has been skipped
Generic: Repo Health / Access control (push) Successful in 2s
Platform: moko-platform CI / Gate 1: Code Quality (push) Failing after 36s
Wrap all CLI tools in cli/, automation/, maintenance/, deploy/, and release/ in classes extending CliFramework. Replaces manual $argv parsing with configure()/addArgument(), moves logic into run(): int, and converts fwrite(STDERR,...) to $this->log(). Two CLIApp subclasses (generate_dolibarr_version_txt, generate_joomla_update_xml) converted to extend CliFramework directly. Every script now gets free --help, --verbose, --quiet, --dry-run, --json, --no-color, banners, coloured logging, and progress bars. Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
311 lines
13 KiB
PHP
311 lines
13 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)
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/../lib/Enterprise/CliFramework.php';
|
|
|
|
use MokoEnterprise\CliFramework;
|
|
|
|
class ReleasePromoteCli extends CliFramework
|
|
{
|
|
protected function configure(): void
|
|
{
|
|
$this->setDescription('Promote a Gitea release from one channel to another');
|
|
$this->addArgument('--from', 'Source channel (or "auto")', '');
|
|
$this->addArgument('--to', 'Target channel (required)', '');
|
|
$this->addArgument('--token', 'Gitea API token', '');
|
|
$this->addArgument('--api-base', 'Gitea API base URL for the repo', '');
|
|
$this->addArgument('--path', 'Repository root for type prefix detection', '.');
|
|
$this->addArgument('--branch', 'Target branch', 'main');
|
|
}
|
|
|
|
protected function run(): int
|
|
{
|
|
$from = $this->getArgument('--from') ?: null;
|
|
$to = $this->getArgument('--to') ?: null;
|
|
$token = $this->getArgument('--token') ?: null;
|
|
$apiBase = $this->getArgument('--api-base') ?: null;
|
|
$path = $this->getArgument('--path');
|
|
$branch = $this->getArgument('--branch');
|
|
|
|
$token = $token ?: (getenv('MOKOGITEA_TOKEN') ?: (getenv('GITEA_TOKEN') ?: null));
|
|
|
|
if ($to === null || $token === null || $apiBase === null) {
|
|
$this->log('ERROR', "Usage: release_promote.php --from <channel|auto> --to <channel> --token TOKEN --api-base URL [--path .]");
|
|
$this->log('ERROR', " --from auto: checks beta > alpha > development");
|
|
return 1;
|
|
}
|
|
|
|
// ── Suffix maps ──────────────────────────────────────────────────────────────
|
|
$suffixMap = [
|
|
'development' => '-dev',
|
|
'alpha' => '-alpha',
|
|
'beta' => '-beta',
|
|
'release-candidate' => '-rc',
|
|
'stable' => '',
|
|
];
|
|
|
|
// ── Channel hierarchy (highest first) ────────────────────────────────────────
|
|
$channelOrder = ['beta', 'alpha', 'development'];
|
|
|
|
// ── Resolve --from auto ──────────────────────────────────────────────────────
|
|
if ($from === 'auto') {
|
|
foreach ($channelOrder as $candidate) {
|
|
$data = $this->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";
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
// ── Find source release ──────────────────────────────────────────────────────
|
|
$sourceRelease = $this->giteaApi("{$apiBase}/releases/tags/{$from}", $token);
|
|
if (!$sourceRelease || empty($sourceRelease['id'])) {
|
|
$this->log('ERROR', "No release found with tag: {$from}");
|
|
return 1;
|
|
}
|
|
|
|
$sourceId = $sourceRelease['id'];
|
|
$sourceName = $sourceRelease['name'] ?? '';
|
|
$sourceBody = $sourceRelease['body'] ?? '';
|
|
echo "Source: {$from} (id: {$sourceId}) — {$sourceName}\n";
|
|
|
|
// ── Get source assets ────────────────────────────────────────────────────────
|
|
$assets = $this->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";
|
|
$this->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 ──────────────────────────────────────────────
|
|
$this->giteaApi("{$apiBase}/releases/{$sourceId}", $token, 'DELETE');
|
|
$this->giteaApi("{$apiBase}/tags/{$from}", $token, 'DELETE');
|
|
echo "Deleted source: {$from} release + tag\n";
|
|
|
|
// ── Delete existing target release + tag (if any) ────────────────────────────
|
|
$existingTarget = $this->giteaApi("{$apiBase}/releases/tags/{$to}", $token);
|
|
if ($existingTarget && !empty($existingTarget['id'])) {
|
|
$this->giteaApi("{$apiBase}/releases/{$existingTarget['id']}", $token, 'DELETE');
|
|
$this->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 = $this->giteaApi("{$apiBase}/releases", $token, 'POST', $payload);
|
|
if (!$newRelease || empty($newRelease['id'])) {
|
|
$this->log('ERROR', "Failed to create {$to} release");
|
|
return 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";
|
|
return 0;
|
|
}
|
|
|
|
private 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;
|
|
}
|
|
|
|
private 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;
|
|
}
|
|
}
|
|
|
|
$app = new ReleasePromoteCli();
|
|
exit($app->execute());
|