2020-11-26 16:09:38 +03:00
|
|
|
const _ = require('lodash');
|
|
|
|
|
|
|
|
class EventProcessingResult {
|
2022-11-29 13:15:19 +03:00
|
|
|
/**
|
|
|
|
* @param {object} result
|
|
|
|
* @param {number} [result.delivered]
|
|
|
|
* @param {number} [result.opened]
|
|
|
|
* @param {number} [result.temporaryFailed]
|
|
|
|
* @param {number} [result.permanentFailed]
|
|
|
|
* @param {number} [result.unsubscribed]
|
|
|
|
* @param {number} [result.complained]
|
|
|
|
* @param {number} [result.unhandled]
|
|
|
|
* @param {number} [result.unprocessable]
|
|
|
|
* @param {number} [result.processingFailures]
|
|
|
|
* @param {string[]} [result.emailIds]
|
|
|
|
* @param {string[]} [result.memberIds]
|
|
|
|
*/
|
2020-11-26 16:09:38 +03:00
|
|
|
constructor(result = {}) {
|
|
|
|
// counts
|
|
|
|
this.delivered = 0;
|
|
|
|
this.opened = 0;
|
2021-01-16 19:22:52 +03:00
|
|
|
this.temporaryFailed = 0;
|
|
|
|
this.permanentFailed = 0;
|
2020-11-26 16:09:38 +03:00
|
|
|
this.unsubscribed = 0;
|
|
|
|
this.complained = 0;
|
|
|
|
this.unhandled = 0;
|
|
|
|
this.unprocessable = 0;
|
|
|
|
|
2021-01-16 19:22:52 +03:00
|
|
|
// processing failures are counted separately in addition to event type counts
|
|
|
|
this.processingFailures = 0;
|
|
|
|
|
2020-11-26 16:09:38 +03:00
|
|
|
// ids seen whilst processing ready for passing to the stats aggregator
|
|
|
|
this.emailIds = [];
|
|
|
|
this.memberIds = [];
|
|
|
|
|
|
|
|
this.merge(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
get totalEvents() {
|
|
|
|
return this.delivered
|
|
|
|
+ this.opened
|
2021-01-16 19:22:52 +03:00
|
|
|
+ this.temporaryFailed
|
|
|
|
+ this.permanentFailed
|
2020-11-26 16:09:38 +03:00
|
|
|
+ this.unsubscribed
|
|
|
|
+ this.complained
|
|
|
|
+ this.unhandled
|
|
|
|
+ this.unprocessable;
|
|
|
|
}
|
|
|
|
|
|
|
|
merge(other = {}) {
|
|
|
|
this.delivered += other.delivered || 0;
|
|
|
|
this.opened += other.opened || 0;
|
2021-01-16 19:22:52 +03:00
|
|
|
this.temporaryFailed += other.temporaryFailed || 0;
|
|
|
|
this.permanentFailed += other.permanentFailed || 0;
|
2020-11-26 16:09:38 +03:00
|
|
|
this.unsubscribed += other.unsubscribed || 0;
|
|
|
|
this.complained += other.complained || 0;
|
|
|
|
this.unhandled += other.unhandled || 0;
|
|
|
|
this.unprocessable += other.unprocessable || 0;
|
|
|
|
|
2021-01-16 19:22:52 +03:00
|
|
|
this.processingFailures += other.processingFailures || 0;
|
|
|
|
|
2020-11-26 16:09:38 +03:00
|
|
|
this.emailIds = _.compact(_.union(this.emailIds, other.emailIds || []));
|
|
|
|
this.memberIds = _.compact(_.union(this.memberIds, other.memberIds || []));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = EventProcessingResult;
|