@pnp/cli-microsoft365
Version:
Manage Microsoft 365 and SharePoint Framework projects on any platform
114 lines • 5.51 kB
JavaScript
import { z } from 'zod';
import GraphCommand from '../../../base/GraphCommand.js';
import commands from '../../commands.js';
import { validation } from '../../../../utils/validation.js';
import { globalOptionsZod } from '../../../../Command.js';
import { formatting } from '../../../../utils/formatting.js';
import { odata } from '../../../../utils/odata.js';
import request from '../../../../request.js';
import { accessToken } from '../../../../utils/accessToken.js';
import auth from '../../../../Auth.js';
export const options = z.strictObject({
...globalOptionsZod.shape,
id: z.string().optional(),
name: z.string().optional(),
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 UPN.`
}).optional()
});
class OutlookCalendarGroupGetCommand extends GraphCommand {
get name() {
return commands.CALENDARGROUP_GET;
}
get description() {
return 'Retrieves a calendar group for a user';
}
get schema() {
return options;
}
getRefinedSchema(schema) {
return schema
.refine(o => !(o.id && o.name), {
error: 'Specify either id or name, but not both.'
})
.refine(o => Boolean(o.id || o.name), {
error: 'Specify either id or name.'
})
.refine(o => !(o.userId && o.userName), {
error: 'Specify either userId or userName, but not both.'
});
}
async commandAction(logger, args) {
try {
const token = auth.connection.accessTokens[auth.defaultResource].accessToken;
const isAppOnlyAccessToken = accessToken.isAppOnlyAccessToken(token);
let userIdentifier = undefined;
if (args.options.userId || args.options.userName) {
userIdentifier = args.options.userId ?? args.options.userName;
}
const encodedUserIdentifier = userIdentifier
? formatting.encodeQueryParameter(userIdentifier)
: undefined;
if (isAppOnlyAccessToken) {
if (!args.options.userId && !args.options.userName) {
throw 'When running with application permissions either userId or userName is required.';
}
}
else {
if (args.options.userId || args.options.userName) {
const currentUserId = accessToken.getUserIdFromAccessToken(token);
const currentUserName = accessToken.getUserNameFromAccessToken(token);
const isOtherUser = (args.options.userId && args.options.userId !== currentUserId) ||
(args.options.userName && args.options.userName.toLowerCase() !== currentUserName?.toLowerCase());
if (isOtherUser) {
const scopes = accessToken.getScopesFromAccessToken(token);
const hasSharedScope = scopes.some(s => s === 'Calendars.Read.Shared' || s === 'Calendars.ReadWrite.Shared');
if (!hasSharedScope) {
throw `To retrieve calendar groups of other users, the Entra ID application used for authentication must have either the Calendars.Read.Shared or Calendars.ReadWrite.Shared delegated permission assigned.`;
}
}
}
}
const getCalendarGroupByName = async (calendarGroupName) => {
const userPath = encodedUserIdentifier ? `users('${encodedUserIdentifier}')` : 'me';
const calendarGroups = await odata.getAllItems(`${this.resource}/v1.0/${userPath}/calendarGroups?$filter=name eq '${formatting.encodeQueryParameter(calendarGroupName)}'`);
if (calendarGroups.length === 0) {
throw `The specified calendar group '${calendarGroupName}' does not exist.`;
}
return calendarGroups[0];
};
if (args.options.name) {
if (this.verbose) {
await logger.logToStderr(`Retrieving calendar group '${args.options.name}'...`);
}
const result = await getCalendarGroupByName(args.options.name);
await logger.log(result);
}
else {
const calendarGroupId = args.options.id;
const userPath = encodedUserIdentifier ? `users('${encodedUserIdentifier}')` : 'me';
const requestUrl = `${this.resource}/v1.0/${userPath}/calendarGroups/${calendarGroupId}`;
if (this.verbose) {
await logger.logToStderr(`Retrieving calendar group '${calendarGroupId}'...`);
}
const requestOptions = {
url: requestUrl,
headers: {
accept: 'application/json;odata.metadata=none'
},
responseType: 'json'
};
const result = await request.get(requestOptions);
await logger.log(result);
}
}
catch (err) {
this.handleRejectedODataJsonPromise(err);
}
}
}
export default new OutlookCalendarGroupGetCommand();
//# sourceMappingURL=calendargroup-get.js.map