@juntoz/azure-service-bus-sender
Version:
Quick logger that enables the function to log to the default logger (console) and also to papertrail
271 lines • 13.8 kB
JavaScript
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.AzureServiceBusSender = void 0;
var service_bus_1 = require("@azure/service-bus");
var AzureServiceBusSender = (function () {
function AzureServiceBusSender(senderName, connectionString) {
this.senderName = senderName;
this.connectionString = connectionString;
this.busClient = null;
}
AzureServiceBusSender.prototype.maxBatch = function () {
return 250;
};
AzureServiceBusSender.prototype.ensureClient = function () {
if (!this.busClient) {
this.busClient = service_bus_1.ServiceBusClient.createFromConnectionString(this.connectionString);
this.busClient.topicClients = [];
this.busClient.subscriptionClients = [];
this.busClient.queueClients = [];
}
return this.busClient;
};
AzureServiceBusSender.prototype.ensureTopicSender = function (topicName) {
var tc = this.ensureClient().topicClients[topicName];
if (!tc) {
tc = this.ensureClient().createTopicClient(topicName);
this.ensureClient().topicClients[topicName] = tc;
}
if (!tc.sender || tc.sender.isClosed) {
tc.sender = tc.createSender();
}
return tc.sender;
};
AzureServiceBusSender.prototype.injectMessage = function (msg, moreProperties) {
msg.contentType = 'application/json';
msg.userProperties = msg.userProperties || {};
msg.userProperties.senderName = this.senderName;
if (moreProperties) {
Object.assign(msg.userProperties, moreProperties);
}
return msg;
};
AzureServiceBusSender.prototype.sendToTopic = function (topicName, message) {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4, this.ensureTopicSender(topicName).send(this.injectMessage(message))];
case 1:
_a.sent();
return [2];
}
});
});
};
;
AzureServiceBusSender.prototype.sendBatchToTopic = function (topicName, messages, moreProperties) {
return __awaiter(this, void 0, void 0, function () {
var _this = this;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
if (messages.length > this.maxBatch()) {
throw new Error("batch can only be up to " + this.maxBatch + " messages");
}
messages.forEach(function (m) { return _this.injectMessage(m, moreProperties); });
return [4, this.ensureTopicSender(topicName).sendBatch(messages)];
case 1:
_a.sent();
return [2];
}
});
});
};
;
AzureServiceBusSender.prototype.createSubscriptionReceiver = function (topicName, subscriptionName) {
var sc = this.ensureClient().subscriptionClients[topicName];
if (!sc) {
sc = this.ensureClient().createSubscriptionClient(topicName, subscriptionName);
this.ensureClient().subscriptionClients[topicName] = sc;
}
if (!sc.receiver || sc.receiver.isClosed) {
sc.receiver = sc.createReceiver(service_bus_1.ReceiveMode.peekLock);
}
return sc.receiver;
};
AzureServiceBusSender.prototype.ensureQueueSender = function (queueName) {
var qc = this.ensureClient().queueClients[queueName];
if (!qc) {
qc = this.ensureClient().createQueueClient(queueName);
this.ensureClient().queueClients[queueName] = qc;
}
if (!qc.sender || qc.sender.isClosed) {
qc.sender = qc.createSender();
}
return qc.sender;
};
AzureServiceBusSender.prototype.sendToQueue = function (queueName, message) {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4, this.ensureQueueSender(queueName).send(this.injectMessage(message))];
case 1:
_a.sent();
return [2];
}
});
});
};
;
AzureServiceBusSender.prototype.sendBatchToQueue = function (queueName, messages, moreProperties) {
return __awaiter(this, void 0, void 0, function () {
var _this = this;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
if (messages.length > this.maxBatch()) {
throw new Error("batch can only be up to " + this.maxBatch + " messages");
}
messages.forEach(function (m) { return _this.injectMessage(m, moreProperties); });
return [4, this.ensureQueueSender(queueName).sendBatch(messages)];
case 1:
_a.sent();
return [2];
}
});
});
};
;
AzureServiceBusSender.prototype.cleanup = function () {
return __awaiter(this, void 0, void 0, function () {
var error_1;
var _this = this;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
this.ensureClient().topicClients.forEach(function (x) { return __awaiter(_this, void 0, void 0, function () {
var error_2;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
_a.trys.push([0, 4, , 5]);
if (!(x.sender && !x.sender.isClosed)) return [3, 2];
return [4, x.sender.close()];
case 1:
_a.sent();
_a.label = 2;
case 2:
x.sender = null;
return [4, x.close()];
case 3:
_a.sent();
return [3, 5];
case 4:
error_2 = _a.sent();
console.error('error closing topic clients and senders', error_2);
return [3, 5];
case 5: return [2];
}
});
}); });
this.ensureClient().topicClients.splice(0);
this.ensureClient().subscriptionClients.forEach(function (x) { return __awaiter(_this, void 0, void 0, function () {
var error_3;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
_a.trys.push([0, 4, , 5]);
if (!(x.receiver && !x.receiver.isClosed)) return [3, 2];
return [4, x.receiver.close()];
case 1:
_a.sent();
_a.label = 2;
case 2:
x.receiver = null;
return [4, x.close()];
case 3:
_a.sent();
return [3, 5];
case 4:
error_3 = _a.sent();
console.error('error closing subscriptions clients and receivers', error_3);
return [3, 5];
case 5: return [2];
}
});
}); });
this.ensureClient().subscriptionClients.splice(0);
this.ensureClient().queueClients.forEach(function (x) { return __awaiter(_this, void 0, void 0, function () {
var error_4;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
_a.trys.push([0, 4, , 5]);
if (!(x.sender && !x.sender.isClosed)) return [3, 2];
return [4, x.sender.close()];
case 1:
_a.sent();
_a.label = 2;
case 2:
x.sender = null;
return [4, x.close()];
case 3:
_a.sent();
return [3, 5];
case 4:
error_4 = _a.sent();
console.error('error closing topic clients and senders', error_4);
return [3, 5];
case 5: return [2];
}
});
}); });
this.ensureClient().queueClients.splice(0);
_a.label = 1;
case 1:
_a.trys.push([1, 3, , 4]);
return [4, this.ensureClient().close()];
case 2:
_a.sent();
return [3, 4];
case 3:
error_1 = _a.sent();
console.error('error closing bus client', error_1);
return [3, 4];
case 4:
this.busClient = null;
return [2];
}
});
});
};
return AzureServiceBusSender;
}());
exports.AzureServiceBusSender = AzureServiceBusSender;
//# sourceMappingURL=asb.js.map