UNPKG

@pnp/cli-microsoft365

Version:

Manage Microsoft 365 and SharePoint Framework projects on any platform

106 lines 4.18 kB
import { z } from 'zod'; import { globalOptionsZod } from '../../../../Command.js'; import request from '../../../../request.js'; import { entraGroup } from '../../../../utils/entraGroup.js'; import { validation } from '../../../../utils/validation.js'; import commands from '../../commands.js'; import { spo } from '../../../../utils/spo.js'; import GraphDelegatedCommand from '../../../base/GraphDelegatedCommand.js'; import { formatting } from '../../../../utils/formatting.js'; export const options = z.strictObject({ ...globalOptionsZod.shape, name: z.string() .refine(name => name.length <= 128, { error: 'The specified name is too long. It should be at most 128 characters.' }) .refine(name => !/[?*/:<>|'"]/.test(name), { error: `The specified name contains invalid characters. It cannot contain ?*/:<>|'". Please remove them and try again.` }).alias('n'), userId: z.string().refine(id => validation.isValidGuid(id), { error: e => `'${e.input}' is not a valid GUID.` }).optional(), userName: z.string().optional(), groupId: z.string().refine(id => validation.isValidGuid(id), { error: e => `'${e.input}' is not a valid GUID.` }).optional(), groupName: z.string().optional(), webUrl: z.string().refine(url => validation.isValidSharePointUrl(url) === true, { error: e => `'${e.input}' is not a valid SharePoint Online site URL.` }).optional().alias('u') }); class OneNoteNotebookAddCommand extends GraphDelegatedCommand { get name() { return commands.NOTEBOOK_ADD; } get description() { return 'Creates a new OneNote notebook'; } get schema() { return options; } getRefinedSchema(schema) { return schema .refine(options => { const opts = [options.userId, options.userName, options.groupId, options.groupName, options.webUrl]; const defined = opts.filter(item => item !== undefined); return defined.length <= 1; }, { error: 'Specify userId, userName, groupId, groupName, or webUrl, but not multiple.', params: { customCode: 'optionSet', options: ['userId', 'userName', 'groupId', 'groupName', 'webUrl'] } }); } async commandAction(logger, args) { try { if (this.verbose) { await logger.logToStderr(`Creating OneNote notebook ${args.options.name}`); } const requestUrl = await this.getRequestUrl(args); const requestOptions = { url: requestUrl, headers: { accept: 'application/json;odata.metadata=none', 'content-type': "application/json" }, responseType: 'json', data: { displayName: args.options.name } }; const response = await request.post(requestOptions); await logger.log(response); } catch (err) { this.handleRejectedODataJsonPromise(err); } } async getRequestUrl(args) { let endpoint = `${this.resource}/v1.0/`; if (args.options.userId) { endpoint += `users/${args.options.userId}`; } else if (args.options.userName) { endpoint += `users/${formatting.encodeQueryParameter(args.options.userName)}`; } else if (args.options.groupId) { endpoint += `groups/${args.options.groupId}`; } else if (args.options.groupName) { const groupId = await entraGroup.getGroupIdByDisplayName(args.options.groupName); endpoint += `groups/${groupId}`; } else if (args.options.webUrl) { const siteId = await spo.getSpoGraphSiteId(args.options.webUrl); endpoint += `sites/${siteId}`; } else { endpoint += 'me'; } endpoint += '/onenote/notebooks'; return endpoint; } } export default new OneNoteNotebookAddCommand(); //# sourceMappingURL=notebook-add.js.map