当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript angular-jwt.JwtHelperService类代码示例

本文整理汇总了TypeScript中@auth0/angular-jwt.JwtHelperService的典型用法代码示例。如果您正苦于以下问题:TypeScript JwtHelperService类的具体用法?TypeScript JwtHelperService怎么用?TypeScript JwtHelperService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了JwtHelperService类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: isAuthed

 public isAuthed() {
     const token = this.jwtHelperService.tokenGetter();
     if (!token) { return false; }
     try {
         return !this.jwtHelperService.isTokenExpired(token);
     } catch (e) {
         return false;
     }
 }
开发者ID:MattJeanes,项目名称:SystemChecker,代码行数:9,代码来源:app.service.ts

示例2: ngOnInit

 ngOnInit() {
   if (this.jwtHelper.isTokenExpired()) {
     this.router.navigateByUrl('auth/login');
   } else {
     $(document).on('click', '[href="#"]', e => e.preventDefault());
   }
 }
开发者ID:echolaw,项目名称:work-day,代码行数:7,代码来源:app.component.ts

示例3: getUsername

 getUsername() {
   const tokenPayload = this.jwt.decodeToken(this.getToken());
   if (tokenPayload) {
     return tokenPayload.user.username;
   }
   return null;
 }
开发者ID:myprojectsfile,项目名称:taavoni,代码行数:7,代码来源:portfo.component.ts

示例4: isAuthenticated

 public isAuthenticated(): boolean {
   const token = localStorage.getItem('access_token').split('.')[1];
   console.log(token);
   // Check whether the token is expired and return
   // true or false
   return !this.jwtHelper.isTokenExpired(token);
 }
开发者ID:Sadam100,项目名称:basket-ball-hub,代码行数:7,代码来源:auth.service.ts

示例5: user

 get user(): Collaborateur {
   if (this.token) {
     return this.jwt.decodeToken(this.token);
   } else {
     return null;
   }
 }
开发者ID:thienban,项目名称:gestion-du-transport,代码行数:7,代码来源:login.service.ts

示例6: checkTokenExp

 checkTokenExp() {
   if (this.jwtHelper.isTokenExpired(this.getSession())) {
     localStorage.removeItem('login')
     this._router.navigate(['/core/home'])
   }
   console.log(`Your Token is ${this.getSession() ? this.getSession() : "Not Have Token."}`)
 }
开发者ID:sukumDev123,项目名称:hotelLubD,代码行数:7,代码来源:user-global.service.ts

示例7: canActivate

 canActivate() {
     if (this.jwtHelper.isTokenExpired()) {
         // not logged in so return false and redirect to login page
         this.router.navigate(['/accounts/login']);
         return false;
     }
     return true;
 }
开发者ID:mik4el,项目名称:gadget_board,代码行数:8,代码来源:account-guard.ts

示例8: isAdmin

 isAdmin() {
   if (this.authService.loggedIn()) {
     const token = this.authService.getToken();
     const decodedToken = this.jwtHelper.decodeToken(token);
     if (
       decodedToken.userRoles.find(role => role.authority === 'ROLE_ADMIN')
     ) {
       return true;
     }
   }
 }
开发者ID:Khasanboy,项目名称:Shop-Angular-SpringBoot,代码行数:11,代码来源:navbar.component.ts

示例9: ngOnInit

  ngOnInit() {
    const token = localStorage.getItem('token');
    const user: User = JSON.parse(localStorage.getItem('user'));
    if (token) {
      this.authService.decodedToken = this.jwthelperService.decodeToken(token);
    }
    if (user) {
      this.authService.currentUser = user;
      if (this.authService.currentUser.photoUrl !== null) {
        this.authService.changeMemberPhoto(user.photoUrl);
      } else {
        this.authService.changeMemberPhoto('../assets/user.png');
      }
    }

  }
开发者ID:bryanmeller,项目名称:DatingApp-Angular,代码行数:16,代码来源:app.component.ts

示例10: canActivate

  canActivate() {
    if (this.authService.loggedIn()) {
      const token = this.authService.getToken();
      const decodedToken = this.jwtHelper.decodeToken(token);
      if (
        decodedToken.userRoles.find(
          role => role.authority === 'ROLE_ADMIN'
        )
      ) {
        return true;
      }
    }

    this.router.navigate(['/']);
    this.flashMessages.show('You don\'t have creadentials for this page', {
      cssClass: 'alert-danger',
      timeout: 3000
    });
    return false;
  }
开发者ID:Khasanboy,项目名称:Shop-Angular-SpringBoot,代码行数:20,代码来源:admin-auth-guard.service.ts


注:本文中的@auth0/angular-jwt.JwtHelperService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。