2.5.2 • Published 6 years ago

ninjagoat-auth v2.5.2

Weekly downloads
145
License
-
Repository
-
Last release
6 years ago

Ninjagoat-auth

This module can be used to add an auto redirect to an SSO provider (auth0 it's currently implemented, but you can change that). Some other features are:

  • Selective enable authentication on viewmodels
  • Authenticated http client registered automatically
  • Single Sign On
  • Single Sing Out
  • Tokens renewal
  • User profile retrieve
  • OIDC compliant authorization flow

Installation

$ npm install ninjagoat-auth

Add this code to the boostrapper.ts file:

import {AuthModule} from "ninjagoat-auth"

application.register(new AuthModule());

Usage

Add an authorization config to one of your modules to configure auth0 credentials and redirections.

import {IAuthConfig} from "ninjagoat-auth";

container.bind<IAuthConfig>("IAuthConfig").toConstantValue({
    clientId:"your client id",
    clientNamespace:"your namespace",
    loginCallbackUrl:"landing page after log in",
    logoutCallbackUrl:"landing page after log out",
    renewCallbackUrl: "page loaded in a hidden iframe to perform silent authentication",
    audience:"your api audience",
    scope: "your scope (default openid)"
});

To authenticate a given viewmodel just add an Authorized decorator. For example:

import {Authorized} from "ninjagoat-auth"

@Authorized()
export class AuthorizedViewModel extends ObservableViewModel<void> {
    onData(data: void) {

    }
}

And when the user hits this page all the authentication flow is done automatically.

To activate the periodic tokens renewal and single sign on session check, inject in your MaserViewModel the ISessionChecker and start it specifying an interval in milliseconds. For example:

import {ISessionChecker} from "ninjagoat-auth";

@ViewModel("Root")
export class MasterViewModel extends ObservableViewModel<void> {

    constructor(@inject("ISessionChecker") private sessionChecker: ISessionChecker) {
        this.authChecker.check(10000);
    }


    onData(data: void) {

    }
}

A default error handler is provided. It logs out the current user, if there are errors during the auth renewal stage and force the user to re-login, if there are errors during the login stage. To customize authentication errors handling, you can implement IAuthErrorHandler. For example:

import {IAuthErrorHandler} from "ninjagoat-auth";

@injectable()
export class CustomAuthErrorHandler implements IAuthErrorHandler {

    handleError(stage: AuthStage, error: any): Promise<void> {
        //here your custom code
    }
}

Authentication flow

Have a look at the authentication flow spec to get some insights.

License

Copyright 2016 Tierra SpA

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

2.5.2

6 years ago

4.0.0

6 years ago

3.0.3

6 years ago

3.0.2

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.7.0

6 years ago

1.1.0

6 years ago

2.6.0

7 years ago

2.5.1

7 years ago

2.5.0

7 years ago

2.4.1

7 years ago

2.4.0

7 years ago

2.3.0

7 years ago

2.2.1

7 years ago

2.2.0

7 years ago

2.1.0

7 years ago

2.0.0

7 years ago

1.0.0

7 years ago

0.10.0

7 years ago

0.9.0

7 years ago

0.8.1

7 years ago

0.8.0

7 years ago

0.7.5

8 years ago

0.7.4

8 years ago

0.7.3

8 years ago

0.7.2

8 years ago

0.7.1

8 years ago

0.7.0

8 years ago

0.6.1

8 years ago

0.6.0

8 years ago

0.5.0

8 years ago

0.4.0

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago