Skip to content

Commit c266263

Browse files
fix: booking.controller clone req to avoid side effect apiv2 (#17239)
1 parent c229116 commit c266263

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

apps/api/v2/src/ee/bookings/2024-04-15/controllers/bookings.controller.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -355,31 +355,33 @@ export class BookingsController_2024_04_15 {
355355
oAuthClientId?: string,
356356
platformBookingLocation?: string
357357
): Promise<NextApiRequest & { userId?: number } & OAuthRequestParams> {
358+
const clone = { ...req };
358359
const userId = (await this.getOwnerId(req)) ?? -1;
359360
const oAuthParams = oAuthClientId
360361
? await this.getOAuthClientsParams(oAuthClientId)
361362
: DEFAULT_PLATFORM_PARAMS;
362-
Object.assign(req, { userId, ...oAuthParams, platformBookingLocation });
363-
req.body = { ...req.body, noEmail: !oAuthParams.arePlatformEmailsEnabled };
364-
return req as unknown as NextApiRequest & { userId?: number } & OAuthRequestParams;
363+
Object.assign(clone, { userId, ...oAuthParams, platformBookingLocation });
364+
clone.body = { ...clone.body, noEmail: !oAuthParams.arePlatformEmailsEnabled };
365+
return clone as unknown as NextApiRequest & { userId?: number } & OAuthRequestParams;
365366
}
366367

367368
private async createNextApiRecurringBookingRequest(
368369
req: BookingRequest,
369370
oAuthClientId?: string,
370371
platformBookingLocation?: string
371372
): Promise<NextApiRequest & { userId?: number } & OAuthRequestParams> {
373+
const clone = { ...req };
372374
const userId = (await this.getOwnerId(req)) ?? -1;
373375
const oAuthParams = oAuthClientId
374376
? await this.getOAuthClientsParams(oAuthClientId)
375377
: DEFAULT_PLATFORM_PARAMS;
376-
Object.assign(req, {
378+
Object.assign(clone, {
377379
userId,
378380
...oAuthParams,
379381
platformBookingLocation,
380382
noEmail: !oAuthParams.arePlatformEmailsEnabled,
381383
});
382-
return req as unknown as NextApiRequest & { userId?: number } & OAuthRequestParams;
384+
return clone as unknown as NextApiRequest & { userId?: number } & OAuthRequestParams;
383385
}
384386

385387
private handleBookingErrors(

0 commit comments

Comments
 (0)