├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── config └── karma.js ├── index.js ├── lcov.info ├── package.json ├── release ├── angular-hitmands-auth.js ├── angular-hitmands-auth.js.map ├── angular-hitmands-auth.min.js └── hitmands-auth.config.js ├── server.js ├── specs ├── directives │ ├── auth-classes.spec.js │ ├── auth-login.spec.js │ └── auth-logout.spec.js ├── modules │ ├── $stateChangeStart.spec.js │ └── onCurrentUserUpdate.spec.js ├── provider-methods │ ├── disableAutoRoutingProtection.spec.js │ ├── parseHttpAuthData.spec.js │ ├── setLoggedUser.spec.js │ ├── setRedirectPath.spec.js │ ├── tokenizeHttp.spec.js │ ├── useBasicAuthentication.spec.js │ └── useRoutes.spec.js └── service-methods │ ├── authorize.spec.js │ ├── check.spec.js │ ├── fetch.spec.js │ ├── getAuthenticationToken.spec.js │ ├── getCurrentUser.spec.js │ ├── isUserLoggedIn.spec.js │ ├── login.spec.js │ ├── logout.spec.js │ ├── setCurrentUser.spec.js │ └── unsetCurrentUser.spec.js └── src ├── auth-directives.js ├── auth-helpers.js ├── auth-module.js ├── auth-provider.js └── sample-configuration.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "./src/vendor" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/bower.json -------------------------------------------------------------------------------- /config/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/config/karma.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/index.js -------------------------------------------------------------------------------- /lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/lcov.info -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/package.json -------------------------------------------------------------------------------- /release/angular-hitmands-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/release/angular-hitmands-auth.js -------------------------------------------------------------------------------- /release/angular-hitmands-auth.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/release/angular-hitmands-auth.js.map -------------------------------------------------------------------------------- /release/angular-hitmands-auth.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/release/angular-hitmands-auth.min.js -------------------------------------------------------------------------------- /release/hitmands-auth.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/release/hitmands-auth.config.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/server.js -------------------------------------------------------------------------------- /specs/directives/auth-classes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/directives/auth-classes.spec.js -------------------------------------------------------------------------------- /specs/directives/auth-login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/directives/auth-login.spec.js -------------------------------------------------------------------------------- /specs/directives/auth-logout.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/directives/auth-logout.spec.js -------------------------------------------------------------------------------- /specs/modules/$stateChangeStart.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/modules/$stateChangeStart.spec.js -------------------------------------------------------------------------------- /specs/modules/onCurrentUserUpdate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/modules/onCurrentUserUpdate.spec.js -------------------------------------------------------------------------------- /specs/provider-methods/disableAutoRoutingProtection.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/provider-methods/disableAutoRoutingProtection.spec.js -------------------------------------------------------------------------------- /specs/provider-methods/parseHttpAuthData.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/provider-methods/parseHttpAuthData.spec.js -------------------------------------------------------------------------------- /specs/provider-methods/setLoggedUser.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/provider-methods/setLoggedUser.spec.js -------------------------------------------------------------------------------- /specs/provider-methods/setRedirectPath.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/provider-methods/setRedirectPath.spec.js -------------------------------------------------------------------------------- /specs/provider-methods/tokenizeHttp.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/provider-methods/tokenizeHttp.spec.js -------------------------------------------------------------------------------- /specs/provider-methods/useBasicAuthentication.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/provider-methods/useBasicAuthentication.spec.js -------------------------------------------------------------------------------- /specs/provider-methods/useRoutes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/provider-methods/useRoutes.spec.js -------------------------------------------------------------------------------- /specs/service-methods/authorize.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/authorize.spec.js -------------------------------------------------------------------------------- /specs/service-methods/check.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/check.spec.js -------------------------------------------------------------------------------- /specs/service-methods/fetch.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/fetch.spec.js -------------------------------------------------------------------------------- /specs/service-methods/getAuthenticationToken.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/getAuthenticationToken.spec.js -------------------------------------------------------------------------------- /specs/service-methods/getCurrentUser.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/getCurrentUser.spec.js -------------------------------------------------------------------------------- /specs/service-methods/isUserLoggedIn.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/isUserLoggedIn.spec.js -------------------------------------------------------------------------------- /specs/service-methods/login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/login.spec.js -------------------------------------------------------------------------------- /specs/service-methods/logout.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/logout.spec.js -------------------------------------------------------------------------------- /specs/service-methods/setCurrentUser.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/setCurrentUser.spec.js -------------------------------------------------------------------------------- /specs/service-methods/unsetCurrentUser.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/specs/service-methods/unsetCurrentUser.spec.js -------------------------------------------------------------------------------- /src/auth-directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/src/auth-directives.js -------------------------------------------------------------------------------- /src/auth-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/src/auth-helpers.js -------------------------------------------------------------------------------- /src/auth-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/src/auth-module.js -------------------------------------------------------------------------------- /src/auth-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/src/auth-provider.js -------------------------------------------------------------------------------- /src/sample-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitmands/angular-hitmands-auth/HEAD/src/sample-configuration.js --------------------------------------------------------------------------------