Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

sq-native

Package Overview
Dependencies
18
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.14.0 to 1.0.0

install.js

121

index.js

@@ -7,2 +7,74 @@ 'use strict'; // FIXME copyright

const handleResponse = function (self, res) {
if (!res) {
return {};
}
if (res.status === 'error') {
const err = new Error('runPowerWAF returned an error');
err.waf = res;
if (res.error_code === Binding.PW_ERR_INVALID_CALL) {
err.waf.args = [self.id, params, budget];
}
err.waf.waf_rule = self.id;
delete err.waf.status;
throw err;
}
const ret = {};
if (res.perfTotalRuntime) {
ret.perfTotalRuntime = res.perfTotalRuntime;
}
if (res.perfData) {
ret.perfData = JSON.parse(res.perfData);
}
if (res.data) {
ret.record = {
waf_data: res.data
};
}
if (res.status) {
ret.status = res.status;
}
return ret;
};
const AdditiveContext = class {
constructor(key, id) {
this.key = key;
this.id = id;
this.finished = false;
}
_checkState() {
if (this.finished === true) {
throw new Error('Calling a disposed context');
}
}
run(params, budget) {
this._checkState();
let res;
try {
res = Binding.run_additive(this.key, params, budget); // TODO: measure binding costs too
}
catch (e) {
e.waf = {
args: [this.id, params, budget]
};
throw e;
}
return handleResponse(this, res);
}
dispose() {
this._checkState();
this.finished = true;
Binding.clear_additive(this.key);
}
};
module.exports = class {

@@ -15,3 +87,3 @@

try {
Binding.powerwaf_initializePowerWAF(id, rule);
Binding.initialize(id, rule);
}

@@ -25,3 +97,3 @@ catch (e) {

run(params, budget) {
_checkInit() {

@@ -31,5 +103,17 @@ if (this.isInit !== true) {

}
}
startAdditive() {
this._checkInit();
const key = Binding.start_additive(this.id);
return new AdditiveContext(key);
}
run(params, budget) {
this._checkInit();
let res;
try {
res = Binding.powerwaf_run(this.id, params, budget); // TODO: measure binding costs too
res = Binding.run(this.id, params, budget); // TODO: measure binding costs too
}

@@ -42,28 +126,3 @@ catch (e) {

}
if (!res) {
return {};
}
if (res.status === 'error') {
const err = new Error('runPowerWAF returned an error');
err.waf = res;
if (res.error_code === Binding.PW_ERR_INVALID_CALL) {
err.waf.args = [this.id, params, budget];
}
err.waf.waf_rule = this.id;
delete err.waf.status;
throw err;
}
const ret = {};
if (res.data) {
ret.record = {
waf_data: res.data
};
}
if (res.status) {
ret.status = res.status;
}
return ret;
return handleResponse(this, res);
}

@@ -73,3 +132,3 @@

const version = Binding.powerwaf_get_version();
const version = Binding.get_version();
return `${version.major}.${version.minor}.${version.patch}`;

@@ -80,3 +139,3 @@ }

return Binding.powerwaf_clearAll();
return Binding.clear_all();
}

@@ -83,0 +142,0 @@ };

{
"name": "sq-native",
"version": "0.14.0",
"version": "1.0.0",
"description": "Node.js binding for libsqreen",
"main": "index.js",
"scripts": {
"install": "binary-downloader"
"install": "node ./install.js"
},

@@ -12,10 +12,9 @@ "author": "vdeturckheim (vladimir@sqreen.com)",

"dependencies": {
"binary-downloader": "^0.2.0"
"binary-downloader": "^0.2.0",
"detect-libc": "^1.0.3",
"tar": "^4.4.13"
},
"binary": {
"module_name": "libsqreen",
"module_path": "./bindings/{node_napi_label}",
"remote_path": "./nodejs/libsqreen/b20200625.12/{platform}-{libc}/{arch}/",
"package_name": "{node_napi_label}.tar.gz",
"host": "https://sqreen-download-public.s3-eu-west-1.amazonaws.com/",
"module_name": "libsqreen-{node_napi_label}",
"module_path": "./bindings",
"napi_versions": [

@@ -22,0 +21,0 @@ 3

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc