Clone of https://www.npmjs.com/package/microsoft-adal-angular6 with acquireTokenRedirect and updated packages
npm install microsoft-adal-angular7bash
npm i microsoft-adal-angular6
`
Also add it to your dependencies section in package.json so that it is restored when you do an npm install.
Step 2: Import MsAdalModule and configure Adal options
In the root module of your application, import the MsAdalModule module.
`bash
import { MsAdalAngular6Module } from 'microsoft-adal-angular6';
`
Configure Adal options while importing the module.
`bash
@NgModule({
imports: [
MsAdalAngular6Module.forRoot({
tenant: '',<-------------------------------- ADD
clientId: '',<--------------------- ADD
redirectUri: window.location.origin,
endpoints: { <------------------------------------------- ADD
"https://localhost/Api/": "xxx-bae6-4760-b434-xxx",
---
---
},
navigateToLoginRequestUrl: false,
cacheLocation: '', <------ ADD
}),
---
---
],
---
---
})
`
In case you need to set configuration values dynamically at runtime, you can also pass a function:
`typescript
export function getAdalConfig() {
return {
tenant: '',
clientId: '',
redirectUri: window.location.origin,
endpoints: {
"https://localhost/Api/": "xxx-bae6-4760-b434-xxx",
},
navigateToLoginRequestUrl: false,
cacheLocation: '',
};
}
@NgModule({
imports: [
MsAdalAngular6Module.forRoot(getAdalConfig),
],
})
`
This might be the case if you need to pass window.location.origin as redirectUri, since the Angular AOT compiler applies a special behavior when compiling @Decorators.
For a list of all available adal configuration options, refer - https://github.com/AzureAD/azure-activedirectory-library-for-js/blob/dev/lib/adal.js
Step 3: Secure individual routes
Use the AuthenticationGuard to secure indivuadual routes in your application. This ensures that users navigating to them must be authenticated with AAD to view them.
Import AuthenticationGuard and add it as a provider in your root module.
`bash
import { AuthenticationGuard } from 'microsoft-adal-angular6';
`
`bash
@NgModule({
providers: [AuthenticationGuard],
---
---
})
`
In your routing module, add it to the routes you want to secure -
`bash
const routes: Routes = [
{ path: '', component: AppComponent, pathMatch:'full', canActivate: [AuthenticationGuard]}
];
@NgModule({
imports: [
RouterModule.forRoot(routes),
],
exports: [
RouterModule
]
})
export class AppRoutingModule { }
`
Step 4 (Optional): Generating resource tokens
To generate resource level tokens for APIs your website may consume, specify the resources in your endpoints array while injecting adalConfig into MsAdalAngular6Module.
Then to generate token, use acquireToken() of MsAdalAngular6Service-
`bash
constructor(private adalSvc: MsAdalAngular6Service) {
this.adalSvc.acquireToken('').subscribe((resToken: string) => {
console.log(resToken);
});
`
Step 5 (Optional): Other properties and methods
Based on your application needs you could use the below supported properties and methods of adalSvc -
`bash
this.adalSvc.userInfo // Gives you the complete user object with various properties about the logged in user
`
`bash
this.adalSvc.LoggedInUserEmail // Gets the LoggedInUserEmail
`
`bash
this.adalSvc.LoggedInUserName // Gets the LoggedInUserName
`
`bash
this.adalSvc.RenewToken() // Renews the AAD token
`
`bash
this.adalSvc.logout() // Logs out the signed in user
``