UNPKG

@pnp/cli-microsoft365

Version:

Manage Microsoft 365 and SharePoint Framework projects on any platform

88 lines 3.33 kB
import { z } from 'zod'; import { globalOptionsZod } from '../../../../Command.js'; import request from '../../../../request.js'; import { entraGroup } from '../../../../utils/entraGroup.js'; import { planner } from '../../../../utils/planner.js'; import { validation } from '../../../../utils/validation.js'; import GraphCommand from '../../../base/GraphCommand.js'; import commands from '../../commands.js'; export const options = z.strictObject({ ...globalOptionsZod.shape, id: z.string().optional().alias('i'), title: z.string().optional().alias('t'), rosterId: z.string().optional(), ownerGroupId: z.string() .refine(val => validation.isValidGuid(val), { message: 'The value is not a valid GUID.' }) .optional(), ownerGroupName: z.string().optional() }); class PlannerPlanGetCommand extends GraphCommand { get name() { return commands.PLAN_GET; } get description() { return 'Retrieves information about the specified plan'; } get schema() { return options; } getRefinedSchema(schema) { return schema .refine(opts => [opts.id, opts.title, opts.rosterId].filter(x => x !== undefined).length === 1, { message: `Specify exactly one of the following options: 'id', 'title' or 'rosterId'.`, params: { customCode: 'optionSet', options: ['id', 'title', 'rosterId'] } }) .refine(opts => !opts.title || [opts.ownerGroupId, opts.ownerGroupName].filter(x => x !== undefined).length === 1, { message: `Specify exactly one of the following options: 'ownerGroupId' or 'ownerGroupName'.`, params: { customCode: 'optionSet', options: ['ownerGroupId', 'ownerGroupName'] } }); } async commandAction(logger, args) { try { let plan; if (args.options.id) { plan = await planner.getPlanById(args.options.id); } else if (args.options.rosterId) { plan = await planner.getPlanByRosterId(args.options.rosterId); } else { const groupId = await this.getGroupId(args); plan = await planner.getPlanByTitle(args.options.title, groupId); } const result = await this.getPlanDetails(plan); await logger.log(result); } catch (err) { this.handleRejectedODataJsonPromise(err); } } async getPlanDetails(plan) { const requestOptionsTaskDetails = { url: `${this.resource}/v1.0/planner/plans/${plan.id}/details`, headers: { accept: 'application/json;odata.metadata=none', Prefer: 'return=representation' }, responseType: 'json' }; const planDetails = await request.get(requestOptionsTaskDetails); return { ...plan, ...planDetails }; } async getGroupId(args) { if (args.options.ownerGroupId) { return args.options.ownerGroupId; } return entraGroup.getGroupIdByDisplayName(args.options.ownerGroupName); } } export default new PlannerPlanGetCommand(); //# sourceMappingURL=plan-get.js.map