@pnp/cli-microsoft365
Version:
Manage Microsoft 365 and SharePoint Framework projects on any platform
117 lines • 6.12 kB
JavaScript
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
};
var _EntraM365GroupRecycleBinItemRemoveCommand_instances, _EntraM365GroupRecycleBinItemRemoveCommand_initTelemetry, _EntraM365GroupRecycleBinItemRemoveCommand_initOptions, _EntraM365GroupRecycleBinItemRemoveCommand_initValidators, _EntraM365GroupRecycleBinItemRemoveCommand_initOptionSets;
import { cli } from '../../../../cli/cli.js';
import request from '../../../../request.js';
import { formatting } from '../../../../utils/formatting.js';
import { validation } from '../../../../utils/validation.js';
import GraphCommand from '../../../base/GraphCommand.js';
import commands from '../../commands.js';
class EntraM365GroupRecycleBinItemRemoveCommand extends GraphCommand {
get name() {
return commands.M365GROUP_RECYCLEBINITEM_REMOVE;
}
get description() {
return 'Permanently deletes a Microsoft 365 Group from the recycle bin in the current tenant';
}
constructor() {
super();
_EntraM365GroupRecycleBinItemRemoveCommand_instances.add(this);
__classPrivateFieldGet(this, _EntraM365GroupRecycleBinItemRemoveCommand_instances, "m", _EntraM365GroupRecycleBinItemRemoveCommand_initTelemetry).call(this);
__classPrivateFieldGet(this, _EntraM365GroupRecycleBinItemRemoveCommand_instances, "m", _EntraM365GroupRecycleBinItemRemoveCommand_initOptions).call(this);
__classPrivateFieldGet(this, _EntraM365GroupRecycleBinItemRemoveCommand_instances, "m", _EntraM365GroupRecycleBinItemRemoveCommand_initValidators).call(this);
__classPrivateFieldGet(this, _EntraM365GroupRecycleBinItemRemoveCommand_instances, "m", _EntraM365GroupRecycleBinItemRemoveCommand_initOptionSets).call(this);
}
async commandAction(logger, args) {
const removeGroup = async () => {
try {
const groupId = await this.getGroupId(args.options);
const requestOptions = {
url: `${this.resource}/v1.0/directory/deletedItems/${groupId}`,
headers: {
accept: 'application/json;odata.metadata=none'
},
responseType: 'json'
};
await request.delete(requestOptions);
}
catch (err) {
this.handleRejectedODataJsonPromise(err);
}
};
if (args.options.force) {
await removeGroup();
}
else {
const result = await cli.promptForConfirmation({ message: `Are you sure you want to remove the group '${args.options.id || args.options.displayName || args.options.mailNickname}'?` });
if (result) {
await removeGroup();
}
}
}
async getGroupId(options) {
const { id, displayName, mailNickname } = options;
if (id) {
return id;
}
let filterValue = '';
if (displayName) {
filterValue = `displayName eq '${formatting.encodeQueryParameter(displayName)}'`;
}
if (mailNickname) {
filterValue = `mailNickname eq '${formatting.encodeQueryParameter(mailNickname)}'`;
}
const requestOptions = {
url: `${this.resource}/v1.0/directory/deletedItems/Microsoft.Graph.Group?$filter=${filterValue}`,
headers: {
accept: 'application/json;odata.metadata=none'
},
responseType: 'json'
};
const response = await request.get(requestOptions);
const groups = response.value;
if (groups.length === 0) {
throw Error(`The specified group '${displayName || mailNickname}' does not exist.`);
}
if (groups.length > 1) {
const resultAsKeyValuePair = formatting.convertArrayToHashTable('id', groups);
const result = await cli.handleMultipleResultsFound(`Multiple groups with name '${displayName || mailNickname}' found.`, resultAsKeyValuePair);
return result.id;
}
return groups[0].id;
}
}
_EntraM365GroupRecycleBinItemRemoveCommand_instances = new WeakSet(), _EntraM365GroupRecycleBinItemRemoveCommand_initTelemetry = function _EntraM365GroupRecycleBinItemRemoveCommand_initTelemetry() {
this.telemetry.push((args) => {
Object.assign(this.telemetryProperties, {
id: typeof args.options.id !== 'undefined',
displayName: typeof args.options.displayName !== 'undefined',
mailNickname: typeof args.options.mailNickname !== 'undefined',
force: !!args.options.force
});
});
}, _EntraM365GroupRecycleBinItemRemoveCommand_initOptions = function _EntraM365GroupRecycleBinItemRemoveCommand_initOptions() {
this.options.unshift({
option: '-i, --id [id]'
}, {
option: '-d, --displayName [displayName]'
}, {
option: '-m, --mailNickname [mailNickname]'
}, {
option: '-f, --force'
});
}, _EntraM365GroupRecycleBinItemRemoveCommand_initValidators = function _EntraM365GroupRecycleBinItemRemoveCommand_initValidators() {
this.validators.push(async (args) => {
if (args.options.id && !validation.isValidGuid(args.options.id)) {
return `${args.options.id} is not a valid GUID`;
}
return true;
});
}, _EntraM365GroupRecycleBinItemRemoveCommand_initOptionSets = function _EntraM365GroupRecycleBinItemRemoveCommand_initOptionSets() {
this.optionSets.push({ options: ['id', 'displayName', 'mailNickname'] });
};
export default new EntraM365GroupRecycleBinItemRemoveCommand();
//# sourceMappingURL=m365group-recyclebinitem-remove.js.map