mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 08:40:38 +00:00
* [snyk] fix vulnerabilities * move all process.env in one config * update log level in config * check envs * fix imports in tests for microsoft, soniox, deepgram * fix import in gather-test * fix missing imports --------- Co-authored-by: Markus Frindt <m.frindt@cognigy.com>
77 lines
1.9 KiB
JavaScript
77 lines
1.9 KiB
JavaScript
const assert = require('assert');
|
|
const Emitter = require('events');
|
|
const crypto = require('crypto');
|
|
const timeSeries = require('@jambonz/time-series');
|
|
const {NODE_ENV, JAMBONES_TIME_SERIES_HOST} = require('../config');
|
|
let alerter ;
|
|
|
|
class BaseRequestor extends Emitter {
|
|
constructor(logger, account_sid, hook, secret) {
|
|
super();
|
|
assert(typeof hook === 'object');
|
|
|
|
this.logger = logger;
|
|
this.url = hook.url;
|
|
|
|
this.username = hook.username;
|
|
this.password = hook.password;
|
|
this.secret = secret;
|
|
this.account_sid = account_sid;
|
|
|
|
const {stats} = require('../../').srf.locals;
|
|
this.stats = stats;
|
|
|
|
if (!alerter) {
|
|
alerter = timeSeries(logger, {
|
|
host: JAMBONES_TIME_SERIES_HOST,
|
|
commitSize: 50,
|
|
commitInterval: 'test' === NODE_ENV ? 7 : 20
|
|
});
|
|
}
|
|
}
|
|
|
|
get Alerter() {
|
|
return alerter;
|
|
}
|
|
|
|
close() {
|
|
/* subclass responsibility */
|
|
}
|
|
|
|
_computeSignature(payload, timestamp, secret) {
|
|
assert(secret);
|
|
const data = `${timestamp}.${JSON.stringify(payload)}`;
|
|
return crypto
|
|
.createHmac('sha256', secret)
|
|
.update(data, 'utf8')
|
|
.digest('hex');
|
|
}
|
|
|
|
_generateSigHeader(payload, secret) {
|
|
const timestamp = Math.floor(Date.now() / 1000);
|
|
const signature = this._computeSignature(payload, timestamp, secret);
|
|
const scheme = 'v1';
|
|
return {
|
|
'Jambonz-Signature': `t=${timestamp},${scheme}=${signature}`
|
|
};
|
|
}
|
|
|
|
_isAbsoluteUrl(u) {
|
|
return typeof u === 'string' &&
|
|
u.startsWith('https://') || u.startsWith('http://') ||
|
|
u.startsWith('ws://') || u.startsWith('wss://');
|
|
}
|
|
_isRelativeUrl(u) {
|
|
return typeof u === 'string' && u.startsWith('/');
|
|
}
|
|
_roundTrip(startAt) {
|
|
const diff = process.hrtime(startAt);
|
|
const time = diff[0] * 1e3 + diff[1] * 1e-6;
|
|
return time.toFixed(0);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
module.exports = BaseRequestor;
|