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

route-auth

v2.0.1

Published

Easy to use route authorization provider for Angular

Downloads

5

Readme

#Route Auth

Easy to use route authorization provider for Angular

Usage

npm install route-auth

Then use browserify or another packaging tool and require( "route-auth" )

When creating your main angular module, include vokal.RouteAuth in the list of included modules, e.g.

angular.module( "myApp", [ "vokal.RouteAuth" ] );

Add a resolve to a route like so:

$routeProvider.when( "/edit-account", {
  templateUrl: partialPath( "edit-account.html" ),
  resolve: {
    auth: [ "RouteAuth", function ( RouteAuth )
	{
 	  return RouteAuth.auth( [ "user" ] );
	} ]
  }
} );

The array of strings passed to RouteAuth.auth are the permissions that are allowable for the route

Somewhere else in your code, such as after authentication, you need to tell RouteAuth what roles the current user has, if any. This looks like RouteAuth.storeRoles( [ "role1", "role2", "etc" ] ). By default roles are stored with local storage. To clear the store call RouteAuth.storeRoles( [] ).

Security: Because roles are stored in plain text in local or session storage where they can be directly edited, this route authorization does not replace in any way authorization on the server side.

Interface

The following methods can be called on the RouteAuth service once injected into your Angular code.

Methods

loadRoles()

Load the user's roles from localStorage, or set them as an empty list if there are no roles in localStorage.


storeRoles( newRoles )

Overwrite the user's current roles with newRoles

Arguments
  1. newRoles | Array | the new user roles to be set
Example
RouteAuth.storeRoles( [ 'user', 'premiumUser', 'purpleDiamondUltraEliteClass' ] );

addRole( newRole )

Add newRole to the existing set of roles

Arguments
  1. newRole | String | the new user role to add
Example
RouteAuth.addRole( 'admin' );

hasRoles( checkRoles )

Check to see if the user has any of the roles in checkRoles

Arguments
  1. checkRoles | Array | the list of roles to check for
Returns

Bool | true if the user has any of the roles in checkRoles, otherwise false

Example
function showSettingsDialog()
{
	if( RouteAuth.hasRoles( [ "admin", "superuser" ] ) )
	{
		showAdminSettings();
	}
	else
	{
		showNormalSettings();
	}
}

hasNoRoles()

Check to see if the user has no roles.

Returns

Bool | true if user has no set roles, otherwise false

Example
function adjustAdLevel()
{
	if( RouteAuth.hasNoRoles() )
	{
		showAllTheAds();
	}
	else
	{
		justSomeAds();
	}
}

auth( allowedRoles, options )

Returns a promise, which is resolved if the user has one of the allowedRoles. Otherwise, the promise is rejected.

Arguments
  1. allowedRoles | Array | list of acceptable roles
  2. options | Object | optional parameters for this function
  • redirectPath | String | path to redirect to should the user not have one of the allowed roles
Returns

Angular Promise | will resolve if user has one of the roles in allowedRoles. Otherwise, will be rejected.

Example
$routeProvider.when( "/edit-account", { templateUrl: partialPath( "edit-account.html" ),
	resolve: {
		auth: [ "RouteAuth", function ( RouteAuth )
		{
			return RouteAuth.auth( [ "user" ], { "redirectPath": "/login" } );
		} ]
	}
} );

swapStorage( newMedium )

Migrate roles to a new storage medium. For example, if a user chooses not to have their session persisted after login you might use swapStorage( window.sessionStorage ) before or even after the login completes. To use a custom storage location such as cookies, the interface of newMedium should expose setItem(), getItem(), and removeItem() methods that work the same was as in the Web Storage API.


Compatability: IE9+

License: MIT