├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .remarkrc ├── .snyk ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── book.json ├── bower.json ├── config.js ├── dist ├── amd │ ├── aurelia-authentication.js │ ├── authFilterValueConverter.js │ ├── authenticatedFilterValueConverter.js │ ├── authenticatedValueConverter.js │ └── index.js ├── aurelia-authentication.d.ts ├── aurelia-authentication.js ├── authFilterValueConverter.js ├── authenticatedFilterValueConverter.js ├── authenticatedValueConverter.js ├── commonjs │ ├── aurelia-authentication.js │ ├── authFilterValueConverter.js │ ├── authenticatedFilterValueConverter.js │ ├── authenticatedValueConverter.js │ └── index.js ├── es2015 │ ├── aurelia-authentication.js │ ├── authFilterValueConverter.js │ ├── authenticatedFilterValueConverter.js │ ├── authenticatedValueConverter.js │ └── index.js ├── index.d.ts ├── native-modules │ ├── aurelia-authentication.js │ ├── authFilterValueConverter.js │ ├── authenticatedFilterValueConverter.js │ ├── authenticatedValueConverter.js │ └── index.js └── system │ ├── aurelia-authentication.js │ ├── authFilterValueConverter.js │ ├── authenticatedFilterValueConverter.js │ ├── authenticatedValueConverter.js │ └── index.js ├── doc ├── CHANGELOG.md ├── Quick start.md ├── README.md ├── SUMMARY.md ├── api.json ├── api_authService.md ├── api_fetchConfig.md ├── auth0.md ├── baseConfig.md ├── configuration.md ├── installation.md ├── license.md ├── oidc.md ├── pictures │ ├── TokenViaDevelopmentTools.png │ └── authHeader.png ├── refresh_token.md └── usage.md ├── gulpfile.js ├── package.json ├── spoonx.js ├── src ├── aurelia-authentication.js ├── authFilterValueConverter.js ├── authLock.js ├── authService.js ├── authenticateStep.js ├── authenticatedFilterValueConverter.js ├── authenticatedValueConverter.js ├── authentication.js ├── authorizeStep.js ├── baseConfig.js ├── fetchClientConfig.js ├── logger.js ├── oAuth1.js ├── oAuth2.js ├── popup.js └── storage.js ├── test ├── aurelia-authentication.spec.js ├── authService.spec.js ├── authenticateStep.spec.js ├── authentication.spec.js ├── baseConfig.spec.js ├── fetchClientConfig.spec.js ├── oAuth1.spec.js ├── oAuth2.spec.js ├── popup.spec.js ├── setup.js └── storage.spec.js └── typings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | jspm_packages 2 | bower_components 3 | .idea -------------------------------------------------------------------------------- /.remarkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/.remarkrc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/.snyk -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/README.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/book.json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/bower.json -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/config.js -------------------------------------------------------------------------------- /dist/amd/aurelia-authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/amd/aurelia-authentication.js -------------------------------------------------------------------------------- /dist/amd/authFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/amd/authFilterValueConverter.js -------------------------------------------------------------------------------- /dist/amd/authenticatedFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/amd/authenticatedFilterValueConverter.js -------------------------------------------------------------------------------- /dist/amd/authenticatedValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/amd/authenticatedValueConverter.js -------------------------------------------------------------------------------- /dist/amd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/amd/index.js -------------------------------------------------------------------------------- /dist/aurelia-authentication.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/aurelia-authentication.d.ts -------------------------------------------------------------------------------- /dist/aurelia-authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/aurelia-authentication.js -------------------------------------------------------------------------------- /dist/authFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/authFilterValueConverter.js -------------------------------------------------------------------------------- /dist/authenticatedFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/authenticatedFilterValueConverter.js -------------------------------------------------------------------------------- /dist/authenticatedValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/authenticatedValueConverter.js -------------------------------------------------------------------------------- /dist/commonjs/aurelia-authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/commonjs/aurelia-authentication.js -------------------------------------------------------------------------------- /dist/commonjs/authFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/commonjs/authFilterValueConverter.js -------------------------------------------------------------------------------- /dist/commonjs/authenticatedFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/commonjs/authenticatedFilterValueConverter.js -------------------------------------------------------------------------------- /dist/commonjs/authenticatedValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/commonjs/authenticatedValueConverter.js -------------------------------------------------------------------------------- /dist/commonjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/commonjs/index.js -------------------------------------------------------------------------------- /dist/es2015/aurelia-authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/es2015/aurelia-authentication.js -------------------------------------------------------------------------------- /dist/es2015/authFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/es2015/authFilterValueConverter.js -------------------------------------------------------------------------------- /dist/es2015/authenticatedFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/es2015/authenticatedFilterValueConverter.js -------------------------------------------------------------------------------- /dist/es2015/authenticatedValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/es2015/authenticatedValueConverter.js -------------------------------------------------------------------------------- /dist/es2015/index.js: -------------------------------------------------------------------------------- 1 | export * from './aurelia-authentication'; -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/native-modules/aurelia-authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/native-modules/aurelia-authentication.js -------------------------------------------------------------------------------- /dist/native-modules/authFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/native-modules/authFilterValueConverter.js -------------------------------------------------------------------------------- /dist/native-modules/authenticatedFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/native-modules/authenticatedFilterValueConverter.js -------------------------------------------------------------------------------- /dist/native-modules/authenticatedValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/native-modules/authenticatedValueConverter.js -------------------------------------------------------------------------------- /dist/native-modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/native-modules/index.js -------------------------------------------------------------------------------- /dist/system/aurelia-authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/system/aurelia-authentication.js -------------------------------------------------------------------------------- /dist/system/authFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/system/authFilterValueConverter.js -------------------------------------------------------------------------------- /dist/system/authenticatedFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/system/authenticatedFilterValueConverter.js -------------------------------------------------------------------------------- /dist/system/authenticatedValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/system/authenticatedValueConverter.js -------------------------------------------------------------------------------- /dist/system/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/dist/system/index.js -------------------------------------------------------------------------------- /doc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/CHANGELOG.md -------------------------------------------------------------------------------- /doc/Quick start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/Quick start.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/SUMMARY.md -------------------------------------------------------------------------------- /doc/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/api.json -------------------------------------------------------------------------------- /doc/api_authService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/api_authService.md -------------------------------------------------------------------------------- /doc/api_fetchConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/api_fetchConfig.md -------------------------------------------------------------------------------- /doc/auth0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/auth0.md -------------------------------------------------------------------------------- /doc/baseConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/baseConfig.md -------------------------------------------------------------------------------- /doc/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/configuration.md -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/license.md -------------------------------------------------------------------------------- /doc/oidc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/oidc.md -------------------------------------------------------------------------------- /doc/pictures/TokenViaDevelopmentTools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/pictures/TokenViaDevelopmentTools.png -------------------------------------------------------------------------------- /doc/pictures/authHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/pictures/authHeader.png -------------------------------------------------------------------------------- /doc/refresh_token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/refresh_token.md -------------------------------------------------------------------------------- /doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/doc/usage.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/package.json -------------------------------------------------------------------------------- /spoonx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/spoonx.js -------------------------------------------------------------------------------- /src/aurelia-authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/aurelia-authentication.js -------------------------------------------------------------------------------- /src/authFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/authFilterValueConverter.js -------------------------------------------------------------------------------- /src/authLock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/authLock.js -------------------------------------------------------------------------------- /src/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/authService.js -------------------------------------------------------------------------------- /src/authenticateStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/authenticateStep.js -------------------------------------------------------------------------------- /src/authenticatedFilterValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/authenticatedFilterValueConverter.js -------------------------------------------------------------------------------- /src/authenticatedValueConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/authenticatedValueConverter.js -------------------------------------------------------------------------------- /src/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/authentication.js -------------------------------------------------------------------------------- /src/authorizeStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/authorizeStep.js -------------------------------------------------------------------------------- /src/baseConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/baseConfig.js -------------------------------------------------------------------------------- /src/fetchClientConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/fetchClientConfig.js -------------------------------------------------------------------------------- /src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/logger.js -------------------------------------------------------------------------------- /src/oAuth1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/oAuth1.js -------------------------------------------------------------------------------- /src/oAuth2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/oAuth2.js -------------------------------------------------------------------------------- /src/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/popup.js -------------------------------------------------------------------------------- /src/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/src/storage.js -------------------------------------------------------------------------------- /test/aurelia-authentication.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/aurelia-authentication.spec.js -------------------------------------------------------------------------------- /test/authService.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/authService.spec.js -------------------------------------------------------------------------------- /test/authenticateStep.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/authenticateStep.spec.js -------------------------------------------------------------------------------- /test/authentication.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/authentication.spec.js -------------------------------------------------------------------------------- /test/baseConfig.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/baseConfig.spec.js -------------------------------------------------------------------------------- /test/fetchClientConfig.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/fetchClientConfig.spec.js -------------------------------------------------------------------------------- /test/oAuth1.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/oAuth1.spec.js -------------------------------------------------------------------------------- /test/oAuth2.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/oAuth2.spec.js -------------------------------------------------------------------------------- /test/popup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/popup.spec.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/storage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/test/storage.spec.js -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpoonX/aurelia-authentication/HEAD/typings.json --------------------------------------------------------------------------------