mirror of
https://github.com/BrendanGreenlee/openclaw-android-heartbeat.git
synced 2026-08-17 16:49:14 +00:00
Import official OpenClaw Android app (apps/android @ 71a59512ba476df3328cf485d84748121cf341f2)
Pristine fork source for PROJ-0088. v1 will turn this into a WebView web shell; the WebSocket node infrastructure stays intact for v2 heartbeat.
This commit is contained in:
commit
7a380c40ed
656 changed files with 209982 additions and 0 deletions
447
scripts/build-release-artifacts.ts
Normal file
447
scripts/build-release-artifacts.ts
Normal file
|
|
@ -0,0 +1,447 @@
|
|||
#!/usr/bin/env bun
|
||||
/**
|
||||
* Android release helper that builds signed release artifacts from the pinned
|
||||
* version metadata, verifies signatures, and writes SHA-256 checksum files.
|
||||
*/
|
||||
|
||||
import { execFileSync } from "node:child_process";
|
||||
import { createHash } from "node:crypto";
|
||||
import {
|
||||
accessSync,
|
||||
constants,
|
||||
copyFileSync,
|
||||
existsSync,
|
||||
mkdirSync,
|
||||
readFileSync,
|
||||
readdirSync,
|
||||
writeFileSync,
|
||||
} from "node:fs";
|
||||
import { basename, delimiter, dirname, join, resolve } from "node:path";
|
||||
import { fileURLToPath } from "node:url";
|
||||
import { resolveAndroidVersion, syncAndroidVersioning } from "../../../scripts/lib/android-version.ts";
|
||||
|
||||
type ReleaseArtifact = {
|
||||
flavorName: "play" | "wear" | "third-party";
|
||||
kind: "aab" | "apk";
|
||||
gradleTask: string;
|
||||
sourcePath: string;
|
||||
};
|
||||
|
||||
type CliOptions = {
|
||||
artifact: "all" | ReleaseArtifact["flavorName"];
|
||||
dryRun: boolean;
|
||||
verifyApk?: string;
|
||||
};
|
||||
|
||||
export type AndroidBuildMetadata = {
|
||||
commit: string;
|
||||
timestamp: string;
|
||||
};
|
||||
|
||||
type ResolveAndroidBuildMetadataOptions = {
|
||||
env?: NodeJS.ProcessEnv;
|
||||
now?: () => Date;
|
||||
readGitCommit?: () => string;
|
||||
};
|
||||
|
||||
const scriptDir = dirname(fileURLToPath(import.meta.url));
|
||||
const androidDir = join(scriptDir, "..");
|
||||
const rootDir = join(androidDir, "..", "..");
|
||||
const releaseOutputDir = join(androidDir, "build", "release-artifacts");
|
||||
const releaseSigningManifestPath = join(androidDir, "Config", "ReleaseSigning.json");
|
||||
const fullGitCommitPattern = /^[a-f0-9]{40}$/u;
|
||||
const isoUtcTimestampPattern = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d{1,3})?Z$/u;
|
||||
|
||||
function normalizeFullGitCommit(raw: string): string {
|
||||
const commit = raw.trim().toLowerCase();
|
||||
if (!fullGitCommitPattern.test(commit)) {
|
||||
throw new Error("Android build metadata requires a full 40-character hexadecimal Git commit");
|
||||
}
|
||||
return commit;
|
||||
}
|
||||
|
||||
function normalizeIsoUtcTimestamp(raw: string): string {
|
||||
const timestamp = raw.trim();
|
||||
if (!isoUtcTimestampPattern.test(timestamp)) {
|
||||
throw new Error("OPENCLAW_BUILD_TIMESTAMP must be an ISO-8601 UTC timestamp");
|
||||
}
|
||||
|
||||
const parsed = new Date(timestamp);
|
||||
if (Number.isNaN(parsed.getTime())) {
|
||||
throw new Error("OPENCLAW_BUILD_TIMESTAMP must be an ISO-8601 UTC timestamp");
|
||||
}
|
||||
const normalized = parsed.toISOString();
|
||||
if (normalized.slice(0, 19) !== timestamp.slice(0, 19)) {
|
||||
throw new Error("OPENCLAW_BUILD_TIMESTAMP must be a valid ISO-8601 UTC timestamp");
|
||||
}
|
||||
return normalized;
|
||||
}
|
||||
|
||||
function readRepositoryCommit(): string {
|
||||
try {
|
||||
return execFileSync("git", ["rev-parse", "HEAD"], {
|
||||
cwd: rootDir,
|
||||
encoding: "utf8",
|
||||
stdio: ["ignore", "pipe", "ignore"],
|
||||
}).trim();
|
||||
} catch {
|
||||
throw new Error("Unable to resolve the Android release Git commit");
|
||||
}
|
||||
}
|
||||
|
||||
export function resolveAndroidBuildMetadata(
|
||||
options: ResolveAndroidBuildMetadataOptions = {},
|
||||
): AndroidBuildMetadata {
|
||||
const env = options.env ?? process.env;
|
||||
const explicitCommit = env.GIT_COMMIT?.trim() || env.GIT_SHA?.trim();
|
||||
let repositoryCommit: string | undefined;
|
||||
if (!explicitCommit) {
|
||||
try {
|
||||
repositoryCommit = (options.readGitCommit ?? readRepositoryCommit)().trim() || undefined;
|
||||
} catch {
|
||||
// GitHub's ambient SHA is safe only when there is no readable checkout.
|
||||
}
|
||||
}
|
||||
const commitSource = explicitCommit || repositoryCommit || env.GITHUB_SHA?.trim();
|
||||
if (!commitSource) {
|
||||
throw new Error("Unable to resolve the Android release Git commit");
|
||||
}
|
||||
const commit = normalizeFullGitCommit(commitSource);
|
||||
|
||||
const configuredTimestamp = env.OPENCLAW_BUILD_TIMESTAMP?.trim();
|
||||
const timestamp = configuredTimestamp
|
||||
? normalizeIsoUtcTimestamp(configuredTimestamp)
|
||||
: (options.now ?? (() => new Date()))().toISOString();
|
||||
|
||||
return { commit, timestamp };
|
||||
}
|
||||
|
||||
export function androidBuildMetadataGradleArgs(metadata: AndroidBuildMetadata): string[] {
|
||||
return [
|
||||
`-PopenclawBuildCommit=${metadata.commit}`,
|
||||
`-PopenclawBuildTimestamp=${metadata.timestamp}`,
|
||||
];
|
||||
}
|
||||
|
||||
export function verifyAndroidReleaseSource(
|
||||
expectedCommit: string,
|
||||
options: {
|
||||
rootDir?: string;
|
||||
runGit?: (args: string[], cwd: string) => string;
|
||||
} = {},
|
||||
): void {
|
||||
const cwd = options.rootDir ?? rootDir;
|
||||
const runGit =
|
||||
options.runGit ??
|
||||
((args: string[], gitCwd: string) =>
|
||||
execFileSync("git", args, {
|
||||
cwd: gitCwd,
|
||||
encoding: "utf8",
|
||||
stdio: ["ignore", "pipe", "ignore"],
|
||||
}));
|
||||
let head: string;
|
||||
let status: string;
|
||||
try {
|
||||
head = normalizeFullGitCommit(runGit(["rev-parse", "HEAD"], cwd));
|
||||
status = runGit(["status", "--porcelain", "--untracked-files=all"], cwd).trim();
|
||||
} catch {
|
||||
throw new Error("Android release builds require a readable Git checkout");
|
||||
}
|
||||
if (head !== expectedCommit) {
|
||||
throw new Error(`Android release commit mismatch: metadata ${expectedCommit}, checkout ${head}`);
|
||||
}
|
||||
if (status) {
|
||||
throw new Error("Android release builds require a clean Git checkout");
|
||||
}
|
||||
}
|
||||
|
||||
function parseArgs(argv: string[]): CliOptions {
|
||||
let artifact: CliOptions["artifact"] = "all";
|
||||
let dryRun = false;
|
||||
let verifyApk: string | undefined;
|
||||
|
||||
for (let index = 0; index < argv.length; index += 1) {
|
||||
const arg = argv[index];
|
||||
switch (arg) {
|
||||
case "--artifact": {
|
||||
const value = argv[index + 1];
|
||||
if (value !== "all" && value !== "play" && value !== "wear" && value !== "third-party") {
|
||||
throw new Error("--artifact must be one of: all, play, wear, third-party");
|
||||
}
|
||||
artifact = value;
|
||||
index += 1;
|
||||
break;
|
||||
}
|
||||
case "--dry-run": {
|
||||
dryRun = true;
|
||||
break;
|
||||
}
|
||||
case "--verify-apk": {
|
||||
const value = argv[index + 1];
|
||||
if (!value || value.startsWith("-")) {
|
||||
throw new Error("Missing value for --verify-apk");
|
||||
}
|
||||
verifyApk = value;
|
||||
index += 1;
|
||||
break;
|
||||
}
|
||||
case "-h":
|
||||
case "--help": {
|
||||
console.log(
|
||||
[
|
||||
"Usage: bun apps/android/scripts/build-release-artifacts.ts [--artifact all|play|wear|third-party] [--dry-run] [--verify-apk PATH]",
|
||||
"",
|
||||
"Builds the signed phone, Wear, and third-party Android artifacts.",
|
||||
].join("\n"),
|
||||
);
|
||||
process.exit(0);
|
||||
}
|
||||
default: {
|
||||
throw new Error(`Unknown argument: ${arg}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (verifyApk && (artifact !== "all" || dryRun)) {
|
||||
throw new Error("--verify-apk cannot be combined with --artifact or --dry-run");
|
||||
}
|
||||
|
||||
return { artifact, dryRun, verifyApk };
|
||||
}
|
||||
|
||||
function pinnedApkCertificateSha256(): string {
|
||||
const manifest = JSON.parse(readFileSync(releaseSigningManifestPath, "utf8")) as {
|
||||
apkCertificateSha256?: unknown;
|
||||
};
|
||||
const fingerprint = manifest.apkCertificateSha256;
|
||||
if (typeof fingerprint !== "string" || !/^[a-f0-9]{64}$/u.test(fingerprint)) {
|
||||
throw new Error("ReleaseSigning.json must pin apkCertificateSha256 as 64 lowercase hex digits");
|
||||
}
|
||||
return fingerprint;
|
||||
}
|
||||
|
||||
function releaseArtifacts(versionName: string): ReleaseArtifact[] {
|
||||
return [
|
||||
{
|
||||
flavorName: "wear",
|
||||
kind: "aab",
|
||||
gradleTask: ":wear:bundleRelease",
|
||||
sourcePath: join(androidDir, "wear", "build", "outputs", "bundle", "release", "wear-release.aab"),
|
||||
},
|
||||
{
|
||||
flavorName: "play",
|
||||
kind: "aab",
|
||||
gradleTask: ":app:bundlePlayRelease",
|
||||
sourcePath: join(
|
||||
androidDir,
|
||||
"app",
|
||||
"build",
|
||||
"outputs",
|
||||
"bundle",
|
||||
"playRelease",
|
||||
"app-play-release.aab",
|
||||
),
|
||||
},
|
||||
{
|
||||
flavorName: "third-party",
|
||||
kind: "apk",
|
||||
gradleTask: ":app:assembleThirdPartyRelease",
|
||||
sourcePath: join(
|
||||
androidDir,
|
||||
"app",
|
||||
"build",
|
||||
"outputs",
|
||||
"apk",
|
||||
"thirdParty",
|
||||
"release",
|
||||
`openclaw-${versionName}-thirdParty-release.apk`,
|
||||
),
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
function sha256Hex(path: string): string {
|
||||
return createHash("sha256").update(readFileSync(path)).digest("hex");
|
||||
}
|
||||
|
||||
function writeSha256File(path: string): string {
|
||||
const hash = sha256Hex(path);
|
||||
const checksumPath = `${path}.sha256`;
|
||||
writeFileSync(checksumPath, `${hash} ${basename(path)}\n`);
|
||||
return hash;
|
||||
}
|
||||
|
||||
function verifyAabSignature(path: string, expectedCertificateSha256: string): void {
|
||||
execFileSync("jarsigner", ["-verify", path], { stdio: "ignore" });
|
||||
const output = execFileSync("keytool", ["-printcert", "-jarfile", path], {
|
||||
encoding: "utf8",
|
||||
env: { ...process.env, LC_ALL: "C", LANG: "C" },
|
||||
stdio: ["ignore", "pipe", "inherit"],
|
||||
});
|
||||
const fingerprints = Array.from(output.matchAll(/^\s*SHA256:\s*([a-fA-F0-9:]+)\s*$/gmu)).map(
|
||||
(match) => match[1]?.replaceAll(":", "").toLowerCase(),
|
||||
);
|
||||
if (fingerprints.length !== 1 || !/^[a-f0-9]{64}$/u.test(fingerprints[0] ?? "")) {
|
||||
throw new Error(`Expected exactly one SHA-256 signing certificate for ${path}`);
|
||||
}
|
||||
if (fingerprints[0] !== expectedCertificateSha256) {
|
||||
throw new Error(
|
||||
`AAB signing certificate mismatch for ${path}: expected ${expectedCertificateSha256}, got ${fingerprints[0]}`,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
function resolveApkSignerFromSdk(sdkRoot: string | undefined): string | null {
|
||||
if (!sdkRoot) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const buildToolsDir = join(sdkRoot, "build-tools");
|
||||
if (!existsSync(buildToolsDir)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const candidates = readdirSync(buildToolsDir)
|
||||
.toSorted((left, right) => right.localeCompare(left))
|
||||
.map((version) => join(buildToolsDir, version, "apksigner"))
|
||||
.filter((candidate) => existsSync(candidate));
|
||||
|
||||
return candidates[0] ?? null;
|
||||
}
|
||||
|
||||
function resolveApkSigner(): string {
|
||||
const sdkApkSigner =
|
||||
resolveApkSignerFromSdk(process.env.ANDROID_HOME) ??
|
||||
resolveApkSignerFromSdk(process.env.ANDROID_SDK_ROOT);
|
||||
if (sdkApkSigner) {
|
||||
return sdkApkSigner;
|
||||
}
|
||||
|
||||
for (const pathDir of (process.env.PATH ?? "").split(delimiter)) {
|
||||
const candidate = join(pathDir, "apksigner");
|
||||
try {
|
||||
accessSync(candidate, constants.X_OK);
|
||||
return candidate;
|
||||
} catch {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
throw new Error("Missing apksigner. Install Android SDK build-tools or put apksigner on PATH.");
|
||||
}
|
||||
|
||||
function verifyApkSignature(path: string, expectedCertificateSha256: string): void {
|
||||
const apkSigner = resolveApkSigner();
|
||||
let output: string;
|
||||
try {
|
||||
output = execFileSync(apkSigner, ["verify", "--print-certs", path], {
|
||||
encoding: "utf8",
|
||||
stdio: ["ignore", "pipe", "inherit"],
|
||||
});
|
||||
} catch {
|
||||
throw new Error(`apksigner verification failed for ${path}`);
|
||||
}
|
||||
|
||||
const fingerprints: string[] = [];
|
||||
for (const match of output.matchAll(
|
||||
/^Signer #[0-9]+ certificate SHA-256 digest: ([a-fA-F0-9:]+)$/gmu,
|
||||
)) {
|
||||
const fingerprint = match[1];
|
||||
if (!fingerprint) {
|
||||
throw new Error(`Malformed SHA-256 signing certificate output for ${path}`);
|
||||
}
|
||||
fingerprints.push(fingerprint.replaceAll(":", "").toLowerCase());
|
||||
}
|
||||
if (fingerprints.length !== 1 || !/^[a-f0-9]{64}$/u.test(fingerprints[0] ?? "")) {
|
||||
throw new Error(`Expected exactly one SHA-256 signing certificate for ${path}`);
|
||||
}
|
||||
if (fingerprints[0] !== expectedCertificateSha256) {
|
||||
throw new Error(
|
||||
`APK signing certificate mismatch for ${path}: expected ${expectedCertificateSha256}, got ${fingerprints[0]}`,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
function copyArtifact(sourcePath: string, destinationPath: string): void {
|
||||
if (!existsSync(sourcePath)) {
|
||||
throw new Error(`Signed release artifact missing at ${sourcePath}`);
|
||||
}
|
||||
|
||||
copyFileSync(sourcePath, destinationPath);
|
||||
}
|
||||
|
||||
function verifyArtifactSignature(
|
||||
artifact: ReleaseArtifact,
|
||||
outputPath: string,
|
||||
expectedCertificateSha256: string,
|
||||
): void {
|
||||
if (artifact.kind === "aab") {
|
||||
verifyAabSignature(outputPath, expectedCertificateSha256);
|
||||
} else {
|
||||
verifyApkSignature(outputPath, expectedCertificateSha256);
|
||||
}
|
||||
}
|
||||
|
||||
function main() {
|
||||
const options = parseArgs(process.argv.slice(2));
|
||||
const expectedCertificateSha256 = pinnedApkCertificateSha256();
|
||||
if (options.verifyApk) {
|
||||
verifyApkSignature(options.verifyApk, expectedCertificateSha256);
|
||||
console.log(`Verified pinned APK signing certificate: ${options.verifyApk}`);
|
||||
return;
|
||||
}
|
||||
|
||||
syncAndroidVersioning({ mode: "check", rootDir });
|
||||
const version = resolveAndroidVersion(rootDir);
|
||||
const buildMetadata = resolveAndroidBuildMetadata();
|
||||
const artifacts = releaseArtifacts(version.canonicalVersion).filter(
|
||||
(artifact) => options.artifact === "all" || artifact.flavorName === options.artifact,
|
||||
);
|
||||
|
||||
console.log(`Android versionName: ${version.canonicalVersion}`);
|
||||
console.log(`Android versionCode: ${version.versionCode}`);
|
||||
console.log(`Android build commit: ${buildMetadata.commit}`);
|
||||
console.log(`Android build timestamp: ${buildMetadata.timestamp}`);
|
||||
for (const artifact of artifacts) {
|
||||
console.log(`Release artifact: ${artifact.flavorName} ${artifact.kind}`);
|
||||
console.log(`Gradle task: ${artifact.gradleTask}`);
|
||||
}
|
||||
|
||||
if (options.dryRun) {
|
||||
console.log("Dry run complete. No Gradle tasks were executed.");
|
||||
return;
|
||||
}
|
||||
|
||||
verifyAndroidReleaseSource(buildMetadata.commit);
|
||||
mkdirSync(releaseOutputDir, { recursive: true });
|
||||
execFileSync(
|
||||
"./gradlew",
|
||||
[
|
||||
...androidBuildMetadataGradleArgs(buildMetadata),
|
||||
...artifacts.map((artifact) => artifact.gradleTask),
|
||||
],
|
||||
{
|
||||
cwd: androidDir,
|
||||
stdio: "inherit",
|
||||
},
|
||||
);
|
||||
|
||||
for (const artifact of artifacts) {
|
||||
const outputPath = join(
|
||||
releaseOutputDir,
|
||||
`openclaw-${version.canonicalVersion}-${artifact.flavorName}-release.${artifact.kind}`,
|
||||
);
|
||||
|
||||
copyArtifact(artifact.sourcePath, outputPath);
|
||||
verifyArtifactSignature(artifact, outputPath, expectedCertificateSha256);
|
||||
const hash = writeSha256File(outputPath);
|
||||
|
||||
console.log(`Signed ${artifact.kind.toUpperCase()} (${artifact.flavorName}): ${outputPath}`);
|
||||
console.log(`SHA-256 (${artifact.flavorName}): ${hash}`);
|
||||
}
|
||||
}
|
||||
|
||||
const isMain = process.argv[1] ? resolve(process.argv[1]) === fileURLToPath(import.meta.url) : false;
|
||||
if (isMain) {
|
||||
main();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue