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

openapi-security-retriever

v1.1.0

Published

Typescript package to retrieve security mechanism information from an operation in compliance with an OpenApi specification. For 3.1.x and 3.0.x OpenAPI versions.

Downloads

6

Readme

OpenAPI Security Retriever

Typescript package to retrieve security mechanism informations from an operation in compliance with an OpenApi specification. For 3.1.x and 3.0.x OpenAPI versions.

Installation

npm install openapi-security-retriever 

or

yarn add openapi-security-retriever

Usage

import securityRetriever from 'openapi-security-retriever'
import schemaRetriever from 'openapi-schema-retriever'

let schema

const main = async () => {

    /* First, by schemaRetriever, get, check and parse the openapi specification that can be an object or an file path string.
     * If the specification input is a file path string, a second argument standing for the current working directory is mandatory.
     * We recommend to use '__dirname' as second argument.
     * The file must be either a json, a yaml or a yml file. 
     * specBuilder returns an object in accordance with OpenAPI scpecification.
    */
    const schema = await schemaRetriever('./openapi.yaml', __dirname)

    /*
     * securityRetriever takes 3 mandatory arguments: an OpenAPI specification object, a string as a schema path, and a string as a http request method.
    */
    const security = securityRetriever(schema, '/products', 'get')

    console.log(security) // => { secured: true, optional: false, securities: [ JwtOauth: { type: 'http', scheme: 'bearer', scopes: ['admin'] } ] } | null 
                          // 'null' if operation is not found in the OpenAPI specification
}

main()

Output structure

The output of the module, once called, is an object whose the structure is:

{
    secured: boolean, // indicates whether the operation requires authentication
    optional: boolean, // indicates whether authentication is optional or mandatory
    securities: [Object] // gives list of security mechanisms
}

The above-mentioned Object is structured as follows:

{
    {name}: {
                type: 'apiKey',
                name: string,
                in: string,
                scopes: [string]
            } | {
                type: 'http',
                scheme: string,
                bearerFormat?: string,
                scopes: [string]
            } | {
                type: 'oauth2',
                flows: {
                        implicit: {
                                    authorizationUrl: string,
                                    refreshUrl?: string,
                                    scopes: [string]
                                  },
                        password: {
                                    tokenUrl: string,
                                    refreshUrl?: string,
                                    scopes: [string]
                                  },
                        clientCredentials: {
                                    tokenUrl: string,
                                    refreshUrl?: string,
                                    scopes: [string]
                                  },
                        authorizationCode: {
                                    authorizationUrl: string,
                                    tokenUrl: string,
                                    refreshUrl?: string,
                                    scopes: [string]
                                  }
                       },
                scopes: [string]
            } | {
                type: 'openIdConnect',
                openIdConnectUrl: securityScheme.openIdConnectUrl,
                scopes: [string]
            }
}

License

This package is licensed under the MIT License.

Contact

If you have any questions or issues, please contact the package maintainer at [email protected].