SubscribeMany.ts 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import { forEachIn } from "@common/utils/forEachIn";
  2. import Job, { JobOptions } from "@/Job";
  3. import EventsModule from "@/modules/EventsModule";
  4. import Event from "../Event";
  5. export default class SubscribeMany extends Job {
  6. protected static _hasPermission = true;
  7. public constructor(payload?: unknown, options?: JobOptions) {
  8. super(EventsModule, payload, options);
  9. }
  10. protected override async _validate() {
  11. if (typeof this._payload !== "object" || this._payload === null)
  12. throw new Error("Payload must be an object");
  13. if (!Array.isArray(this._payload.channels))
  14. throw new Error("Channels must be an array");
  15. this._payload.channels.forEach((channel: unknown) => {
  16. if (typeof channel !== "string")
  17. throw new Error("Channel must be a string");
  18. });
  19. }
  20. protected override async _authorize() {
  21. // Channel could be data.news.created, or something like data.news.updated:SOME_OBJECT_ID
  22. await forEachIn(this._payload.channels, async channel => {
  23. // Path can be for example data.news.created. Scope will be anything after ":", but isn't required, so could be undefined
  24. const { path, scope } = Event.parseKey(channel);
  25. const permission = scope
  26. ? `event.${path}:${scope}`
  27. : `event.${path}`;
  28. await EventsModule.assertPermission(this._context, permission);
  29. });
  30. }
  31. protected async _execute() {
  32. const socketId = this._context.getSocketId();
  33. if (!socketId) throw new Error("No socketId specified");
  34. await EventsModule.subscribeManySocket(
  35. this._payload.channels,
  36. socketId
  37. );
  38. }
  39. }