Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x | import { getDrains } from '../../clever-client/drains.js';
import { defineCommand } from '../../lib/define-command.js';
import { Logger } from '../../logger.js';
import { formatDrain, resolveDrainResource } from '../../models/drain.js';
import { sendToApi } from '../../models/send-to-api.js';
import {
addonIdOrRealIdOption,
aliasOption,
appIdOrNameOption,
humanJsonOutputFormatOption,
} from '../global.options.js';
export const drainCommand = defineCommand({
description: 'Manage drains',
since: '0.9.0',
options: {
alias: aliasOption,
appIdOrName: appIdOrNameOption,
addonIdOrRealId: addonIdOrRealIdOption,
format: humanJsonOutputFormatOption,
},
args: [],
async handler(options) {
const { alias, appIdOrName, addonIdOrRealId, format } = options;
const { ownerId, resourceId } = await resolveDrainResource(alias, appIdOrName, addonIdOrRealId);
const drains = await getDrains({ ownerId, resourceId }).then(sendToApi);
switch (format) {
case 'json': {
Logger.printJson(drains);
break;
}
case 'human':
default: {
if (drains.length === 0) {
const resourceLabel = addonIdOrRealId ?? appIdOrName ?? resourceId;
Logger.println(`There are no drains for ${resourceLabel}`);
return;
}
if (drains.length === 1) {
const formattedDrain = formatDrain(drains[0]);
console.table(formattedDrain);
return;
}
const formattedDrains = drains.map((drain) => {
return {
ID: drain.id,
Status: drain.status.status,
'Execution status': drain.execution.status,
URL: drain.recipient.url,
};
});
console.table(formattedDrains);
}
}
},
});
|