Files
harbor-net/src/shared/versions.ts
T
dokril 0b39211fbd
Build and Deploy Gateway / build-and-push (push) Successful in 22s
Build and Deploy Gateway / deploy (push) Successful in 7s
Refactor Harbor client connection flow
2026-08-17 12:19:26 +03:00

40 lines
1.1 KiB
TypeScript

export const HARBOR_VERSIONS = Object.freeze({
macClient: '0.25.16',
gatewayClient: '0.26.15',
gatewayBackend: '0.26.5',
});
export interface ParsedVersion {
major: number;
minor: number;
hotfix: number;
}
export interface HarborVersions {
macClient: string;
gatewayClient: string;
gatewayBackend: string;
}
export function parseVersion(value: unknown): ParsedVersion | null {
const match = /^(\d+)\.(\d+)\.(\d+)$/.exec(String(value || ''));
return match ? {
major: Number(match[1]),
minor: Number(match[2]),
hotfix: Number(match[3]),
} : null;
}
export function versionCompatibility(versions: Partial<HarborVersions> | null | undefined) {
const mac = parseVersion(versions?.macClient);
const client = parseVersion(versions?.gatewayClient);
const backend = parseVersion(versions?.gatewayBackend);
const major = Boolean(mac && client && backend
&& mac.major === client.major
&& client.major === backend.major);
const gateway = Boolean(client && backend
&& client.major === backend.major
&& client.minor === backend.minor);
return { compatible: major && gateway, major, gateway };
}