UNPKG

zaccl

Version:

The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.

335 lines (312 loc) 11.2 kB
/** * Category of endpoints for Zoom cloud recordings * @author Gabe Abrams * @author Aryan Pandey * @namespace api.cloudRecording */ // Import shared interfaces import EndpointCategory from '../shared/interfaces/EndpointCategory'; // Import shared classes import ZACCLError from '../shared/classes/ZACCLError'; import ErrorCode from '../shared/types/ErrorCode'; // Import shared types import ZoomMeetingRecordings from '../types/ZoomMeetingRecordings'; import ZoomRecordingInAccount from '../types/ZoomRecordingInAccount'; // Import shared helper import { doubleEncode, formatDate, } from '../shared/helpers/utils'; class ECatCloudRecording extends EndpointCategory { /** * List recordings in the account (Medium) * @author Gabe Abrams * @instance * @memberof api.cloudRecording * @method listAccountRecordings * @param opts object containing all arguments * @param opts.fromYear the start of the date range to list recordings for (e.g. 2026) * @param opts.fromMonth the month of the date range to list recordings for (1-12) * @param [opts.fromDay] the day of the month of the date range to list recordings for (1-31, defaults to 1) * @param [opts.toYear] the end of the date range to list recordings for (e.g. 2026, defaults to 1 month later) * @param [opts.toMonth] the month of the end of the date range to list recordings for (1-12, defaults to 1 month later) * @param [opts.toDay] the day of the month of the end of the date range to list recordings for (1-31, defaults to 1 month later) * @param [opts.accountId] the account ID of the account of interest (defaults to the account * associated with the current access) * @param [opts.onNewPage] callback function that is called when a new page of results is received. * The function is passed the new page of results as an argument. * @param [opts.minMsBetweenPageRequests] minimum time (in ms) to wait between paginated requests, * for custom throttle control * @returns the list of recordings in the account */ async listAccountRecordings( opts: { fromYear: number, fromMonth: number, fromDay?: number, toYear?: number, toMonth?: number, toDay?: number, accountId?: string, onNewPage?: (recordings: ZoomRecordingInAccount[]) => void, minMsBetweenPageRequests?: number, }, ): Promise<ZoomRecordingInAccount[]> { // Generate from date const { fromYear, fromMonth, minMsBetweenPageRequests, } = opts; const fromMonthPadded = fromMonth < 10 ? `0${fromMonth}` : fromMonth; const fromDay = opts.fromDay ?? 1; const fromDayPadded = fromDay < 10 ? `0${fromDay}` : fromDay; const fromDateString = `${fromYear}-${fromMonthPadded}-${fromDayPadded}`; // Generate to date let toYear: number; let toMonth: number; let toDay: number; if (opts.toYear && opts.toMonth) { toYear = opts.toYear; toMonth = opts.toMonth; toDay = opts.toDay ?? 1; } else { // Generate to date const fromDate = new Date(fromYear, fromMonth - 1, fromDay); fromDate.setMonth(fromDate.getMonth() + 1); toYear = fromDate.getFullYear(); toMonth = fromDate.getMonth() + 1; toDay = fromDate.getDate(); } const toMonthPadded = toMonth < 10 ? `0${toMonth}` : toMonth; const toDayPadded = toDay < 10 ? `0${toDay}` : toDay; const toDateString = `${toYear}-${toMonthPadded}-${toDayPadded}`; return this.visitEndpoint({ path: `/accounts/${opts.accountId ?? 'me'}/recordings`, action: 'list recordings in the account', method: 'GET', params: { page_size: 300, // max allowed page size from: fromDateString, to: toDateString, }, onNewPage: opts.onNewPage, minMsBetweenPageRequests, itemKey: 'meetings', errorMap: { 400: 'Bad request', 404: 'No recordings found', }, }); } /** * Recover recordings for a meeting (Light) * @author Gabe Abrams * @instance * @memberof api.cloudRecording * @method recoverMeetingRecordings * @param opts object containing all arguments * @param opts.meetingId the Zoom meeting ID or UUID */ async recoverMeetingRecordings( opts: { meetingId: string | number, }, ): Promise<void> { // Check if required param is present if (!opts.meetingId) { throw new ZACCLError({ message: 'Meeting ID is a required parameter', code: ErrorCode.InvalidMeetingId, }); } return this.visitEndpoint({ path: `/meetings/${doubleEncode(String(opts.meetingId))}/recordings/status`, method: 'PUT', params: { action: 'recover', }, action: 'recover recordings of a meeting', errorMap: { 400: { 1010: 'We could not find the user on this account', 3309: 'Not enough cloud storage available. Either purchase additional storage or delete cloud recordings to free up storage.', }, 404: { 1001: 'We could not find that user', 3301: `There are no recordings for the meeting ${opts.meetingId}`, }, }, }); } /** * Get all recordings of a meeting (Light) * @author Aryan Pandey * @instance * @memberof api.cloudRecording * @method listMeetingRecordings * @param opts object containing all arguments * @param opts.meetingId the Zoom meeting ID or UUID * @param opts.includeDownloadAccessToken if true, the response will include a download_access_token * that can be used to download the recording files * @param opts.attemptRecoverOnNotFound if true, when Zoom returns a "not found" error, * attempt to recover the recording and then fetch the recording info again * @returns list of Zoom meeting recording objects {@link https://marketplace.zoom.us/docs/api-reference/zoom-api/cloud-recording/recordingget#responses} */ async listMeetingRecordings( opts: { meetingId: string | number, includeDownloadAccessToken?: boolean, attemptRecoverOnNotFound?: boolean, }, ): Promise<ZoomMeetingRecordings> { // Check if required param is present if (!opts.meetingId) { throw new ZACCLError({ message: 'Meeting ID is a required parameter', code: ErrorCode.InvalidMeetingId, }); } // Create params const params: { [k: string]: any } = {}; if (opts.includeDownloadAccessToken) { params.include_fields = 'download_access_token'; params.ttl = 604800; // Max TTL } // Create full visitEndpoint opts const path = `/meetings/${doubleEncode(String(opts.meetingId))}/recordings`; const method = 'GET'; const action = 'get all recordings of a meeting'; const errorMap = { 400: { 1010: 'We could not find the user on this account', }, 404: { 1001: 'We could not find that user', 3301: `There are no recordings for the meeting ${opts.meetingId}`, }, }; try { const output = await this.visitEndpoint({ path, method, action, errorMap, params, }); return output; } catch (err) { if ( // Attempt recovery opts.attemptRecoverOnNotFound // Recording not found && (err as any || {}).code === 'ZOOM404-3301' ) { try { // Try recovering the recording await this.recoverMeetingRecordings({ meetingId: opts.meetingId }); // Recovered! Try fetching again const output = await this.visitEndpoint({ path, method, action, errorMap, params, }); return output; } catch (err2) { // Failed to recover throw new ZACCLError({ message: `The recording for meeting ${opts.meetingId} could not be found, and we were unable to recover it. Error: ${(err2 as any)?.message || 'unknown recovery error'}`, code: ErrorCode.NotFoundAndUnrecoverable, }); } } // Not an error we handle. Rethrow it. throw err; } } /** * List all cloud recordings of a user (Medium) * @author Aryan Pandey * @instance * @memberof api.cloudRecording * @method listUserRecordings * @param opts object containing all arguments * @param opts.userId the user ID or email address of the user * @param [opts.searchTrash=false] set to true to retrieve * meeting recordings from the trash. * @param [opts.startDate=1 month before today] * string accepted by JS Date constructor or instance of Date object. * Date needs to be within past 6 months. Time data (hours and seconds) * is discarded * @param [opts.endDate] string accepted by JS Date * constructor or instance of Date object. * Date needs to be within past 6 months. Time data (hours and seconds) * is discarded * @param [opts.onNewPage] callback function that is called when a new page of results is received. * @param [opts.minMsBetweenPageRequests] minimum time (in ms) to wait between paginated requests, * for custom throttle control * @returns List of Zoom Recordings {@link https://marketplace.zoom.us/docs/api-reference/zoom-api/cloud-recording/recordingslist#responses} */ async listUserRecordings( opts: { userId: string, searchTrash?: boolean, startDate?: (string | Date), endDate?: (string | Date), onNewPage?: (recordings: ZoomMeetingRecordings[]) => void, minMsBetweenPageRequests?: number, }, ): Promise<ZoomMeetingRecordings[]> { // Destructure arguments const { userId, searchTrash, startDate, endDate, onNewPage, minMsBetweenPageRequests, } = opts; // Declare default start Date to 1 month before const defaultDate = new Date(); defaultDate.setMonth(defaultDate.getMonth() - 1); // Initialize params object with default values and only add // optional params if they are defined const params: { page_size: number, trash: boolean, from: string, to?: string, next_page_token?: string, } = { page_size: 300, trash: !!searchTrash, from: formatDate(defaultDate, 'startDate'), }; if (startDate) { params.from = formatDate(startDate, 'startDate'); } if (endDate) { params.to = formatDate(endDate, 'endDate'); } return this.visitEndpoint({ path: `/users/${userId}/recordings`, action: 'list all cloud recordings of a user', method: 'GET', params, onNewPage: opts.onNewPage, minMsBetweenPageRequests, itemKey: 'meetings', errorMap: { 404: { 1001: `We could not find the Zoom user ${userId} on this account`, }, }, }); }; } /*------------------------------------------------------------------------*/ /* Export */ /*------------------------------------------------------------------------*/ export default ECatCloudRecording;