Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
This is BETA module and may have bugs and don't work correctly. It is intended for qualified beta testers only and must not be used in production systems.
The node module to control API using Governify tools. This module is a middleware which you can use on ExpressJS or ConnectJS.
On your application package run next command:
$ npm install governify
To control the api you must use governify.control(app, [options])
see Options Object
var governify = require('governify');
var express = require('express');
var app = express();
var port = 9999;
governify.control(app, options = {
datastore: "http://datastore.governify.io/api/v6.1",
namespace: "default",
apiKeyVariable: "apikey",
defaultPath: "/api",
customMetrics: [
{
method: 'POST,GET',
term: 'RequestTerm',
metric: 'Requests',
calculate: function(currentValue, req, res, callback){
//asyncronousCalculation
callback( parseInt(actualValue) + 1 );
}
},
{
metric: 'AVGResponseTime',
calculate: function(currentValue, req, res, callback){
//asyncronousCalculation
callback( res._headers['x-response-time'] );
}
}
]
});
var birds = [
{
"id" : "234h235buh45bhy456",
"specie" : "Halcon",
"place" : "Doñana",
"legDiameter" : 1.0,
"wingSize" : 10.0,
"eggs" : 10,
"hatches" : 2
}
]
app.get("/api/v1/birds", function(req, res){
res.send(birds);
res.end();
});
app.listen(port, function(){
console.log("App listening on port: ", port);
});
NOTE: You must do requests with ?apikey=:key
. For example:
curl -X GET http://localhost:9999/api/v1/birds?apikey=proUser1
Field Name | Type | Description |
---|---|---|
datastore | string | Optional This is the endpoint URL where the service that stores and analyzes the agreement is located. NOTE: If you want to use our datastore, you haven't to give value to this field and the module is going to use datastore by default. |
namespace | string | Optional This field can be used to make out two type of agreement or two type of service, e.g. if you have two services named "api1" and "api2" you can store, analyze and check by different namespaces. By default: "default" |
apiKeyVariable | string | Optional This field defines the name of url param which will be checked and that will contain the key to identify the agreement of current request. By default: "apikey" |
defaultPath | string | Optional This field defines the default path that is used by middleware for metrics without path field. By default: "/" |
customMetrics | [metricObject](#metricsObject) | Optional This field defines the middelwares to control term with custom metrics |
This object defines fileds to create a middleware and to assosiate an agreement term to it.
Field Name | Type | Description |
---|---|---|
path | string | Optional Path over the middleware is applicated. |
method | string | Optional Method over the middleware is applicated. |
term | string | Optional Middleware is assosiated to this term, that must be specified on the SLA. |
metric | string | Optional The metric that will be update by this middleware. |
calculate | Function | Optional This is a function that calculates the value of metric. If you need to calculate it asynchronous you must use: callback(value), else you use: return value. |
{
datastore: "http://datastore.governify.io/api/v6.1",
namespace: "default",
apiKeyVariable: "apikey",
path: "/api",
customMetrics: [
{
path: "/api",
method: "POST",
term: 'ResourcesTerm',
metric: 'Resources',
calculate: function(currentValue, req, res, callback){
//asynchronousCalculation
db.find({}, function(contact){
callback( contact.lenght );
});
}
}
]
}
On this example you must do request with ?apikey=:key
. For example:
curl -X GET http://localhost:9999/api/v1/birds?apikey=proUser1
The URL that will be used to check if "key" is authorized is:
http://datastore.governify.io/api/v6.1/default/agreements/proUser1
And customMetrics
creates a middleware that checks if ResourceTerm is fulfilled and updates the Resources metric with the value that is calculated asynchronously.
{
datastore: "http://datastore.governify.io/api/v6.1",
namespace: "service1",
apiKeyVariable: "user",
path: "/api",
customMetrics: [
{
path: "/api",
method: "POST",
term: 'RequestTerm',
metric: 'Requests',
calculate: function(currentValue, req, res, callback){
//synchronousCalculation
return actualValue + 1;
}
}
]
}
On this example you must do request with ?user=:key
. For example:
curl -X GET http://localhost:9999/api/v1/birds?user=proUser1
The URL that will be used to check if "key" is authorized is:
http://datastore.governify.io/api/v6.1/service1/agreements/proUser1
And customMetrics
creates a middleware that checks if RequestTerm is fulfilled and updates the Requests metric with the value that is calculated synchronously.
FAQs
App Middleware to control api's by SLA using AML
We found that governify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.