npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@christianacca/angular-swa-auth

v2.2.0

Published

Programmatically work with Azure Static Web Apps authentication in an angular app

Downloads

22

Readme

@christianacca/angular-swa-auth

Programmatically work with Azure Static Web Apps authentication in an angular app

Features

  • an AuthService facade
    • methods to programmatically trigger sign-in, sign-up, sign-out and purge flows
    • exposes convenient observables to allow your app to examine and/or react to current user and authentication session events
    • optionally send authentication session events to your functions app
  • AuthGuard
    • add to a route to trigger the sign in flow when the user is not already authenticated
  • SwaRoleGuard
    • add to a route to perform an authorization check using roles defined in Status Web App
  • SwaRoleCheckDirective
    • structural directive to perform an authorization check using roles defined in Status Web App
  • AutoLoginHttpInterceptor
    • triggers the sign in flow when your functions api return an unauthenticated (401) response
  • convenient types and values representing the authenticated user and identity providers
  • configure the list of identity providers that should be available to your users to sign in with
  • IdentityProviderInteractiveSelectorService
    • utility service that can be used to build a UI to prompt the user to select an identity provider

When to use this library?

Depending on your use case you might not need this library at all. You likely do NOT need this library if your requirements are simple:

  • Your angular app is ONLY served up to authenticated users
  • It's not a problem that authentication does not work for deep linking (see issue 502)
  • The same authorization rules apply to all client-side routes
  • You don't need to inform your functions app when a user has signed in / out

If this is your app, then have a look at angular-swa-auth-nolib: a sample app that does not use this library to implement authentication

For all other use cases, this library will likely add value.

Usage

1. Install library

npm install @christianacca/angular-swa-auth

2. Configure and use library

  1. Import library in app module:

    import { NgModule } from '@angular/core';
    import { BrowserModule } from '@angular/platform-browser';
    import { SwaAuthModule } from '@christianacca/angular-swa-auth';
       
    import { AppComponent } from './app.component';
       
    @NgModule({
      declarations: [AppComponent],
      imports: [
        BrowserModule,
        SwaAuthModule.forRoot({
          // overrides to the default configuration here
        })
      ],
      bootstrap: [AppComponent]
    })
    export class AppModule {}
  2. Implement login/logout/purge

    The following is guidance only. For an alternative, where the user is prompted with a modal to select the identity provider to sign in with see IdentityProviderInteractiveSelectorService

    import { Component } from '@angular/core';
    import { AuthService, ClientPrincipal } from '@christianacca/angular-swa-auth';
    import { Observable } from 'rxjs';
       
    @Component({
      selector: 'app-auth',
      template: `
        <nav class="menu auth">
          <p class="menu-label">Auth</p>
          <div class="menu-list auth">
            <ng-container *ngIf="userInfo$ | async as user; else loginTpl">
              <a (click)="logout()">Logout</a>
              <a (click)="purge()">Forget me</a>
            </ng-container>
            <ng-template #loginTpl>
              <a *ngFor="let provider of providers" (click)="login(provider.id)">{{ provider.name }}</a>
            </ng-template>
          </div>
        </nav>
      `
    })
    export class AuthComponent {
      userInfo$: Observable<ClientPrincipal | null>;
      providers = this.authService.identityProviders;
    
      constructor(private authService: AuthService) {
        this.userInfo$ = this.authService.currentUser$;
      }
    
      login(identityProvider: string) {
        this.authService.login({ identityProvider });
      }
    
      logout() {
        this.authService.logout();
      }
    
      purge() {
        this.authService.purge();
      }
    }
  3. Optionally add AuthGuard to your route(s)

    If your app can only be accessed by authenticated users then add the guard to the top level route. EG:

    import { AuthGuard } from '@christianacca/angular-swa-auth';
       
    const routes: Route[] = [
      {
        path: '',
        canActivate: [AuthGuard],
        children: [
          {
            path: 'home',
            component: ShellComponent,
            children: [
              // routes to your "content" pages in your app
            ]
          },
          { path: '', pathMatch: 'full', redirectTo: '/home' }
        ]
      }
    ];
  4. Optionally add SwaRoleGuard to your route(s)

    import { AuthGuard } from '@christianacca/angular-swa-auth';
       
    const routes: Route[] = [
      {
        path: 'product-admin',
        data: {
          allowedRoles: 'admin' // other ex: ['admin', 'owner']  ['admin', ['product-reader', 'owner']]
        },
        canActivate: [SwaRoleGuard],
        component: AdminComponent
      },
      {
        path: 'user-admin',
        data: {
          allowedRoles: 'owner'
        },
        canLoad: [SwaRoleGuard],
        loadChildren: () => import('@christianacca/demo-app/user-admin').then(m => m.UserAdminModule)
      }
    ];
  5. Optionally send authentication session events to your function app api

      imports: [
        BrowserModule,
        SwaAuthModule.forRoot({
          sendSessionEventsToApi: true,
          sessionEventsApiUrl: '/api/authevents' // this is the default if not supplied
        })
      ]

    IMPORTANT: you will need to add a function to your functions app api that receives via a POST an instance of AuthEventPayload

Next steps

Running your app locally

  1. Install the Azure Static Web app emulator

    npm i @azure/static-web-apps-cli -D
  2. Add npm script to run your angular app

    In package.json add the following to the scripts block:

    {
      "scripts": {
        "start:swa": "swa start http://localhost:4200 --run \"npm start\""
      }
    }
  3. Serve your app:

    npm run start:swa

    You can now browse to your app at: http:localhost:4280

Deploying your app to Azure Static Web Apps service

Follow the official guidance here: https://docs.microsoft.com/en-us/azure/static-web-apps/get-started-portal?tabs=angular

More resources