Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@advanced-rest-client/oauth-authorization

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@advanced-rest-client/oauth-authorization

A set of elements that perform oauth authorization

  • 3.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
455
increased by10.71%
Maintainers
1
Weekly downloads
 
Created
Source

Published on NPM

Build Status

Published on webcomponents.org

OAuth authorization

Provides components to authorize the user using OAuth 1 and OAuth 2 standards.

OAuth 2

There are 4 basic token requests flows:

  • Authorization Code for apps running on a web server (authorization_code type)
  • Implicit for browser-based or mobile apps (implicit type)
  • Password for logging in with a username and password (password type)
  • Client credentials for application access (client_credentials type)

Additionally you can use custom flow type.

Main function is the authorize() function that can be also used via event system. This function accepts different set of parameters depending on request type.

Example

<outh2-authorization></outh2-authorization>
const settings = {
  type: 'implicit',
  clientId: 'CLIENT ID',
  redirectUri: 'https://example.com/auth-popup.html',
  authorizationUri: 'https://auth.example.com/token'
  scopes: ['email'],
  state: 'Optional string'
};
const factory = document.querySelector('outh2-authorization');
factory.authorize(settings)

// or event based
const event = new CustomEvent('oauth2-token-requested', { 'detail': settings, bubbles: true });
document.dispatchEvent(event);

Listen for token response:

// oauth2-token-response
factory.ontokenresponse = (e) => {
  console.log(e.detial);
};
// oauth2-error event
factory.ontokenerror = (e) => {
  console.log(e.detial);
};

An element or app that requesting the token should observe the oauth2-token-response and oauth2-error events to get back the response.

Popup in authorization flow

This element contain a oauth-popup.html that can be used to exchange token / code data with hosting page. Other page can be used as well. But in must window.postMessage back to the window.opener. The structure of the message if the parsed query or has string to the map of parameters. Furthermore it must camel case the parameters. Example script is source code of the oauth-popup.html page. Popup should be served over the SSL.

The state parameter and security

This element is intened to be used in debug applications where confidentialy is already compromised because users may be asked to provide client secret parameter (depending on the flow). It should not be used in client applications that don't serve debugging purposes. Client secret should never be used on the client side.

To have at least minimum of protection (in already compromised environment) this library generates a state parameter as a series of alphanumeric characters and append them to the request. It is expected to return the same string in the response (as defined in rfc6749). Though this parameter is optional, it will reject the response if the state parameter is not the same as the one generated before the request.

The state parameter is generated automatically by the element if non provided in settings. It is a good idea to use this property to check if the event response (either token or error) are coming from your request for token. The app can support different OAuth clients so you can check later with the token response if this is a response for the same client.

Non-interactive authorization

For implicit and code token requests you can set interactive property of the settings object to false to request the token in the background without displaying any UI related to authorization to the user. It can be used to request an access token after the user authorized the application. Server should return the token which will be passed back to the application.

When using interactive = false mode then the response event is always oauth2-token-response, even when there was authorization error or user never authorized the application. In this case the response object will not carry accessToken property and always have interactive set to false and code to determine cause of unsuccessful request.

Example

const settings = {
  interactive: false,
  type: 'implicit',
  clientId: 'CLIENT ID',
  redirectUri: 'https://example.com/auth-popup.html',
  authorizationUri: 'https://auth.example.com/token'
  state: '1234'
};
const event = new CustomEvent('oauth2-token-requested', { 'detail': settings, bubbles: true });
document.dispatchEvent(event);

document.body.addEventListener('oauth2-token-response', (e) => {
  let info = e.detail;
  if (info.state !== '1234') {
    return;
  }
  if (info.interactive === false && info.code) {
    // unsuccessful request
    return;
  }
  let token = info.accessToken;
});

OAuth 1

An element to perform OAuth1 authorization and to sign auth requests.

Note that the OAuth1 authorization wasn't designed for browser. Most existing OAuth1 implementation disallow browsers to perform the authorization by not allowing POST requests to authorization server. Therefore receiving token may not be possible without using browser extensions to alter HTTP request to enable CORS. If the server disallow obtaining authorization token and secret from clients then your application has to listen for oauth1-token-requested custom event and perform authorization on the server side.

When auth token and secret is available and the user is to perform a HTTP request, the request panel sends before-request custom event. This element handles the event and applies authorization header with generated signature to the request.

OAuth 1 configuration object

Both authorization or request signing requires detailed configuration object. This is handled by the request panel. It sets OAuth1 configuration in the request.auth property.

PropertyTypeDescription
signatureMethodStringOne of PLAINTEXT, HMAC-SHA1, RSA-SHA1
requestTokenUriStringToken request URI. Optional for before request. Required for authorization
accessTokenUriStringAccess token request URI. Optional for before request. Required for authorization
authorizationUriStringUser dialog URL.
consumerKeyStringConsumer key to be used to generate the signature. Optional for before request.
consumerSecretStringConsumer secret to be used to generate the signature. Optional for before request.
redirectUriStringRedirect URI for the authorization. Optional for before request.
authParamsLocationStringLocation of the authorization parameters. Default to authorization header
authTokenMethodStringToken request HTTP method. Default to POST. Optional for before request.
versionStringOauth1 protocol version. Default to 1.0
nonceSizeNumberSize of the nonce word to generate. Default to 32. Unused if nonce is set.
nonceStringNonce to be used to generate signature.
timestampNumberRequest timestamp. If not set it sets current timestamp
customHeadersObjectMap of custom headers to set with authorization request
typeStringMust be set to oauth1 or during before-request this object will be ignored.
tokenStringRequired for signing requests. Received OAuth token
tokenSecretStringRequired for signing requests. Received OAuth token secret

Error codes

  • params-error Oauth1 parameters are invalid
  • oauth1-error OAuth popup is blocked.
  • token-request-error HTTP request to the authorization server failed
  • no-response No response recorded.

Acknowledgements

  • This element uses jsrsasign library distributed under MIT licence.
  • This element uses crypto-js library distributed under BSD license.

Usage

Installation

npm install --save @advanced-rest-client/oauth-authorization

In an html file

<html>
  <head>
    <script type="module">
      import '@advanced-rest-client/advanced-rest-client/oauth-authorization.js';
    </script>
  </head>
  <body>
    <oauth-authorization></oauth-authorization>
  </body>
</html>

Development

git clone https://github.com/advanced-rest-client/oauth-authorization
cd oauth-authorization
npm install

Running the tests

npm test

Required dependencies

The CryptoJS and RSAKey libraries are not included into the element sources. If your project do not use this libraries already include it into your project.

npm i cryptojslib jsrsasign
<script src="../../../cryptojslib/components/core.js"></script>
<script src="../../../cryptojslib/rollups/sha1.js"></script>
<script src="../../../cryptojslib/components/enc-base64-min.js"></script>
<script src="../../../cryptojslib/rollups/md5.js"></script>
<script src="../../../cryptojslib/rollups/hmac-sha1.js"></script>
<script src="../../../jsrsasign/lib/jsrsasign-rsa-min.js"></script>

Also OAuth1 element uses URL class with searchParams properties. If targeting old browsers include polyfill for this too.

Keywords

FAQs

Package last updated on 28 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc