aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/core/routing/user-right-guard.service.ts
blob: 50c3d8c19e59f9c7b412ad2d694230045d3124e1 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                          

              

                        
                                                  

             
                                                                      
 



                             

                                                                           





                                                     


                                      





                                                                                
import { Injectable } from '@angular/core'
import {
  ActivatedRouteSnapshot,
  CanActivateChild,
  RouterStateSnapshot,
  CanActivate,
  Router
} from '@angular/router'

import { AuthService } from '../auth/auth.service'

@Injectable()
export class UserRightGuard implements CanActivate, CanActivateChild {

  constructor (
    private router: Router,
    private auth: AuthService
  ) {}

  canActivate (route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
    const user = this.auth.getUser()
    if (user) {
      const neededUserRight = route.data.userRight

      if (user.hasRight(neededUserRight)) return true
    }

    this.router.navigate([ '/login' ])
    return false
  }

  canActivateChild (route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
    return this.canActivate(route, state)
  }
}