且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

你如何让 AngularFire2 的路由守卫等待身份验证检查

更新时间:2023-12-02 13:55:34

这是在 this 中的答案 在 Github 上发布帖子.

auth.service.ts:

@Injectable()导出类 AuthService {私人 _user: firebase.User;构造函数(公共afAuth:AngularFireAuth,私有数据库:AngularFireDatabase){afAuth.authState.subscribe(user => this.user = user);}获取用户():firebase.User {返回 this._user;}设置用户(值:firebase.User){this._user = 值;}获得认证():布尔{返回 this._user !== null;}}

auth.guard.ts:

@Injectable()导出类 AuthGuard 实现 CanActivate {构造函数(私有身份验证:AuthService,私有路由器:路由器){}可以激活(下一个:ActivatedRouteSnapshot,state: RouterStateSnapshot): Observable|Promise|布尔{返回 this.auth.afAuth.authState.take(1).map(authState => !!authState).do(经过身份验证的 => {如果(!认证){this.router.navigate(['登录']);}});}}

I want my auth guard to wait until I get the auth back from firebase before it reroutes me. Currently, the auth guard check inits first.

I need to make it async in the canActivate, or only populate the canActivate after called.

auth.guard.ts

import { Injectable } from '@angular/core';
import { Router, CanActivate } from '@angular/router';
import { AuthService } from './auth.service';

@Injectable()
export class AuthGuard implements CanActivate {
    constructor(private authService: AuthService) { 
        console.log(this.authService.isAuthenticated); // returns false, doesn't async
    }

  canActivate() {
      console.log(this.authService.isAuthenticated); // returns false
      return this.authService.isAuthenticated;
  }
}

auth.service.ts

...
import { AngularFire, 
    AuthProviders, 
    AuthMethods, 
    FirebaseListObservable, 
    FirebaseObjectObservable } from 'angularfire2';
...

@Injectable()
export class AuthService {
    isAuthenticated: boolean = false; 
    // the problem is setting it to a bool, need to async it (( but this was from official documentation and Pluralsight tuts__

    constructor(
        public af: AngularFire, 
        private _router: Router, 
        private _route: ActivatedRoute ) { 
           this.af.auth.subscribe((auth)=>{

               console.log('called after after auth guard');

               if (auth == null) {
                   this._router.navigate(['/login']);
               } else {
                   this.isAuthenticated = true;
               }
           }
       });
   }

So how can I make the AuthGuard's canActivate wait for an async boolean?

And how do I pass it to the AuthGuard's canActivate() function?

It was answer in this issue post on Github.

auth.service.ts:

@Injectable()
export class AuthService {

  private _user: firebase.User;

  constructor(public afAuth: AngularFireAuth, private db: AngularFireDatabase) {
    afAuth.authState.subscribe(user => this.user = user);  
  }

  get user(): firebase.User {
    return this._user;
  }

  set user(value: firebase.User) {
    this._user = value;
  }

  get authenticated(): boolean {
    return this._user !== null;
  }
}

auth.guard.ts:

@Injectable()
export class AuthGuard implements CanActivate {

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

  canActivate(
    next: ActivatedRouteSnapshot,
    state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
    return this.auth.afAuth.authState
            .take(1)
            .map(authState => !!authState)
            .do(authenticated => {
              if (!authenticated) {
                  this.router.navigate(['login']);
              }
            });
  }
}