1.19.1-0 • Published 10 months ago

governify-commons v1.19.1-0

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Governify-Commons

NPM

This module is intended for use in all microservices of Governify infrastructure. It allows for abstract the functions that are mostly used in the code, to have a better control and parametrize the functions call.

Currently Governify-Commons implements the following:

  • Governify infrastructure urls management
  • A httpClient that should be used for all the calls (This httpClient is an Axios wrapper)
  • A logger able to rotate files and change logging levels in execution time
  • A configuration manager compatible with local or external files
  • Utils functions commonly used in all the microservices

It also features a middleware in /commons to modify configuration parameters and show microservice information.

Implementations

The module should be initiated at the entrypoint of the service as soon as possible in the code with:

const governify = require('governify-commons')

After that, you must call the module init function that will load the infrastructure and all the configurations:

governify.init().then(function(commonsMiddleware) {
    //All the code for initializing the microservice
    }
);

This example is for running without any configuration in it. Also the commons Middleware will be resolved for it to be instantiated in the server. This is explained in the last part of this article.

Once you have called the init function, you can require governify in other classes of your microservice without having to initialize it again.

If you require governify-commons before the init function being completed, the infrastructure urls or the configuration can have null values.

infrastructure

In order to call another service in the infrastructure you must implement the code as following:

const governify = require('governify-commons');
governify.infrastructure.getService('internal.registry').get('/echo/');
governify.infrastructure.getService('internal.registry').post('/echo/', {body}, {config});

You can also get only the service url with:

const governify = require('governify-commons');
governify.infrastructure.getServiceURL('external.registry')
//This returns the service url that is stored in the loaded infrastructure file as (external.registry)

httpClient

If you want to call a service that is not specified in the infrastructure file, you should use the httpClient as follows:

const governify = require('governify-commons');
governify.httpClient.get('http://api-echo.herokuapp.com/echo/');

The syntax is the same as axios, the code above is the equivalent of:

const axios = require('axios');
axios.get('http://api-echo.herokuapp.com/echo/');

You can read axios documentation to see all the posible functions: Axios NPM documentation

logger

Governify Commons integrates a logger consisting in 5 different logging levels and integrating automatic file rotation. The logger is obtained by executing the getLogger() function from the commons instantiation.

const logger = require('governify-commons').getLogger();

logger.debug("Debug message");
logger.info("Info message");
logger.warn("Warn message");
logger.error("Error message");
logger.fatal("Fatal error message");

Messages can be tagged by marking the logger object with .tag(tagName) function and store this configuration in the variable or in the actual logging call:

const logger = require('governify-commons').getLogger().tag("tag1");

// Will log a message tagged with "tag1"
logger.info("Info message");

// Will log a message tagged with both "tag1" and "tag2" tags
logger.tag("tag2").warn("Warn message");

// Will log a message only tagged with "tag1" because the logger also tagged with tag2 wasn't stored in the logger variable
logger.error("Error message");
OUTPUT

[2021-07-06T09:06:17.395Z] [info ] [NOTRA] [tag1] Info message
[2021-07-06T09:06:17.397Z] [warn ] [NOTRA] [tag1, tag2] Warn message
[2021-07-06T09:06:17.398Z] [error] [NOTRA] [tag1] Error message

configurator

In order to load a configuration to the module, you have to specify it in the init function:

governify.init({
    configurations: [
        {
            name: 'configName',
            location: './configurations/configName.' + (process.env.NODE_ENV || 'development') + '.yaml',
            default: true
        }
    ]
}).then(function (commonsMiddleware) {
    //All the code for initializing the microservice
}
);

After that you can load the configuration as follows:

let config = governify.configurator.getConfig('configName');

All the values of the configurations can be replace with Environment variables. For example: With a config named 'exampleConfig' and the following value:

test:
    childrenTest: originalValue
serverPort: 8080

In order to replace a value of this config, you can specify the following env vars:

GOV_CONFIG_exampleConfig_test_childrenTest=replacedValue
GOV_CONFIG_exampleConfig_serverPort=9000

The result config when you execute the code will be:

governify.configurator.getConfig('configName');

Result:

test:
    childrenTest: replacedValue
serverPort: 9000

utils

The most used functions of the utils are:

const governify = require('governify-commons');
//This function read the content of a file in a local storage path or from a external url
let object = governify.utils.loadObjectFromFileOrURL(url or fileLocation);

You can check utils.js file to see all posible functions.

Middleware

By calling the init function, it resolves a middleware. It will serve a set of functions in the /commons endpoint. Make sure it is used after required middlewares for the correct functioning of the server are already instantiated like the body parser and cors if needed.

app.use(
    bodyParser.urlencoded({
        limit: '50mb',
        extended: 'true'
    })
);

app.use(
    bodyParser.json({
        limit: '50mb',
        type: 'application/json'
    })
);

app.use(cors());
app.use(commonsMiddleware);

These are the available endpoints:

  • [GET] /commons - Returns information about the microservice commons is running on, such as the name and version of the microservice, the version of the commons installed and if the requests are being logged.
  • [GET] /commons/infrastructure - Returns the services infrastructure in a JSON format.
  • [POST] /commons/infrastructure/update - Updates the microservice infrastructure by requesting the infrastructure.yaml file again.
  • [GET] /commons/requestlogging - Answers with an "Enabled" or "Disabled" message indicating if commons is loggin the requests information.
  • [POST] /commons/requestlogging/enable - Enables the request logging.
  • [POST] /commons/requestlogging/disable - Disables the request logging.
  • [POST] /commons/requestlogging/swap - Inverts the status of the request logging.
  • [GET] /commons/logger - Returns the actual logger configuration (levels, file rotation, etc)
  • [POST] /commons/logger - Receives a JSON (with the same structure as the GET) to substitute the logger configuration.

Update and publish

TODO

1.18.1-0

10 months ago

1.19.1-0

10 months ago

1.17.6-4

10 months ago

1.19.0

10 months ago

1.18.0

1 year ago

1.17.6-3

1 year ago

1.17.6-1

2 years ago

1.17.6-2

2 years ago

1.17.6-0

3 years ago

1.17.5

3 years ago

1.17.4

3 years ago

1.17.3-1

3 years ago

1.17.3-0

3 years ago

1.17.2

3 years ago

1.17.1

3 years ago

1.16.2

3 years ago

1.17.0

3 years ago

1.16.1

3 years ago

1.16.0

3 years ago

1.15.0

3 years ago

1.14.0

3 years ago

1.12.0

3 years ago

1.11.0

3 years ago

1.13.0

3 years ago

1.10.0

3 years ago

1.9.8

3 years ago

1.9.7

3 years ago

1.9.6

3 years ago

1.9.5

3 years ago

1.8.2

3 years ago

1.6.4

3 years ago

1.8.1

3 years ago

1.6.3

3 years ago

1.8.0

3 years ago

1.6.2

3 years ago

1.6.1

3 years ago

1.6.0

3 years ago

1.7.7

3 years ago

1.9.4

3 years ago

1.7.6

3 years ago

1.9.3

3 years ago

1.7.5

3 years ago

1.9.2

3 years ago

1.7.4

3 years ago

1.9.1

3 years ago

1.7.3

3 years ago

1.5.5

3 years ago

1.9.0

3 years ago

1.7.2

3 years ago

1.5.4

3 years ago

1.7.1

3 years ago

1.7.0

3 years ago

1.8.9

3 years ago

1.8.8

3 years ago

1.8.7

3 years ago

1.8.6

3 years ago

1.8.5

3 years ago

1.6.7

3 years ago

1.8.4

3 years ago

1.6.6

3 years ago

1.8.3

3 years ago

1.6.5

3 years ago

1.4.5

3 years ago

1.5.3

3 years ago

1.4.4

3 years ago

1.5.1

3 years ago

1.5.0

3 years ago

1.4.3

3 years ago

1.4.2

3 years ago

1.4.1

3 years ago

1.2.0

3 years ago

1.4.0

3 years ago

1.3.1

3 years ago

1.2.2

3 years ago

1.3.0

3 years ago

1.2.1

3 years ago

1.1.0

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago