StationUpdatedEvent.ts 1016 B

1234567891011121314151617181920212223242526272829303132
  1. import { Schema, HydratedDocument } from "mongoose";
  2. import ModelUpdatedEvent from "@/modules/DataModule/ModelUpdatedEvent";
  3. import { StationPrivacy } from "../StationPrivacy";
  4. import { StationType } from "../StationType";
  5. import { StationSchema } from "../schema";
  6. import { UserSchema } from "../../users/schema";
  7. export default abstract class StationUpdatedEvent extends ModelUpdatedEvent {
  8. protected static _modelName = "stations";
  9. // TODO make this function shared
  10. protected static _hasPermission = (
  11. model: HydratedDocument<StationSchema>,
  12. user: HydratedDocument<UserSchema> | null
  13. ) => {
  14. if (!model) return false;
  15. if (
  16. model.privacy === StationPrivacy.PUBLIC ||
  17. model.privacy === StationPrivacy.UNLISTED
  18. )
  19. return true;
  20. // If the station isn't public/unlisted, and the user isn't logged in, don't give permission
  21. if (!user) return false;
  22. if (
  23. model.type === StationType.COMMUNITY &&
  24. model.owner?.toString() === user._id.toString()
  25. )
  26. return true;
  27. return false;
  28. };
  29. }