2020-10-25 15:13:43 +01:00
|
|
|
import * as handlebars from 'handlebars';
|
2020-12-24 04:13:41 +01:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
2022-12-29 01:01:17 +01:00
|
|
|
import moment from 'moment-timezone';
|
2021-07-06 13:56:48 +02:00
|
|
|
import * as pep440 from '@renovate/pep440';
|
2020-11-17 23:31:03 +01:00
|
|
|
import * as semver from 'semver';
|
2023-02-20 22:32:55 +01:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import {Context} from '@actions/github/lib/context';
|
|
|
|
import {Context as ToolkitContext} from '@docker/actions-toolkit/lib/context';
|
|
|
|
import {GitHubRepo} from '@docker/actions-toolkit/lib/types/github';
|
|
|
|
|
|
|
|
import {Inputs} from './context';
|
2022-04-27 16:58:50 +02:00
|
|
|
import * as icl from './image';
|
2021-03-29 13:04:53 +02:00
|
|
|
import * as tcl from './tag';
|
|
|
|
import * as fcl from './flavor';
|
2020-10-25 02:25:23 +01:00
|
|
|
|
2020-10-26 01:39:21 +01:00
|
|
|
export interface Version {
|
2020-11-17 23:31:03 +01:00
|
|
|
main: string | undefined;
|
|
|
|
partial: string[];
|
2021-03-29 13:04:53 +02:00
|
|
|
latest: boolean | undefined;
|
2020-10-26 01:39:21 +01:00
|
|
|
}
|
|
|
|
|
2020-10-25 02:25:23 +01:00
|
|
|
export class Meta {
|
2020-12-01 05:38:08 +01:00
|
|
|
public readonly version: Version;
|
|
|
|
|
2020-10-25 02:25:23 +01:00
|
|
|
private readonly inputs: Inputs;
|
|
|
|
private readonly context: Context;
|
2023-02-20 22:32:55 +01:00
|
|
|
private readonly repo: GitHubRepo;
|
2022-04-27 16:58:50 +02:00
|
|
|
private readonly images: icl.Image[];
|
2021-03-29 13:04:53 +02:00
|
|
|
private readonly tags: tcl.Tag[];
|
|
|
|
private readonly flavor: fcl.Flavor;
|
2020-10-25 15:13:43 +01:00
|
|
|
private readonly date: Date;
|
2020-10-25 02:25:23 +01:00
|
|
|
|
2023-02-20 22:32:55 +01:00
|
|
|
constructor(inputs: Inputs, context: Context, repo: GitHubRepo) {
|
2020-10-25 02:25:23 +01:00
|
|
|
this.inputs = inputs;
|
|
|
|
this.context = context;
|
|
|
|
this.repo = repo;
|
2022-04-27 16:58:50 +02:00
|
|
|
this.images = icl.Transform(inputs.images);
|
2021-03-29 13:04:53 +02:00
|
|
|
this.tags = tcl.Transform(inputs.tags);
|
|
|
|
this.flavor = fcl.Transform(inputs.flavor);
|
2020-10-25 15:13:43 +01:00
|
|
|
this.date = new Date();
|
2020-12-01 05:38:08 +01:00
|
|
|
this.version = this.getVersion();
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|
|
|
|
|
2020-12-01 05:38:08 +01:00
|
|
|
private getVersion(): Version {
|
2020-12-04 18:12:39 +01:00
|
|
|
let version: Version = {
|
2020-11-17 23:31:03 +01:00
|
|
|
main: undefined,
|
|
|
|
partial: [],
|
2021-03-29 13:04:53 +02:00
|
|
|
latest: undefined
|
2020-10-26 01:39:21 +01:00
|
|
|
};
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
for (const tag of this.tags) {
|
2022-04-25 13:41:39 +02:00
|
|
|
const enabled = this.setGlobalExp(tag.attrs['enable']);
|
|
|
|
if (!['true', 'false'].includes(enabled)) {
|
|
|
|
throw new Error(`Invalid value for enable attribute: ${enabled}`);
|
|
|
|
}
|
|
|
|
if (!/true/i.test(enabled)) {
|
2021-03-30 13:11:51 +02:00
|
|
|
continue;
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
switch (tag.type) {
|
|
|
|
case tcl.Type.Schedule: {
|
|
|
|
version = this.procSchedule(version, tag);
|
|
|
|
break;
|
2020-10-26 01:39:21 +01:00
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
case tcl.Type.Semver: {
|
|
|
|
version = this.procSemver(version, tag);
|
|
|
|
break;
|
|
|
|
}
|
2021-07-06 13:56:48 +02:00
|
|
|
case tcl.Type.Pep440: {
|
|
|
|
version = this.procPep440(version, tag);
|
|
|
|
break;
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
case tcl.Type.Match: {
|
|
|
|
version = this.procMatch(version, tag);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case tcl.Type.Ref: {
|
|
|
|
if (tag.attrs['event'] == tcl.RefEvent.Branch) {
|
|
|
|
version = this.procRefBranch(version, tag);
|
|
|
|
} else if (tag.attrs['event'] == tcl.RefEvent.Tag) {
|
|
|
|
version = this.procRefTag(version, tag);
|
|
|
|
} else if (tag.attrs['event'] == tcl.RefEvent.PR) {
|
|
|
|
version = this.procRefPr(version, tag);
|
2020-11-17 23:31:03 +01:00
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case tcl.Type.Edge: {
|
|
|
|
version = this.procEdge(version, tag);
|
|
|
|
break;
|
2020-11-17 23:31:03 +01:00
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
case tcl.Type.Raw: {
|
|
|
|
version = this.procRaw(version, tag);
|
|
|
|
break;
|
2020-10-27 02:32:26 +01:00
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
case tcl.Type.Sha: {
|
|
|
|
version = this.procSha(version, tag);
|
|
|
|
break;
|
2020-10-26 01:39:21 +01:00
|
|
|
}
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
version.partial = version.partial.filter((item, index) => version.partial.indexOf(item) === index);
|
|
|
|
if (version.latest == undefined) {
|
|
|
|
version.latest = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
private procSchedule(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/schedule/.test(this.context.eventName)) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
const currentDate = this.date;
|
2021-05-07 21:53:30 +02:00
|
|
|
const vraw = this.setValue(
|
2021-04-07 20:31:35 +02:00
|
|
|
handlebars.compile(tag.attrs['pattern'])({
|
2022-12-29 01:01:17 +01:00
|
|
|
date: function (format, options) {
|
|
|
|
const m = moment(currentDate);
|
|
|
|
let tz = 'UTC';
|
|
|
|
Object.keys(options.hash).forEach(key => {
|
|
|
|
switch (key) {
|
|
|
|
case 'tz':
|
|
|
|
tz = options.hash[key];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error(`Unknown ${key} attribute`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return m.tz(tz).format(format);
|
2021-04-07 20:31:35 +02:00
|
|
|
}
|
|
|
|
}),
|
|
|
|
tag
|
|
|
|
);
|
2021-03-29 13:04:53 +02:00
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procSemver(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/tags\//.test(this.context.ref) && tag.attrs['value'].length == 0) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
let vraw: string;
|
|
|
|
if (tag.attrs['value'].length > 0) {
|
2021-05-07 21:53:30 +02:00
|
|
|
vraw = this.setGlobalExp(tag.attrs['value']);
|
2021-03-29 13:04:53 +02:00
|
|
|
} else {
|
|
|
|
vraw = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
|
|
|
}
|
|
|
|
if (!semver.valid(vraw)) {
|
|
|
|
core.warning(`${vraw} is not a valid semver. More info: https://semver.org/`);
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2022-03-22 21:09:00 +01:00
|
|
|
let latest = false;
|
2021-03-29 13:04:53 +02:00
|
|
|
const sver = semver.parse(vraw, {
|
2023-04-17 04:33:51 +02:00
|
|
|
loose: true
|
2021-03-29 13:04:53 +02:00
|
|
|
});
|
|
|
|
if (semver.prerelease(vraw)) {
|
2021-12-06 15:40:44 +01:00
|
|
|
if (Meta.isRawStatement(tag.attrs['pattern'])) {
|
|
|
|
vraw = this.setValue(handlebars.compile(tag.attrs['pattern'])(sver), tag);
|
|
|
|
} else {
|
|
|
|
vraw = this.setValue(handlebars.compile('{{version}}')(sver), tag);
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
} else {
|
2021-05-07 21:53:30 +02:00
|
|
|
vraw = this.setValue(handlebars.compile(tag.attrs['pattern'])(sver), tag);
|
2021-03-29 13:04:53 +02:00
|
|
|
latest = true;
|
|
|
|
}
|
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? latest : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
2021-07-06 13:56:48 +02:00
|
|
|
private procPep440(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/tags\//.test(this.context.ref) && tag.attrs['value'].length == 0) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
let vraw: string;
|
|
|
|
if (tag.attrs['value'].length > 0) {
|
|
|
|
vraw = this.setGlobalExp(tag.attrs['value']);
|
|
|
|
} else {
|
|
|
|
vraw = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
|
|
|
}
|
|
|
|
if (!pep440.valid(vraw)) {
|
|
|
|
core.warning(`${vraw} does not conform to PEP 440. More info: https://www.python.org/dev/peps/pep-0440`);
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2022-03-22 21:09:00 +01:00
|
|
|
let latest = false;
|
2021-07-06 13:56:48 +02:00
|
|
|
const pver = pep440.explain(vraw);
|
|
|
|
if (pver.is_prerelease || pver.is_postrelease || pver.is_devrelease) {
|
2021-12-06 17:15:06 +01:00
|
|
|
if (Meta.isRawStatement(tag.attrs['pattern'])) {
|
|
|
|
vraw = this.setValue(vraw, tag);
|
|
|
|
} else {
|
|
|
|
vraw = this.setValue(pep440.clean(vraw), tag);
|
|
|
|
}
|
2021-07-06 13:56:48 +02:00
|
|
|
} else {
|
|
|
|
vraw = this.setValue(
|
|
|
|
handlebars.compile(tag.attrs['pattern'])({
|
|
|
|
raw: function () {
|
|
|
|
return vraw;
|
|
|
|
},
|
|
|
|
version: function () {
|
|
|
|
return pep440.clean(vraw);
|
|
|
|
},
|
|
|
|
major: function () {
|
|
|
|
return pep440.major(vraw);
|
|
|
|
},
|
|
|
|
minor: function () {
|
|
|
|
return pep440.minor(vraw);
|
|
|
|
},
|
|
|
|
patch: function () {
|
|
|
|
return pep440.patch(vraw);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
tag
|
|
|
|
);
|
|
|
|
latest = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? latest : this.flavor.latest == 'true');
|
|
|
|
}
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
private procMatch(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/tags\//.test(this.context.ref) && tag.attrs['value'].length == 0) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
let vraw: string;
|
|
|
|
if (tag.attrs['value'].length > 0) {
|
2021-05-07 21:53:30 +02:00
|
|
|
vraw = this.setGlobalExp(tag.attrs['value']);
|
2021-03-29 13:04:53 +02:00
|
|
|
} else {
|
2022-05-04 15:02:20 +02:00
|
|
|
vraw = this.context.ref.replace(/^refs\/tags\//g, '');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let tmatch;
|
|
|
|
const isRegEx = tag.attrs['pattern'].match(/^\/(.+)\/(.*)$/);
|
|
|
|
if (isRegEx) {
|
|
|
|
tmatch = vraw.match(new RegExp(isRegEx[1], isRegEx[2]));
|
|
|
|
} else {
|
|
|
|
tmatch = vraw.match(tag.attrs['pattern']);
|
|
|
|
}
|
2021-04-05 21:19:05 +02:00
|
|
|
if (!tmatch) {
|
|
|
|
core.warning(`${tag.attrs['pattern']} does not match ${vraw}.`);
|
|
|
|
return version;
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
2021-04-05 21:19:05 +02:00
|
|
|
if (typeof tmatch[tag.attrs['group']] === 'undefined') {
|
|
|
|
core.warning(`Group ${tag.attrs['group']} does not exist for ${tag.attrs['pattern']} pattern.`);
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
vraw = this.setValue(tmatch[tag.attrs['group']], tag);
|
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? true : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procRefBranch(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/heads\//.test(this.context.ref)) {
|
|
|
|
return version;
|
|
|
|
}
|
2022-05-04 15:02:20 +02:00
|
|
|
const vraw = this.setValue(this.context.ref.replace(/^refs\/heads\//g, ''), tag);
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procRefTag(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/tags\//.test(this.context.ref)) {
|
|
|
|
return version;
|
|
|
|
}
|
2022-05-04 15:02:20 +02:00
|
|
|
const vraw = this.setValue(this.context.ref.replace(/^refs\/tags\//g, ''), tag);
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? true : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procRefPr(version: Version, tag: tcl.Tag): Version {
|
2021-05-25 18:45:23 +02:00
|
|
|
if (!/^refs\/pull\//.test(this.context.ref)) {
|
2021-03-29 13:04:53 +02:00
|
|
|
return version;
|
|
|
|
}
|
2021-05-23 03:54:23 +02:00
|
|
|
|
2021-05-25 18:45:23 +02:00
|
|
|
const vraw = this.setValue(this.context.ref.replace(/^refs\/pull\//g, '').replace(/\/merge$/g, ''), tag);
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procEdge(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/heads\//.test(this.context.ref)) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2022-05-04 15:02:20 +02:00
|
|
|
const val = this.context.ref.replace(/^refs\/heads\//g, '');
|
2021-03-29 13:04:53 +02:00
|
|
|
if (tag.attrs['branch'].length == 0) {
|
|
|
|
tag.attrs['branch'] = this.repo.default_branch;
|
|
|
|
}
|
2021-07-12 17:08:07 +02:00
|
|
|
if (tag.attrs['branch'] != val) {
|
|
|
|
return version;
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
2021-07-12 17:08:07 +02:00
|
|
|
const vraw = this.setValue('edge', tag);
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2020-10-25 02:40:42 +01:00
|
|
|
}
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
private procRaw(version: Version, tag: tcl.Tag): Version {
|
2021-05-07 21:53:30 +02:00
|
|
|
const vraw = this.setValue(this.setGlobalExp(tag.attrs['value']), tag);
|
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procSha(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!this.context.sha) {
|
|
|
|
return version;
|
|
|
|
}
|
2021-05-11 20:14:23 +02:00
|
|
|
|
|
|
|
let val = this.context.sha;
|
|
|
|
if (tag.attrs['format'] === tcl.ShaFormat.Short) {
|
2022-10-08 00:17:03 +02:00
|
|
|
val = this.context.sha.substring(0, 7);
|
2021-05-11 20:14:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const vraw = this.setValue(val, tag);
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
private static setVersion(version: Version, val: string, latest: boolean): Version {
|
|
|
|
if (val.length == 0) {
|
|
|
|
return version;
|
|
|
|
}
|
2022-05-05 13:54:54 +02:00
|
|
|
val = Meta.sanitizeTag(val);
|
2021-03-29 13:04:53 +02:00
|
|
|
if (version.main == undefined) {
|
2021-05-07 21:53:30 +02:00
|
|
|
version.main = val;
|
|
|
|
} else if (val !== version.main) {
|
|
|
|
version.partial.push(val);
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
if (version.latest == undefined) {
|
2021-05-07 21:53:30 +02:00
|
|
|
version.latest = latest;
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2021-12-06 15:40:44 +01:00
|
|
|
public static isRawStatement(pattern: string): boolean {
|
|
|
|
try {
|
|
|
|
const hp = handlebars.parseWithoutProcessing(pattern);
|
|
|
|
if (hp.body.length == 1 && hp.body[0].type == 'MustacheStatement') {
|
|
|
|
return hp.body[0]['path']['parts'].length == 1 && hp.body[0]['path']['parts'][0] == 'raw';
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
private setValue(val: string, tag: tcl.Tag): string {
|
2022-03-22 21:09:00 +01:00
|
|
|
if (Object.prototype.hasOwnProperty.call(tag.attrs, 'prefix')) {
|
2021-05-07 21:53:30 +02:00
|
|
|
val = `${this.setGlobalExp(tag.attrs['prefix'])}${val}`;
|
2021-03-29 13:04:53 +02:00
|
|
|
} else if (this.flavor.prefix.length > 0) {
|
2021-05-07 21:53:30 +02:00
|
|
|
val = `${this.setGlobalExp(this.flavor.prefix)}${val}`;
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
2022-03-22 21:09:00 +01:00
|
|
|
if (Object.prototype.hasOwnProperty.call(tag.attrs, 'suffix')) {
|
2021-05-07 21:53:30 +02:00
|
|
|
val = `${val}${this.setGlobalExp(tag.attrs['suffix'])}`;
|
2021-03-29 13:04:53 +02:00
|
|
|
} else if (this.flavor.suffix.length > 0) {
|
2021-05-07 21:53:30 +02:00
|
|
|
val = `${val}${this.setGlobalExp(this.flavor.suffix)}`;
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
private setGlobalExp(val): string {
|
2022-12-15 14:46:34 +01:00
|
|
|
const context = this.context;
|
2021-08-19 19:58:11 +02:00
|
|
|
const currentDate = this.date;
|
2021-05-07 21:53:30 +02:00
|
|
|
return handlebars.compile(val)({
|
|
|
|
branch: function () {
|
2022-12-15 14:46:34 +01:00
|
|
|
if (!/^refs\/heads\//.test(context.ref)) {
|
2021-05-07 21:53:30 +02:00
|
|
|
return '';
|
|
|
|
}
|
2022-12-15 14:46:34 +01:00
|
|
|
return context.ref.replace(/^refs\/heads\//g, '');
|
2021-05-07 21:53:30 +02:00
|
|
|
},
|
|
|
|
tag: function () {
|
2022-12-15 14:46:34 +01:00
|
|
|
if (!/^refs\/tags\//.test(context.ref)) {
|
2021-05-07 21:53:30 +02:00
|
|
|
return '';
|
|
|
|
}
|
2022-12-15 14:46:34 +01:00
|
|
|
return context.ref.replace(/^refs\/tags\//g, '');
|
2021-05-07 21:53:30 +02:00
|
|
|
},
|
|
|
|
sha: function () {
|
2022-12-15 14:46:34 +01:00
|
|
|
return context.sha.substring(0, 7);
|
2021-08-19 19:58:11 +02:00
|
|
|
},
|
2021-10-22 13:14:38 +02:00
|
|
|
base_ref: function () {
|
2022-12-15 14:46:34 +01:00
|
|
|
if (/^refs\/tags\//.test(context.ref) && context.payload?.base_ref != undefined) {
|
|
|
|
return context.payload.base_ref.replace(/^refs\/heads\//g, '');
|
2021-10-22 13:14:38 +02:00
|
|
|
}
|
2022-04-26 14:47:46 +02:00
|
|
|
// FIXME: keep this for backward compatibility even if doesn't always seem
|
|
|
|
// to return the expected branch. See the comment below.
|
2022-12-15 14:46:34 +01:00
|
|
|
if (/^refs\/pull\//.test(context.ref) && context.payload?.pull_request?.base?.ref != undefined) {
|
|
|
|
return context.payload.pull_request.base.ref;
|
2021-10-22 13:14:38 +02:00
|
|
|
}
|
|
|
|
return '';
|
|
|
|
},
|
2022-04-25 13:41:39 +02:00
|
|
|
is_default_branch: function () {
|
2022-12-15 14:46:34 +01:00
|
|
|
const branch = context.ref.replace(/^refs\/heads\//g, '');
|
2022-04-26 14:47:46 +02:00
|
|
|
// TODO: "base_ref" is available in the push payload but doesn't always seem to
|
|
|
|
// return the expected branch when the push tag event occurs. It's also not
|
|
|
|
// documented in GitHub docs: https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push
|
|
|
|
// more context: https://github.com/docker/metadata-action/pull/192#discussion_r854673012
|
2022-12-15 14:46:34 +01:00
|
|
|
// if (/^refs\/tags\//.test(context.ref) && context.payload?.base_ref != undefined) {
|
|
|
|
// branch = context.payload.base_ref.replace(/^refs\/heads\//g, '');
|
2022-04-26 14:47:46 +02:00
|
|
|
// }
|
2022-04-25 13:41:39 +02:00
|
|
|
if (branch == undefined || branch.length == 0) {
|
|
|
|
return 'false';
|
|
|
|
}
|
2022-12-15 14:46:34 +01:00
|
|
|
if (context.payload?.repository?.default_branch == branch) {
|
2022-04-25 13:41:39 +02:00
|
|
|
return 'true';
|
|
|
|
}
|
|
|
|
// following events always trigger for last commit on default branch
|
|
|
|
// https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
|
2022-12-15 14:46:34 +01:00
|
|
|
if (/create/.test(context.eventName) || /discussion/.test(context.eventName) || /issues/.test(context.eventName) || /schedule/.test(context.eventName)) {
|
2022-04-25 13:41:39 +02:00
|
|
|
return 'true';
|
|
|
|
}
|
|
|
|
return 'false';
|
|
|
|
},
|
2022-12-29 01:01:17 +01:00
|
|
|
date: function (format, options) {
|
|
|
|
const m = moment(currentDate);
|
|
|
|
let tz = 'UTC';
|
|
|
|
Object.keys(options.hash).forEach(key => {
|
|
|
|
switch (key) {
|
|
|
|
case 'tz':
|
|
|
|
tz = options.hash[key];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error(`Unknown ${key} attribute`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return m.tz(tz).format(format);
|
2021-05-07 21:53:30 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-27 16:58:50 +02:00
|
|
|
private getImageNames(): Array<string> {
|
|
|
|
const images: Array<string> = [];
|
|
|
|
for (const image of this.images) {
|
|
|
|
if (!image.enable) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-05-04 15:02:20 +02:00
|
|
|
images.push(Meta.sanitizeImageName(image.name));
|
2022-04-27 16:58:50 +02:00
|
|
|
}
|
|
|
|
return images;
|
|
|
|
}
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
public getTags(): Array<string> {
|
2020-12-01 05:38:08 +01:00
|
|
|
if (!this.version.main) {
|
2020-10-26 01:39:21 +01:00
|
|
|
return [];
|
|
|
|
}
|
2022-03-22 21:09:00 +01:00
|
|
|
const tags: Array<string> = [];
|
2022-04-27 16:58:50 +02:00
|
|
|
for (const imageName of this.getImageNames()) {
|
2022-05-05 13:54:54 +02:00
|
|
|
tags.push(`${imageName}:${this.version.main}`);
|
2020-12-01 05:38:08 +01:00
|
|
|
for (const partial of this.version.partial) {
|
2022-05-05 13:54:54 +02:00
|
|
|
tags.push(`${imageName}:${partial}`);
|
2020-11-17 23:31:03 +01:00
|
|
|
}
|
2020-12-01 05:38:08 +01:00
|
|
|
if (this.version.latest) {
|
2022-05-04 15:02:20 +02:00
|
|
|
const latestTag = `${this.flavor.prefixLatest ? this.flavor.prefix : ''}latest${this.flavor.suffixLatest ? this.flavor.suffix : ''}`;
|
|
|
|
tags.push(`${imageName}:${Meta.sanitizeTag(latestTag)}`);
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return tags;
|
|
|
|
}
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
public getLabels(): Array<string> {
|
2022-03-22 21:09:00 +01:00
|
|
|
const labels: Array<string> = [
|
2020-10-25 02:25:23 +01:00
|
|
|
`org.opencontainers.image.title=${this.repo.name || ''}`,
|
|
|
|
`org.opencontainers.image.description=${this.repo.description || ''}`,
|
|
|
|
`org.opencontainers.image.url=${this.repo.html_url || ''}`,
|
2020-10-31 20:16:51 +01:00
|
|
|
`org.opencontainers.image.source=${this.repo.html_url || ''}`,
|
2020-12-01 05:38:08 +01:00
|
|
|
`org.opencontainers.image.version=${this.version.main || ''}`,
|
2020-10-25 15:13:43 +01:00
|
|
|
`org.opencontainers.image.created=${this.date.toISOString()}`,
|
2020-10-25 02:25:23 +01:00
|
|
|
`org.opencontainers.image.revision=${this.context.sha || ''}`,
|
|
|
|
`org.opencontainers.image.licenses=${this.repo.license?.spdx_id || ''}`
|
|
|
|
];
|
2021-03-29 13:04:53 +02:00
|
|
|
labels.push(...this.inputs.labels);
|
2023-06-13 02:31:02 +02:00
|
|
|
|
|
|
|
return Array.from(
|
|
|
|
new Map<string, string>(
|
|
|
|
labels
|
|
|
|
.map(label => label.split('='))
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
.filter(([_key, ...values]) => values.length > 0)
|
|
|
|
.map(([key, ...values]) => [key, values.join('=')] as [string, string])
|
|
|
|
)
|
|
|
|
)
|
|
|
|
.sort((a, b) => a[0].localeCompare(b[0]))
|
|
|
|
.map(([key, value]) => `${key}=${value}`);
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|
2020-12-24 04:13:41 +01:00
|
|
|
|
2022-03-22 21:09:00 +01:00
|
|
|
public getJSON(): unknown {
|
2021-05-22 21:23:06 +02:00
|
|
|
return {
|
|
|
|
tags: this.getTags(),
|
|
|
|
labels: this.getLabels().reduce((res, label) => {
|
|
|
|
const matches = label.match(/([^=]*)=(.*)/);
|
|
|
|
if (!matches) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
res[matches[1]] = matches[2];
|
|
|
|
return res;
|
|
|
|
}, {})
|
|
|
|
};
|
|
|
|
}
|
2020-12-24 04:13:41 +01:00
|
|
|
|
2021-05-22 21:23:06 +02:00
|
|
|
public getBakeFile(): string {
|
2023-02-20 22:32:55 +01:00
|
|
|
const bakeFile = path.join(ToolkitContext.tmpDir(), 'docker-metadata-action-bake.json');
|
2020-12-24 04:13:41 +01:00
|
|
|
fs.writeFileSync(
|
|
|
|
bakeFile,
|
|
|
|
JSON.stringify(
|
|
|
|
{
|
|
|
|
target: {
|
2021-04-30 00:51:48 +02:00
|
|
|
[this.inputs.bakeTarget]: {
|
2021-03-29 13:04:53 +02:00
|
|
|
tags: this.getTags(),
|
2021-05-22 21:23:06 +02:00
|
|
|
labels: this.getLabels().reduce((res, label) => {
|
|
|
|
const matches = label.match(/([^=]*)=(.*)/);
|
|
|
|
if (!matches) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
res[matches[1]] = matches[2];
|
|
|
|
return res;
|
|
|
|
}, {}),
|
2020-12-24 16:45:28 +01:00
|
|
|
args: {
|
2022-04-27 16:58:50 +02:00
|
|
|
DOCKER_META_IMAGES: this.getImageNames().join(','),
|
2020-12-24 16:45:28 +01:00
|
|
|
DOCKER_META_VERSION: this.version.main
|
|
|
|
}
|
2020-12-24 04:13:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
null,
|
|
|
|
2
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
return bakeFile;
|
|
|
|
}
|
2022-05-04 15:02:20 +02:00
|
|
|
|
|
|
|
private static sanitizeImageName(name: string): string {
|
|
|
|
return name.toLowerCase();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static sanitizeTag(tag: string): string {
|
|
|
|
return tag.replace(/[^a-zA-Z0-9._-]+/g, '-');
|
|
|
|
}
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|