當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。