Angularfire2とfirebaseを使用したAngular 5認証アプリ。アプリは、アプリ内リンクを使用してうまくナビゲートします。ログイン後にダッシュボードにリダイレクトするか、アプリのボタン/リンクを介して別のページ(コンポーネント)にリンクします。ただし、 " http:// localhost:4300/dashboard "ページでブラウザの更新(Chrome)を押すと、ログインページにリダイレクトされます。ブラウザでBACK/NEXTを使用しても問題なく動作しますが、特定のルートに行くことを特に求めているわけではないためだと思います。
サブスクリプションを使用して、ログインしているかどうかを識別するNavBarがあります(右上のスクリーンショットを参照...)-これはすべて正常に機能します。
ブラウザーの更新時または直接URLナビゲーション時に、既に認証されているかどうかを識別する前にページをロードしようとすると推測しています。 devコンソールは、nav-barコンポーネントに挿入したconsole.logステートメントと、Angular coreの前に「未定義」であるという事実から、devモードで実行していることを示唆しています。
app.routes:
import { Routes, RouterModule } from '@angular/router';
import { LoginComponent } from './views/login/login.component';
import { DashboardComponent } from './views/dashboard/dashboard.component';
import { ProfileComponent } from './views/profile/profile.component';
import { AuthGuard } from './services/auth-guard.service';
const appRoutes: Routes = [
{
path: '',
component: LoginComponent
},
{
path: 'dashboard',
canActivate: [AuthGuard],
component: DashboardComponent
},
{
path: 'profile',
canActivate: [AuthGuard],
component: ProfileComponent
},
{
path: '**',
redirectTo: ''
}
];
export const AppRoutes = RouterModule.forRoot(appRoutes);
auth-gaurd:
import { AuthService } from './auth.service';
import { Injectable } from '@angular/core';
import { Router, CanActivate } from '@angular/router';
@Injectable()
export class AuthGuard implements CanActivate {
status: string;
constructor(private router: Router,
private authService: AuthService) { }
canActivate() {
this.authService.authState.subscribe(state =>
this.status = state.toString());
console.log('Can Activate ' + this.authService.authState);
console.log('Can Activate ' + this.authService.isLoggedIn());
console.log('Can Activate ' + this.status);
if(this.authService.isLoggedIn()) {
return true;
}
this.router.navigate(['/']);
return false;
}
}
auth.service:
import { Injectable } from '@angular/core';
import { Router } from "@angular/router";
import { AngularFireAuth } from 'angularfire2/auth';
import * as firebase from 'firebase/app';
import { Observable } from 'rxjs/Observable';
import { GoogleAuthProvider, GoogleAuthProvider_Instance } from '@firebase/auth-types';
import { userInfo } from 'os';
import { Subject } from 'rxjs/Subject';
@Injectable()
export class AuthService {
private user: Observable<firebase.User>;
private userDetails: firebase.User = null;
public authState = new Subject();
constructor(private _firebaseAuth: AngularFireAuth, private router: Router) {
this.user = _firebaseAuth.authState;
this.user.subscribe((user) => {
if (user) {
this.userDetails = user;
this.authState.next('Logged In');
//console.log(this.userDetails);
} else {
this.userDetails = null;
this.authState.next('Not Logged In');
}
});
}
isLoggedIn() {
if (this.userDetails == null) {
return false;
} else {
return true;
}
}
}
nav-bar.component:
import { Component, OnInit } from '@angular/core';
import { AuthService } from '../../services/auth.service';
@Component({
selector: 'app-nav-bar',
templateUrl: './nav-bar.component.html',
styleUrls: ['./nav-bar.component.css']
})
export class NavBarComponent implements OnInit {
status: string;
constructor(private authService: AuthService) {
console.log('Constructor ' + this.status);
}
ngOnInit() {
//this.authService.isLoggedIn().subscribe((state) => this.status = state.toString());
this.authService.authState.subscribe(state =>
this.status = state.toString());
console.log('ngOnInit ' + this.status);
}
}
canActivate()
メソッドは、ページの更新時に直接呼び出されます。したがって、常にfalse
を返します。
canActivate() {
this.authService.authState.subscribe(state => {
this.status = state.toString(); // This is called async/delayed.
});
// so method execution proceeds
// isLoggedIn() returns false since the login stuff in AuthService.constructor
// is also async: .subscribe((user) => { /* delayed login */ });
if(this.authService.isLoggedIn()) {
return true;
}
// so it comes here
this.router.navigate(['/']); // navigating to LoginComponent
return false; // and canActivate returns false
}
ソリューション:
import { CanActivate, Router, ActivatedRouteSnapshot,
RouterStateSnapshot } from '@angular/router';
// ...
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean {
// when the user is logged in and just navigated to another route...
if (this.authService.isLoggedIn) { return true; }
// proceeds if not loggedIn or F5/page refresh
// Store the attempted URL for redirecting later
this.authService.redirectUrl = state.url;
// go login page
this.router.navigate(['/']);
return false;
}
さて、少し変更されたAuthServiceに戻ります:(ここで変更/関連するコードのみが変更されています)
export class AuthService {
// new
redirectUrl: string;
// BehaviorSubjects have an initial value.
// isLoggedIn is property (not function) now:
isLoggedIn = new BehaviorSubject<boolean>(false);
// params declared private and public in constructor become properties of the class
constructor(private firebaseAuth: AngularFireAuth, private router: Router) {
// so this.user is not required since it is reference to this.firebaseAuth
this.firebaseAuth.authState.subscribe((user) => {
if (user) {
this.loggedIn.next(true);
// NOW, when the callback from firebase came, and user is logged in,
// we can navigate to the attempted URL (if exists)
if(this.redirectUrl) {
this.router.navigate([this.redirectUrl]);
}
} else {
this.loggedIn.next(false);
}
}
}
}
注:このコードを回答ボックスに記述し、脳内でコンパイルしました。そのため、バグが存在する可能性があります。また、これが実際にベストプラクティスであるかどうかはわかりません。しかし、アイデアは明確でなければなりませんか?!
同様の問題/解決策があるようです: Angular 2 AuthGuard + Firebase Auth