Subscribe

Protecting routes in Angular ๐Ÿ‘ฎโ€โ™‚๏ธ

โœ๏ธ

How to protect routes in Angular, some routes are just for logged in users.

24 Oct, 2020 ยท 2 min read

Protecting specific routes in Angular is an everyday use case. Most applications will have some logged-in section.

Yesterday we created a login service, so that someone can log in to our application.

But having this, we can also go to the home route not being logged in.

Thatโ€™s weird because we donโ€™t have a user and see nothing.

Home page available

Letโ€™s fix that and make home a protected route.

Creating our auth guard

First, letโ€™s open the terminal and generate a new service.

ng generate service guards/AuthGuard

This will generate the auth.guard service inside the guards folder.

import { Injectable } from "@angular/core";
import {
  ActivatedRouteSnapshot,
  CanActivate,
  Router,
  RouterStateSnapshot,
} from "@angular/router";
import { AuthService } from "../services/auth.service";

@Injectable({providedIn: 'root'});
export class AuthGuardService implements CanActivate {

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

  canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
      const currentUser = this.authService.userValue;
      if (currentUser) {
          return true;
      }
      this.router.navigate(['/login']);
      return false;
  }
}

We use the CanActivate method to intercept if this route can become active. We will place this in the routing in a second.

Then we overwrite this actual function and check if we have a current user value in our authService.

If we do, itโ€™s okay, and the route can return true (valid route). Else we redirect the user to the login page.

Implementing the auth guard

To implement the auth guard we just created, we need to modify our app-routing.module.ts.

import { AuthGuardService } from './guards/auth-guard.service';

const routes: Routes = [
  // Other routes
  { path: 'home', component: HomeComponent, canActivate: [AuthGuardService] },
];

You see, itโ€™s as simple as passing the canActive option without custom AuthGuardService.

If we visit the home page without being logged in, we will be redirected to log in.

Once we log in, we will be able to see the page.

Auth Guard in Angular

You can also find this code on GitHub.

Thank you for reading, and letโ€™s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next ๐Ÿ“–

Angular dynamic classes using ngClass

31 Mar, 2021 ยท 2 min read

Angular dynamic classes using ngClass

Angular dynamically change form validators

30 Mar, 2021 ยท 3 min read

Angular dynamically change form validators

Join 2099 devs and subscribe to my newsletter