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

@vmw/mobile-flows-connector-commons

v1.4.9

Published

Commonly used functionalities by Mobile Flows connectors

Downloads

4

Readme

Mobile Flows connectors common libraries

Overview

The project is a suite of commonly used utility functions for anyone developing a Mobile Flows connector on Express Node.js. As a connector developer you can use the functions and considerably reduce the overall development time. In addition to that, it helps to maintain a similar pattern in the connector code and avoid making mistakes.

You can load this module wherever its required and use necessary functions.

const mfCommons = require('@vmw/mobile-flows-connector-commons')

For a detailed, language-neutral, specification for how to develop connectors, please see the Card Connectors Guide.

Installation

This module is available through the NPM registry.

$ npm install @vmw/mobile-flows-connector-commons

Functions available for development

validateAuth(mfPublicKeyUrl)

This validates Authorization JWT from Mobile Flows. Function takes public key URL of Mobile Flows server. Returns a function to be used as a middleware for all protected APIs.

If the validation fails, request is rejected as 401 with a message.

If the validation succeeded, it adds some local variables at res.locals.mfJwt.

res.locals.mfJwt.tenantId = 'Mobile Flows tenant id'
res.locals.mfJwt.username = 'Username'
res.locals.mfJwt.email = 'User email id'
res.locals.mfJwt.idmDomain = 'User IDM domain id'
res.locals.mfJwt.decoded = 'All decoded params of the JWT'  
res.locals.mfJwt.preHire = 'User pre-hire flag'

Example

app.use(['/api/*'], mfCommons.validateAuth('https://prod.hero.vmwservices.com/security/public-key'))

getConnectorBaseUrl(req)

It takes Express request object and returns the connector's base URL. In most cases its only used to generate URLs in the connector discovery, for Mobile Flows server to call into the connector.

The function identifies the original host requested by the caller using x-forwarded headers.

Example

const baseUrl = mfCommons.getConnectorBaseUrl(req)

mfRouting.addContextPath(req, res, next)

Use this function as a middleware for all object and action APIs. It reads Mobile Flows routing headers and resolves it to the correct value when the connector is hosted behind a path based proxy. This is necessary for most objects that produce actions and for actions that produce other actions. We recommend always adding this. Properties in res.locals will be updated based on the type of request.

For object requests - res.locals.mfRoutingPrefix

For action requests - res.locals.mfRoutingTemplate

Example

app.use(['/api/*'], mfCommons.mfRouting.addContextPath)

handleXRequestId(req, res, next)

Use this function as a middleware for all connector APIs to generate better logs and help in debugging a request. If the http call comes in with an x-request-id header, then this middleware will set it in res.locals.xRequestId to be put in logs and for the connector developer to send out in further http calls as needed. If there isn't an x-request-id header value, then this middleware will generate one for you.

The xRequestId in the logs allows the person debugging to correlate all the logs with the original http request.

Example

app.use('/*', mfCommons.handleXRequestId)

readBackendBaseUrl(req, res, next)

This function is deprecated since 1.1.0 and will be deleted in the version 2.0.0 Please switch to use readBackendHeaders

This function can be used as a middleware for all connector APIs. If Mobile Flows admin configures a backend base URL for the connector, then this function sets it in res.locals.baseUrl.

Adding the middleware allows you to read the base URL from res.locals.baseUrl, whenever you need to make an API call to backend.

Example

app.use('/*', mfCommons.readBackendBaseUrl)

readBackendHeaders(req, res, next)

This function can be used as a middleware for all connector APIs. It reads all the backend headers ('x-connector-' headers) and sets them in local variables.

Adding the middleware will be helpfull to read backend base URL from res.locals.backendBaseUrl and backend authorization from res.locals.backendAuthorization, whenever you need to make an API call to backend.

Note - If the connector configuration in the UEM is of Service account type then the value on res.locals.backendAuthorization may not be ready to use directly while calling a backend API. You will actually see it's the same value that was entered by tenant admin in UEM for the connector. So, it might need further processing in this case depending upon the backend.

Example

app.use('/*', mfCommons.readBackendHeaders)

logReq(res, format, ...args)

It can be used to log a message along with some useful properties related to the current request.

Example

mfCommons.logReq(res, 'Created ticket: %s', ticketId)

// [req: req-id-1] [t: tenant123] [u: shree] [e: [email protected]] [base: https://backend.com] Created ticket: TKT-5

log(format, ...args)

It can be used to log a message outside the context of a request.

Example

mfCommons.log('Sent samples for analytics.')

Functions available for testing

mockMfServer

This is a dummy server to mimic some properties of the Mobile Flows server. It will be useful for unit testing purposes. Its public key is available at /security/public-key.

start(port)

Call the method to start the dummy server to listen at the specified port on the localhost. You can have it running for a suite of unit tests, instead of starting it once per test.

Example

mfCommons.mockMfServer.start(5000)

stop(function)

Stop the dummy server after your unit tests. It optionally takes a callback function that will be invoked by this library.

Example

mfCommons.mockMfServer.stop()
mfCommons.mockMfServer.stop(function)

getMfToken({ username, audience })

This function returns a JWT for the connector authorization.
It is similar to the one generated by actual Mobile Flows server. You can use this function for specific user and connector URL being tested (audience URL).

Example

const mfToken = mfCommons.getMfToken({ username: 'shree', audience: `${CONNECTOR_URL}/api/actions/file-ticket`})

validateDiscovery(discoveryMetadata)

This function validates discovery metadata response. It can be used by connector developers to write unit tests.
The function takes in the discovery metadata json response as an object. Returns an object of the validation results.
The key properties of the returned object are "valid" and "errors".

Example

mfCommons.validateDiscovery({
  object_types: {
    card: {
      endpoint: {
        href: 'https://test.com'
      },
      pollable: true
    }
  }
}).valid

mfCommons.validateDiscovery({
  object_types: {
    card: {
      endpoint: {
        href: 'https://test2.com'
      },
      pollable: "test"
    }
  }
}).errors

validateCard(cardMetadata)

This function validates card response. It can be used by connector developers to write unit tests.
The function takes in the card metadata json response as an object. Returns an object of the validation results.
The key properties of the returned object are "valid" and "errors".

Example

mfCommons.validateCard({
  objects: [{
    id: '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d',
    header: {
        title: 'test'
    },
    body: {
        description: 'test'
    },
    backend_id: 'test',
    hash: 'test',
    actions: [
      {
        id: '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d',
        action_key: 'OPEN_IN',
        label: 'test',
        completed_label: 'test',
        type: 'GET',
        primary: true,
        remove_card_on_completion: false,
        allow_repeated: true,
        url: {
        href: 'https://test.com'
        }
      }
    ]
  }]
}).valid

validateBotDiscovery(botDiscoveryMetadata)

This function validates bot discovery metadata response. It can be used by connector developers to write unit tests.
The function takes in the bot discovery metadata json response as an object. Returns an object of the validation
results. The key properties of the returned object are "valid" and "errors".

Example

mfCommons.validateBotDiscovery({
  objects: [
    {
      children: [
        {
          itemDetails: {
            id: '00000000-0000-0000-0000-000000000000',
            title: 'Order a Desktop',
            description: 'You can order a Desktop here.',
            actions: [
              {
                title: 'View List Of Desktops',
                description: 'You can view list of Desktops.',
                type: 'GET',
                url: {
                  href: 'https://mf/connectors/abc123/botDiscovery/api/v1/device_list?device_category=Desktops&limit=10&offset=0'
                },
                payload: {},
                headers: {},
                userInput: []
              }
            ],
            workflowId: 'vmw_ORDER_DESKTOP',
            workflowStep: 'Complete'
          }
        },
        {
          itemDetails: {
            id: '00000000-0000-0000-0000-000000000000',
            title: 'Order a Tablet',
            description: 'You can order a Tablet here.',
            actions: [
              {
                title: 'View List Of Tablets',
                description: 'You can view list of Tablets.',
                type: 'GET',
                url: {
                  href: 'https://mf/connectors/abc123/botDiscovery/api/v1/device_list?device_category=Tablets&limit=10&offset=0'
                },
                payload: {},
                headers: {},
                userInput: []
              }
            ],
            workflowId: 'vmw_ORDER_TABLET',
            workflowStep: 'Complete'
          }
        }
      ]
    }
  ]
}).valid

validateBotObject(botObject)

This function validates bot object. It can be used by connector developers to write unit tests.
The function takes in a chatbot object. Returns an object of the validationresults.
The key properties of the returned object are "valid" and "errors".

Example

mfCommons.validateBotObject({
    itemDetails: {
      id: '00000000-0000-0000-0000-000000000000',
      title: 'Here are your most recent, open tickets.',
      type: 'text',
      workflowStep: 'Complete'
    }
  }
).valid

Contributing

The mobile-flows-connectors-common-libraries project team welcomes contributions from the community. Before you start working with mobile-flows-connectors-common-libraries, please read our Developer Certificate of Origin. All contributions to this repository must be signed as described on that page. Your signature certifies that you wrote the patch or have the right to pass it on as an open-source patch. For more detailed information, refer to CONTRIBUTING.md.

License

Mobile Flows connectors common libraries under the BSD 2 license