Calling canActivate function of all providers implementing CanActivate in Angular

I created a .NET DLL I want to use together with an Angular UI implementation.
The DLL offers some basic operations such as job monitoring. I also implemented some basic authentication that provides http only cookies when logging in but this can be used or not, depending on the project’s specs. We have certain projects that will use MSAL ENTRA to authenticate users and some projects that will use our basic implementation to do that.
I implemented the AuthGuard in my library that it’s used to allow access to routes for the authentication implemented in the DLL. I don’t want my library to be dependent on the MSAL so I need a way to check in my AuthGuard provided in the library if the user is authenticated if the main application is using MSAL.

In order to avoid circular dependency I have a service that provides all the implementations of CanActivate and CanActivateChild interfaces except for my AuthService. When logging them it appears that the services are there, both MsalGuard and my AuthGuard.

export const CanActivateToken = new InjectionToken<CanActivate>('CanActivate');export const CanActivateChildToken = new InjectionToken<CanActivateChild>('CanActivateChild');

@Injectable({providedIn: 'root'})export class AuthGuardProviderService {private static canActivateServices: CanActivate[] | undefined;private static canActivateChildServices: CanActivateChild[] | undefined;

public static get thirdPartyCanActivateServices(): CanActivate[] | undefined {return AuthGuardProviderService.canActivateServices?.filter(x => x.constructor.name != AuthGuard.name);}

public static get thirdPartyCanActivateChildServices(): CanActivateChild[] | undefined {return AuthGuardProviderService.canActivateChildServices?.filter(x => x.constructor.name != AuthGuard.name);}

constructor(@Inject(CanActivateToken) _canActivateServices: CanActivate[],@Inject(CanActivateChildToken) _canActivateChildServices: CanActivateChild[]) {AuthGuardProviderService.canActivateServices = _canActivateServices;AuthGuardProviderService.canActivateChildServices = _canActivateChildServices;}}

I am calling the canActivate method in my AuthGuard.canActivate() method for all implementations but I have no idea how to get the result. It seems the canActivate method returns a MaybeAsync<GuardResult> value…

canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {console.log(AuthGuardProviderService.thirdPartyCanActivateServices);


let canActivate: boolean = true;
AuthGuardProviderService.thirdPartyCanActivateServices?.map(x => {
  if (!x.valueOf()) {
    canActivate = false;
  }
});

if (canActivate && this.authService.hasAccessCredentials) {
  // authorised so return true
  return true;
}

// not logged in so redirect to login page with the return url
this.router.navigate([`${NavBarService.LOGIN_PATH}`], { queryParams: { returnUrl: state.url } });
return false;
}

New contributor

Marius Vasile is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật