UserEntity.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. export class UserEntity {
  2. constructor(user) {
  3. this._id = user._id;
  4. this.nick = user.nick;
  5. this.login = user.login;
  6. this.avatar = user.avatar ? { ...user.avatar } : null;
  7. this.acl = [...(user.acl ?? [])];
  8. }
  9. #getRoleIdx = (role) => {
  10. let res = this.acl?.indexOf(role);
  11. return res ?? -1;
  12. }
  13. #isRole = (role) => this.#getRoleIdx(role) >= 0;
  14. get isAdminRole() { return this.#isRole("admin"); }
  15. get isUserRole() {
  16. let a = '';
  17. return this.#isRole("user");
  18. }
  19. #setRole = (role, isSet, onSetRole = undefined) => {
  20. this.acl ??= [];
  21. let roleIdx = this.#getRoleIdx(role);
  22. if (isSet) {
  23. if (roleIdx < 0) {
  24. this.acl.push(role);
  25. if (onSetRole)
  26. onSetRole(this);
  27. }
  28. }
  29. else {
  30. if (roleIdx >= 0) {
  31. this.acl.splice(roleIdx, 1);
  32. if (onSetRole)
  33. onSetRole(this);
  34. }
  35. }
  36. }
  37. setAdminRole = (isSet, onSetRole = undefined) => { this.#setRole("admin", isSet, onSetRole) };
  38. setUserRole = (isSet, onSetRole = undefined) => { this.#setRole("user", isSet, onSetRole) };
  39. }