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

@mimik/oauth-helper-temp

v2.2.10

Published

temp Oauth helper for h2 microservices

Downloads

28

Readme

oauth-helper-temp

Example

const oauthHelper = require('@mimik/oauth-helper-temp');

The following environment variables are used:

| Env variable name | Description | Default | Comments |
| ----------------- | ----------- | ------- | -------- |
| OAUTH_HELPER_TEMP_ACCOUNT | swagger account to use for accessing API on swaggerhub
| OAUTH_HELPER_TEMP_API_KEY | API key for the private API on swaggerhub

The config should contain the customerCode is needed. If the customerCode is not available in the config, a default uuid will be used.
An environment variable OAUTH_HELPER_TEMP_ACCOUNT can be set to change the swagger account to be used. The default is `mimik`.
Another environment variable OAUTH_HELPER_TEMP_API_KEY can be set to access private API on the account to be used.

oauth-helper-temp~rpAuth(type, options) ⇒ Promise

Make an authorized request.

Kind: inner method of oauth-helper-temp
Returns: Promise - .
Category: async
Throws:

  • Promise Will throw the same error than rpauth in oauth-helper.

Fulfil: object - Response of the request which is follow rpauth in oauth-helper.

| Param | Type | Description | | --- | --- | --- | | type | string | Type of micro service to request. | | options | object | Options for the request. Similar to rpauth in oauth-helper options. |

oauth-helper-temp~createUserToken() ⇒ Promise

Create a user token.

Kind: inner method of oauth-helper-temp
Returns: Promise - .
Category: async
Throws:

  • Promise Will throw the same error if the token cannot be created.

Params: string type - Type of micro-service to request.
Params: string userId - User id to assign to the token.
Params: string appId - Application id to associated with the request.
Params: UUID<string> correlationId - CorrelationId associated with the creation of the token.
Fulfil: JWT<object> The user token.

oauth-helper-temp~createUserTokenAll() ⇒ Promise

Create a user token with many services.

Kind: inner method of oauth-helper-temp
Returns: Promise - .
Category: async
Throws:

  • Promise Will throw the same error if the token cannot be created.

Params: string types - Array of type of micro-service to request.
Params: string userId - User id to assign to the token.
Params: string appId - Application id to associated with the request.
Params: UUID<string> correlationId - CorrelationId associated with the creation of the token.
Fulfil: JWT<object> The user token.

oauth-helper-temp~createUserTokenWithOnBehalf() ⇒ Promise

Create an onBehalfId token.

Kind: inner method of oauth-helper-temp
Returns: Promise - .
Category: async
Throws:

  • Promise Will throw the same error if the token cannot be created.

Params: string type - Type of micro-service to request.
Params: string userId - User id to assign to the token.
Params: string appId - Application id to associated with the request.
Params: string onBehalfId - User id to assign to the token to act on behalf.
Params: UUID<string> correlationId - CorrelationId associated with the creation of the token.
Fulfil: JWT<object> The onBehalf token.

oauth-helper-temp~createUserTokenAllWithOnBehalf() ⇒ Promise

Create an onBehalfId token with many services.

Kind: inner method of oauth-helper-temp
Returns: Promise - .
Category: async
Throws:

  • Promise Will throw the same error if the token cannot be created.

Params: string types - Array of type of micro-service to request.
Params: string userId - User id to assign to the token.
Params: string appId - Application id to associated with the request.
Params: string onBehalfId - User id to assign to the token to act on behalf.
Params: UUID<string> correlationId - CorrelationId associated with the creation of the token.
Fulfil: JWT<object> The onBehalf token.

oauth-helper-temp~createAdminToken() ⇒ Promise

Create an admin token.

Kind: inner method of oauth-helper-temp
Returns: Promise - .
Category: async
Throws:

  • Promise Will throw the same error if the token cannot be created.

Params: string type - Type of micro-service to request.
Params: UUID<string> correlationId - CorrelationId associated with the creation of the token.
Params: UUID<string> customerCode - customer code to be added in the token. If not present, config.serverSettings.customerCode or uuid.v4() will be used.
Fulfil: JWT<object> The admin token.

oauth-helper-temp~createAdminToken() ⇒ Promise

Create a system token.

Kind: inner method of oauth-helper-temp
Returns: Promise - .
Category: async
Throws:

  • Promise Will throw the same error if the token cannot be created.

Params: string type - Type of micro-service to request.
Params: UUID<string> correlationId - CorrelationId associated with the creation of the token.
Params: UUID<string> customerCode - customer code to be added in the token. If not present, config.serverSettings.customerCode or uuid.v4() will be used.
Fulfil: JWT<object> The system token.

oauth-helper-temp~getAdminTokens() ⇒ Promise

Get admin tokens.

Kind: inner method of oauth-helper-temp
Returns: Promise - .
Category: async
Params: string mSTAdminToken - Token to access admin operation of mST.
Params: URL<string> mSTBaseUrl - BaseUrl to use to access mST endpoints.
Params: string customerName - Name of the customer for which the token will be provided.
Params: string environment - Environment used to define the admin tokens.
Params: array targets - Array of { type } to get the admin tokens.
Params: UUID<string> correlationId - CorrelationId associated with the creation of the tokens.
Fulfil: object An array of responses with tokens.

config is ignored for that function.

oauth-helper-temp~getSystemTokens() ⇒ Promise

Get system tokens.

Kind: inner method of oauth-helper-temp
Returns: Promise - .
Category: async
Params: string mSTAdminToken - Token to access admin operation of mST.
Params: URL<string> mSTBaseUrl - BaseUrl to use to access mST endpoints.
Params: string customerName - Name of the customer for which the token will be provided.
Params: object typePairs - Array of pair of { origType, destType } to get the system tokens.
Params: UUID<string> correlationId - CorrelationId associated with the creation of the tokens.
Fulfil: object An array of responses with tokens.

config is ignored for that function.