Angular Keycloak: Difference between revisions
Jump to navigation
Jump to search
Line 64: | Line 64: | ||
}) | }) | ||
export class AppModule { } | export class AppModule { } | ||
</syntaxhighlight> | |||
==Create a Guard== | |||
<syntaxhighlight lang="ts"> | |||
import { Injectable } from '@angular/core'; | |||
import { ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router } from '@angular/router'; | |||
import { KeycloakAuthGuard, KeycloakService } from 'keycloak-angular'; | |||
@Injectable({ | |||
providedIn: 'root' | |||
}) | |||
export class AuthGuard extends KeycloakAuthGuard { | |||
constructor( | |||
protected readonly router: Router, | |||
protected readonly keycloak: KeycloakService | |||
) { | |||
super(router, keycloak); | |||
} | |||
async isAccessAllowed( | |||
route: ActivatedRouteSnapshot, | |||
state: RouterStateSnapshot): Promise<boolean | UrlTree> { | |||
if (!this.authenticated) { | |||
await this.keycloak.login({ | |||
redirectUri: window.location.origin + state.url, | |||
}); | |||
} | |||
return this.authenticated; | |||
} | |||
} | |||
</syntaxhighlight> | |||
Add the Guard to the Route | |||
<syntaxhighlight lang="ts"> | |||
const routes: Routes = [ | |||
{ path: '', component: ContentComponent , canActivate: [AuthGuard]}, | |||
{ path: '**', redirectTo: '' } | |||
]; | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 04:59, 18 April 2021
Introduction
This is a page just to clarify how to integrate Keycloak with Angular. It is assumed you know how to configure Keycloak. Most of this is from ["Wojciech Krzywiec"]
Keycloak
So to set this up we
- Setup a client with
- A root URL http://localhost:80/*, http://localhost:4200/*, http://localhost/*
- Web Origins +
Application
Install the Keycloak Package
npm install keycloak-angular keycloak-js
Create Initializer Factory
Never keen on the CLI but I guess it stays up to date.
ng g class init/keycloak-init --type=factory --skip-tests
This provides the initializer for Keycloak Server
import { KeycloakService } from "keycloak-angular";
export function initializeKeycloak(
keycloak: KeycloakService
) {
return () =>
keycloak.init({
config: {
url: 'http://localhost:8080' + '/auth',
realm: 'test',
clientId: 'frontend',
}
});
}
Now add it to the app module
@NgModule({
declarations: [
AppComponent,
ContentComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
MatButtonModule,
MatFormFieldModule,
MatSelectModule,
MatTableModule,
MatSnackBarModule,
HttpClientModule,
KeycloakAngularModule,
NgbModule,
AppRoutingModule
],
providers: [
{
provide: APP_INITIALIZER,
useFactory: initializeKeycloak,
multi: true,
deps: [KeycloakService],
}
],
bootstrap: [AppComponent]
})
export class AppModule { }
Create a Guard
import { Injectable } from '@angular/core';
import { ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router } from '@angular/router';
import { KeycloakAuthGuard, KeycloakService } from 'keycloak-angular';
@Injectable({
providedIn: 'root'
})
export class AuthGuard extends KeycloakAuthGuard {
constructor(
protected readonly router: Router,
protected readonly keycloak: KeycloakService
) {
super(router, keycloak);
}
async isAccessAllowed(
route: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Promise<boolean | UrlTree> {
if (!this.authenticated) {
await this.keycloak.login({
redirectUri: window.location.origin + state.url,
});
}
return this.authenticated;
}
}
Add the Guard to the Route
const routes: Routes = [
{ path: '', component: ContentComponent , canActivate: [AuthGuard]},
{ path: '**', redirectTo: '' }
];