UNPKG

@pnp/cli-microsoft365

Version:

Manage Microsoft 365 and SharePoint Framework projects on any platform

98 lines 4.39 kB
import { z } from 'zod'; import { cli } from '../../../../cli/cli.js'; import { globalOptionsZod } from '../../../../Command.js'; import request from '../../../../request.js'; import { entraGroup } from '../../../../utils/entraGroup.js'; import { entraUser } from '../../../../utils/entraUser.js'; import { formatting } from '../../../../utils/formatting.js'; import { validation } from '../../../../utils/validation.js'; import PowerAutomateCommand from '../../../base/PowerAutomateCommand.js'; import commands from '../../commands.js'; export const options = z.strictObject({ ...globalOptionsZod.shape, flowName: z.uuid(), environmentName: z.string().alias('e'), userId: z.string().refine(id => validation.isValidGuid(id), { error: e => `'${e.input}' is not a valid GUID.` }).optional(), userName: z.string().refine(name => validation.isValidUserPrincipalName(name), { error: e => `'${e.input}' is not a valid userName.` }).optional(), groupId: z.string().refine(id => validation.isValidGuid(id), { error: e => `'${e.input}' is not a valid GUID.` }).optional(), groupName: z.string().optional(), asAdmin: z.boolean().optional(), force: z.boolean().optional().alias('f') }); class FlowOwnerRemoveCommand extends PowerAutomateCommand { get name() { return commands.OWNER_REMOVE; } get description() { return 'Removes owner permissions to a Power Automate flow'; } get schema() { return options; } getRefinedSchema(schema) { return schema.refine(options => [options.userId, options.userName, options.groupId, options.groupName].filter(x => x !== undefined).length === 1, { error: 'Specify either userId, userName, groupId, or groupName, but not multiple.', params: { customCode: 'optionSet', options: ['userId', 'userName', 'groupId', 'groupName'] } }); } async commandAction(logger, args) { try { if (this.verbose) { await logger.logToStderr(`Removing owner ${args.options.userId || args.options.userName || args.options.groupId || args.options.groupName} from flow ${args.options.flowName} in environment ${args.options.environmentName}`); } const removeFlowOwner = async () => { let idToRemove; if (args.options.userId) { idToRemove = args.options.userId; } else if (args.options.userName) { idToRemove = await entraUser.getUserIdByUpn(args.options.userName); } else if (args.options.groupId) { idToRemove = args.options.groupId; } else { idToRemove = await entraGroup.getGroupIdByDisplayName(args.options.groupName); } const requestOptions = { url: `${PowerAutomateCommand.resource}/providers/Microsoft.ProcessSimple/${args.options.asAdmin ? 'scopes/admin/' : ''}environments/${formatting.encodeQueryParameter(args.options.environmentName)}/flows/${formatting.encodeQueryParameter(args.options.flowName)}/modifyPermissions?api-version=2016-11-01`, headers: { accept: 'application/json' }, data: { delete: [ { id: idToRemove } ] }, responseType: 'json' }; await request.post(requestOptions); }; if (args.options.force) { await removeFlowOwner(); } else { const result = await cli.promptForConfirmation({ message: `Are you sure you want to remove owner '${args.options.groupId || args.options.groupName || args.options.userId || args.options.userName}' from the specified flow?` }); if (result) { await removeFlowOwner(); } } } catch (err) { this.handleRejectedODataJsonPromise(err); } } } export default new FlowOwnerRemoveCommand(); //# sourceMappingURL=owner-remove.js.map