Browse Source

refactor: change EventsModule SubscribeMany job to use new method of checking event permissions

Kristian Vos 9 months ago
parent
commit
e1c49a548e
1 changed files with 6 additions and 10 deletions
  1. 6 10
      backend/src/modules/EventsModule/jobs/SubscribeMany.ts

+ 6 - 10
backend/src/modules/EventsModule/jobs/SubscribeMany.ts

@@ -24,20 +24,16 @@ export default class SubscribeMany extends Job {
 	}
 
 	protected override async _authorize() {
+		// Channel could be data.news.created, or something like data.news.updated:SOME_OBJECT_ID
 		await forEachIn(this._payload.channels, async channel => {
+			// Path can be for example data.news.created. Scope will be anything after ":", but isn't required, so could be undefined
 			const { path, scope } = Event.parseKey(channel);
 
-			const EventClass = EventsModule.getEvent(path);
+			const permission = scope
+				? `event.${path}.${scope}`
+				: `event.${path}`;
 
-			const hasPermission = await EventClass.hasPermission(
-				await this._context.getUser().catch(() => null),
-				scope
-			);
-
-			if (!hasPermission)
-				throw new Error(
-					`Insufficient permissions for event ${channel}`
-				);
+			await EventsModule.assertPermission(permission);
 		});
 	}