1
0
Fork 0
cautious-journey/src/sync.ts

180 lines
4.7 KiB
TypeScript
Raw Normal View History

import { doesExist, mustExist } from '@apextoaster/js-utils';
2020-08-14 04:07:47 +00:00
import { Logger } from 'noicejs';
2020-08-15 17:38:33 +00:00
import { FlagLabel, getLabelColor, getLabelNames, getValueName, StateLabel } from './labels';
2020-08-13 01:40:28 +00:00
import { LabelUpdate, Remote } from './remote';
2020-08-14 03:36:30 +00:00
import { resolveLabels } from './resolve';
import { defaultTo, defaultUntil } from './utils';
export interface SyncOptions {
/**
*/
colors: Array<string>;
/**
*/
flags: Array<FlagLabel>;
2020-08-14 04:07:47 +00:00
logger: Logger;
project: string;
remote: Remote;
/**
* States from project config.
*/
states: Array<StateLabel>;
}
/**
* goes through and resolves each issue in the project.
* if there are changes and no errors, then updates the issue.
*/
export async function syncIssueLabels(options: SyncOptions): Promise<unknown> {
const issues = await options.remote.listIssues({
project: options.project,
});
for (const issue of issues) {
options.logger.info({ issue }, 'project issue');
2020-08-14 03:36:30 +00:00
const { changes, errors, labels } = resolveLabels({
2020-08-14 03:36:30 +00:00
flags: options.flags,
labels: issue.labels,
states: options.states,
});
// TODO: prompt user to update this particular issue
if (changes.length > 0 && errors.length === 0) {
options.logger.info({ issue, labels }, 'updating issue');
2020-08-14 03:36:30 +00:00
await options.remote.updateIssue({
...issue,
labels,
2020-08-14 03:36:30 +00:00
});
}
}
return undefined;
}
export async function syncLabels(options: SyncOptions): Promise<unknown> {
const labels = await options.remote.listLabels({
project: options.project,
});
2020-08-13 01:40:28 +00:00
const present = new Set(labels.map((l) => l.name));
const desired = getLabelNames(options.flags, options.states);
const combined = new Set([...desired, ...present]);
2020-08-13 00:24:05 +00:00
2020-08-13 01:40:28 +00:00
for (const label of combined) {
const exists = present.has(label);
const expected = desired.has(label);
2020-08-14 04:07:47 +00:00
options.logger.info({
exists,
expected,
label,
}, 'label');
2020-08-13 00:24:05 +00:00
if (exists) {
if (expected) {
2020-08-13 01:40:28 +00:00
const data = mustExist(labels.find((l) => l.name === label));
await syncSingleLabel(options, data);
2020-08-13 00:24:05 +00:00
} else {
2020-08-14 04:07:47 +00:00
options.logger.warn({ label }, 'remove label');
await options.remote.deleteLabel({
name: label,
project: options.project,
});
2020-08-13 00:24:05 +00:00
}
} else {
if (expected) {
2020-08-14 04:07:47 +00:00
options.logger.info({ label }, 'create label');
await createLabel(options, label);
2020-08-13 00:24:05 +00:00
} else {
// skip
}
}
}
return undefined;
}
export async function createLabel(options: SyncOptions, name: string) {
const flag = options.flags.find((it) => name === it.name);
if (doesExist(flag)) {
await options.remote.createLabel({
2020-08-15 17:38:33 +00:00
color: getLabelColor(flag, options.colors),
desc: mustExist(flag.desc),
name,
project: options.project,
});
return;
}
const state = options.states.find((it) => name.startsWith(it.name));
if (doesExist(state)) {
2020-08-15 17:38:33 +00:00
const value = state.values.find((it) => getValueName(state, it) === name);
if (doesExist(value)) {
await options.remote.createLabel({
2020-08-15 17:38:33 +00:00
color: getLabelColor(state, value, options.colors),
desc: defaultUntil(value.desc, state.desc, ''),
2020-08-15 17:38:33 +00:00
name: getValueName(state, value),
project: options.project,
});
return;
}
2020-08-13 01:40:28 +00:00
}
}
export async function syncLabelDiff(options: SyncOptions, current: LabelUpdate, expected: LabelUpdate) {
const dirty =
2020-08-13 01:40:28 +00:00
current.color !== expected.color ||
current.desc !== expected.desc;
if (dirty) {
2020-08-13 01:40:28 +00:00
const body = {
color: defaultTo(expected.color, current.color),
desc: defaultTo(expected.desc, current.desc),
name: current.name,
project: options.project,
};
2020-08-14 04:07:47 +00:00
options.logger.debug({ body, current, expected }, 'update label');
2020-08-13 01:40:28 +00:00
const resp = await options.remote.updateLabel(body);
2020-08-14 04:07:47 +00:00
options.logger.debug({ resp }, 'update resp');
2020-08-13 01:40:28 +00:00
}
}
export async function syncSingleLabel(options: SyncOptions, label: LabelUpdate): Promise<void> {
const flag = options.flags.find((it) => label.name === it.name);
if (doesExist(flag)) {
await syncLabelDiff(options, label, {
2020-08-15 17:38:33 +00:00
color: getLabelColor(flag, options.colors),
2020-08-13 01:40:28 +00:00
desc: defaultTo(flag.desc, label.desc),
name: flag.name,
project: options.project,
});
return;
}
const state = options.states.find((it) => label.name.startsWith(it.name));
if (doesExist(state)) {
2020-08-15 17:38:33 +00:00
const value = state.values.find((it) => getValueName(state, it) === label.name);
2020-08-13 01:40:28 +00:00
if (doesExist(value)) {
await syncLabelDiff(options, label, {
2020-08-15 17:38:33 +00:00
color: getLabelColor(state, value, options.colors),
2020-08-13 01:40:28 +00:00
desc: defaultTo(value.desc, label.desc),
2020-08-15 17:38:33 +00:00
name: getValueName(state, value),
2020-08-13 01:40:28 +00:00
project: options.project,
});
return;
}
}
}