@pnp/cli-microsoft365
Version:
Manage Microsoft 365 and SharePoint Framework projects on any platform
71 lines • 2.93 kB
JavaScript
import GraphCommand from '../../../base/GraphCommand.js';
import commands from '../../commands.js';
import { z } from 'zod';
import { globalOptionsZod } from '../../../../Command.js';
import { validation } from '../../../../utils/validation.js';
import { calendarGroup } from '../../../../utils/calendarGroup.js';
import { calendar } from '../../../../utils/calendar.js';
export const options = z.strictObject({
...globalOptionsZod.shape,
id: z.string().alias('i').optional(),
name: z.string().alias('n').optional(),
userId: z.string()
.refine(userId => validation.isValidGuid(userId), {
error: e => `'${e.input}' is not a valid GUID.`
}).optional(),
userName: z.string()
.refine(userName => validation.isValidUserPrincipalName(userName), {
error: e => `'${e.input}' is not a valid UPN.`
}).optional(),
calendarGroupId: z.string().optional(),
calendarGroupName: z.string().optional()
});
class OutlookCalendarGetCommand extends GraphCommand {
get name() {
return commands.CALENDAR_GET;
}
get description() {
return 'Retrieves the calendar of a user or a group';
}
get schema() {
return options;
}
getRefinedSchema(schema) {
return schema
.refine(options => [options.id, options.name].filter(x => x !== undefined).length === 1, {
error: 'Specify either id or name, but not both'
})
.refine(options => [options.userId, options.userName].filter(x => x !== undefined).length === 1, {
error: 'Specify either userId or userName, but not both'
})
.refine(options => !(options.calendarGroupId && options.calendarGroupName), {
error: 'Specify either calendarGroupId or calendarGroupName, but not both'
});
}
async commandAction(logger, args) {
if (this.verbose) {
await logger.logToStderr('Getting calendar...');
}
try {
const userIdentifier = args.options.userId ?? args.options.userName;
let calendarGroupId = args.options.calendarGroupId;
if (args.options.calendarGroupName) {
const group = await calendarGroup.getUserCalendarGroupByName(userIdentifier, args.options.calendarGroupName, 'id');
calendarGroupId = group.id;
}
let result;
if (args.options.id) {
result = await calendar.getUserCalendarById(userIdentifier, args.options.id, calendarGroupId);
}
else {
result = await calendar.getUserCalendarByName(userIdentifier, args.options.name, calendarGroupId);
}
await logger.log(result);
}
catch (err) {
this.handleRejectedODataJsonPromise(err);
}
}
}
export default new OutlookCalendarGetCommand();
//# sourceMappingURL=calendar-get.js.map