medusa-plugin-sendgrid
Version:
SendGrid transactional emails
708 lines (706 loc) • 84 kB
JavaScript
"use strict";
function _instanceof(left, right) { if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) { return !!right[Symbol.hasInstance](left); } else { return left instanceof right; } }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _mail = _interopRequireDefault(require("@sendgrid/mail"));
var _medusaCoreUtils = require("medusa-core-utils");
var _medusaInterfaces = require("medusa-interfaces");
var _typeorm = require("typeorm");
var _utils = require("@medusajs/utils");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && _instanceof(outerFn.prototype, Generator) ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator["return"] && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) keys.push(key); return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, "catch": function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
function _classCallCheck(instance, Constructor) { if (!_instanceof(instance, Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
var SendGridService = /*#__PURE__*/function (_NotificationService) {
_inherits(SendGridService, _NotificationService);
var _super = _createSuper(SendGridService);
/**
* @param {Object} options - options defined in `medusa-config.js`
* e.g.
* {
* api_key: SendGrid api key
* from: Medusa <hello@medusa.example>,
* order_placed_template: 01234,
* order_updated_template: 56789,
* order_canceled_template: 4242,
* user_password_reset_template: 0000,
* customer_password_reset_template: 1111,
* }
*/
function SendGridService(_ref, options) {
var _this;
var storeService = _ref.storeService,
orderService = _ref.orderService,
returnService = _ref.returnService,
swapService = _ref.swapService,
cartService = _ref.cartService,
lineItemService = _ref.lineItemService,
claimService = _ref.claimService,
fulfillmentService = _ref.fulfillmentService,
fulfillmentProviderService = _ref.fulfillmentProviderService,
totalsService = _ref.totalsService,
productVariantService = _ref.productVariantService,
giftCardService = _ref.giftCardService,
logger = _ref.logger;
_classCallCheck(this, SendGridService);
_this = _super.call(this);
_this.options_ = options;
_this.fulfillmentProviderService_ = fulfillmentProviderService;
_this.storeService_ = storeService;
_this.lineItemService_ = lineItemService;
_this.orderService_ = orderService;
_this.cartService_ = cartService;
_this.claimService_ = claimService;
_this.returnService_ = returnService;
_this.swapService_ = swapService;
_this.fulfillmentService_ = fulfillmentService;
_this.totalsService_ = totalsService;
_this.productVariantService_ = productVariantService;
_this.giftCardService_ = giftCardService;
_this.logger_ = logger;
_mail["default"].setApiKey(options.api_key);
return _this;
}
_createClass(SendGridService, [{
key: "fetchAttachments",
value: function () {
var _fetchAttachments = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(event, data, attachmentGenerator) {
var attachments, _data$return_request, shipping_method, shipping_data, provider, lbl, base64;
return _regeneratorRuntime().wrap(function _callee$(_context) {
while (1) switch (_context.prev = _context.next) {
case 0:
_context.t0 = event;
_context.next = _context.t0 === "swap.created" ? 3 : _context.t0 === "order.return_requested" ? 3 : 17;
break;
case 3:
attachments = [];
_data$return_request = data.return_request, shipping_method = _data$return_request.shipping_method, shipping_data = _data$return_request.shipping_data;
if (!shipping_method) {
_context.next = 11;
break;
}
provider = shipping_method.shipping_option.provider_id;
_context.next = 9;
return this.fulfillmentProviderService_.retrieveDocuments(provider, shipping_data, "label");
case 9:
lbl = _context.sent;
attachments = attachments.concat(lbl.map(function (d) {
return {
name: "return-label",
base64: d.base_64,
type: d.type
};
}));
case 11:
if (!(attachmentGenerator && attachmentGenerator.createReturnInvoice)) {
_context.next = 16;
break;
}
_context.next = 14;
return attachmentGenerator.createReturnInvoice(data.order, data.return_request.items);
case 14:
base64 = _context.sent;
attachments.push({
name: "invoice",
base64: base64,
type: "application/pdf"
});
case 16:
return _context.abrupt("return", attachments);
case 17:
return _context.abrupt("return", []);
case 18:
case "end":
return _context.stop();
}
}, _callee, this);
}));
function fetchAttachments(_x, _x2, _x3) {
return _fetchAttachments.apply(this, arguments);
}
return fetchAttachments;
}()
}, {
key: "fetchData",
value: function () {
var _fetchData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(event, eventData, attachmentGenerator) {
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
while (1) switch (_context2.prev = _context2.next) {
case 0:
_context2.t0 = event;
_context2.next = _context2.t0 === "order.return_requested" ? 3 : _context2.t0 === "swap.shipment_created" ? 4 : _context2.t0 === "claim.shipment_created" ? 5 : _context2.t0 === "order.items_returned" ? 6 : _context2.t0 === "swap.received" ? 7 : _context2.t0 === "swap.created" ? 8 : _context2.t0 === "gift_card.created" ? 9 : _context2.t0 === "order.gift_card_created" ? 10 : _context2.t0 === "order.placed" ? 11 : _context2.t0 === "order.shipment_created" ? 12 : _context2.t0 === "order.canceled" ? 13 : _context2.t0 === "user.password_reset" ? 14 : _context2.t0 === "customer.password_reset" ? 15 : _context2.t0 === "restock-notification.restocked" ? 16 : _context2.t0 === "order.refund_created" ? 19 : 20;
break;
case 3:
return _context2.abrupt("return", this.returnRequestedData(eventData, attachmentGenerator));
case 4:
return _context2.abrupt("return", this.swapShipmentCreatedData(eventData, attachmentGenerator));
case 5:
return _context2.abrupt("return", this.claimShipmentCreatedData(eventData, attachmentGenerator));
case 6:
return _context2.abrupt("return", this.itemsReturnedData(eventData, attachmentGenerator));
case 7:
return _context2.abrupt("return", this.swapReceivedData(eventData, attachmentGenerator));
case 8:
return _context2.abrupt("return", this.swapCreatedData(eventData, attachmentGenerator));
case 9:
return _context2.abrupt("return", this.gcCreatedData(eventData, attachmentGenerator));
case 10:
return _context2.abrupt("return", this.gcCreatedData(eventData, attachmentGenerator));
case 11:
return _context2.abrupt("return", this.orderPlacedData(eventData, attachmentGenerator));
case 12:
return _context2.abrupt("return", this.orderShipmentCreatedData(eventData, attachmentGenerator));
case 13:
return _context2.abrupt("return", this.orderCanceledData(eventData, attachmentGenerator));
case 14:
return _context2.abrupt("return", this.userPasswordResetData(eventData, attachmentGenerator));
case 15:
return _context2.abrupt("return", this.customerPasswordResetData(eventData, attachmentGenerator));
case 16:
_context2.next = 18;
return this.restockNotificationData(eventData, attachmentGenerator);
case 18:
return _context2.abrupt("return", _context2.sent);
case 19:
return _context2.abrupt("return", this.orderRefundCreatedData(eventData, attachmentGenerator));
case 20:
return _context2.abrupt("return", eventData);
case 21:
case "end":
return _context2.stop();
}
}, _callee2, this);
}));
function fetchData(_x4, _x5, _x6) {
return _fetchData.apply(this, arguments);
}
return fetchData;
}()
}, {
key: "getLocalizedTemplateId",
value: function getLocalizedTemplateId(event, locale) {
if (this.options_.localization && this.options_.localization[locale]) {
var map = this.options_.localization[locale];
switch (event) {
case "order.return_requested":
return map.order_return_requested_template;
case "swap.shipment_created":
return map.swap_shipment_created_template;
case "claim.shipment_created":
return map.claim_shipment_created_template;
case "order.items_returned":
return map.order_items_returned_template;
case "swap.received":
return map.swap_received_template;
case "swap.created":
return map.swap_created_template;
case "gift_card.created":
return map.gift_card_created_template;
case "order.gift_card_created":
return map.gift_card_created_template;
case "order.placed":
return map.order_placed_template;
case "order.shipment_created":
return map.order_shipped_template;
case "order.canceled":
return map.order_canceled_template;
case "user.password_reset":
return map.user_password_reset_template;
case "customer.password_reset":
return map.customer_password_reset_template;
case "restock-notification.restocked":
return map.medusa_restock_template;
case "order.refund_created":
return map.order_refund_created_template;
default:
return null;
}
}
return null;
}
}, {
key: "getTemplateId",
value: function getTemplateId(event) {
var _this$options_, _this$options_$key;
var templates = Object.keys((_this$options_ = this.options_) !== null && _this$options_ !== void 0 ? _this$options_ : {});
var normalizedEvent = event.toLowerCase().replaceAll(".", "_");
var key = templates.find(function (template) {
return normalizedEvent === template || "".concat(normalizedEvent, "_template") === template;
});
return (_this$options_$key = this.options_[key]) !== null && _this$options_$key !== void 0 ? _this$options_$key : key;
}
}, {
key: "sendNotification",
value: function () {
var _sendNotification = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(event, eventData, attachmentGenerator) {
var _this2 = this;
var data, templateId, attachments, sendOptions, status;
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
while (1) switch (_context3.prev = _context3.next) {
case 0:
_context3.next = 2;
return this.fetchData(event, eventData, attachmentGenerator);
case 2:
data = _context3.sent;
templateId = this.getTemplateId(event);
if (data.locale) {
templateId = this.getLocalizedTemplateId(event, data.locale) || templateId;
}
if (templateId) {
_context3.next = 7;
break;
}
throw new _utils.MedusaError(_utils.MedusaError.Types.INVALID_DATA, "Sendgrid service: No template was set for event: ".concat(event));
case 7:
_context3.next = 9;
return this.fetchAttachments(event, data, attachmentGenerator);
case 9:
attachments = _context3.sent;
sendOptions = {
template_id: templateId,
from: this.options_.from,
to: data.email,
dynamic_template_data: data,
has_attachments: attachments === null || attachments === void 0 ? void 0 : attachments.length
};
if (attachments !== null && attachments !== void 0 && attachments.length) {
sendOptions.has_attachments = true;
sendOptions.attachments = attachments.map(function (a) {
return {
content: a.base64,
filename: a.name,
type: a.type,
disposition: "attachment",
contentId: a.name
};
});
}
_context3.next = 14;
return _mail["default"].send(sendOptions).then(function () {
status = "sent";
})["catch"](function (error) {
status = "failed";
_this2.logger_.error(error);
});
case 14:
// We don't want heavy docs stored in DB
delete sendOptions.attachments;
return _context3.abrupt("return", {
to: data.email,
status: status,
data: sendOptions
});
case 16:
case "end":
return _context3.stop();
}
}, _callee3, this);
}));
function sendNotification(_x7, _x8, _x9) {
return _sendNotification.apply(this, arguments);
}
return sendNotification;
}()
}, {
key: "resendNotification",
value: function () {
var _resendNotification = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(notification, config, attachmentGenerator) {
var sendOptions, attachs, status;
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
while (1) switch (_context4.prev = _context4.next) {
case 0:
sendOptions = _objectSpread(_objectSpread({}, notification.data), {}, {
to: config.to || notification.to
});
_context4.next = 3;
return this.fetchAttachments(notification.event_name, notification.data.dynamic_template_data, attachmentGenerator);
case 3:
attachs = _context4.sent;
sendOptions.attachments = attachs.map(function (a) {
return {
content: a.base64,
filename: a.name,
type: a.type,
disposition: "attachment",
contentId: a.name
};
});
_context4.next = 7;
return _mail["default"].send(sendOptions).then(function () {
return "sent";
})["catch"](function () {
return "failed";
});
case 7:
status = _context4.sent;
return _context4.abrupt("return", {
to: sendOptions.to,
status: status,
data: sendOptions
});
case 9:
case "end":
return _context4.stop();
}
}, _callee4, this);
}));
function resendNotification(_x10, _x11, _x12) {
return _resendNotification.apply(this, arguments);
}
return resendNotification;
}()
/**
* Sends an email using SendGrid.
* @param {Object} options - send options containing to, from, template, and more. Read more here: https://github.com/sendgrid/sendgrid-nodejs/tree/main/packages/mail
* @return {Promise} result of the send operation
*/
}, {
key: "sendEmail",
value: function () {
var _sendEmail = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(options) {
return _regeneratorRuntime().wrap(function _callee5$(_context5) {
while (1) switch (_context5.prev = _context5.next) {
case 0:
_context5.next = 2;
return _mail["default"].send(options);
case 2:
return _context5.abrupt("return", _context5.sent);
case 3:
case "end":
return _context5.stop();
}
}, _callee5);
}));
function sendEmail(_x13) {
return _sendEmail.apply(this, arguments);
}
return sendEmail;
}()
}, {
key: "orderShipmentCreatedData",
value: function () {
var _orderShipmentCreatedData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6(_ref2, attachmentGenerator) {
var id, fulfillment_id, order, shipment, locale;
return _regeneratorRuntime().wrap(function _callee6$(_context6) {
while (1) switch (_context6.prev = _context6.next) {
case 0:
id = _ref2.id, fulfillment_id = _ref2.fulfillment_id;
_context6.next = 3;
return this.orderService_.retrieve(id, {
select: ["shipping_total", "discount_total", "tax_total", "refunded_total", "gift_card_total", "subtotal", "total", "refundable_amount"],
relations: ["customer", "billing_address", "shipping_address", "discounts", "discounts.rule", "shipping_methods", "shipping_methods.shipping_option", "payments", "fulfillments", "returns", "gift_cards", "gift_card_transactions"]
});
case 3:
order = _context6.sent;
_context6.next = 6;
return this.fulfillmentService_.retrieve(fulfillment_id, {
relations: ["items", "tracking_links"]
});
case 6:
shipment = _context6.sent;
_context6.next = 9;
return this.extractLocale(order);
case 9:
locale = _context6.sent;
return _context6.abrupt("return", {
locale: locale,
order: order,
date: shipment.shipped_at.toDateString(),
email: order.email,
fulfillment: shipment,
tracking_links: shipment.tracking_links,
tracking_number: shipment.tracking_numbers.join(", ")
});
case 11:
case "end":
return _context6.stop();
}
}, _callee6, this);
}));
function orderShipmentCreatedData(_x14, _x15) {
return _orderShipmentCreatedData.apply(this, arguments);
}
return orderShipmentCreatedData;
}()
}, {
key: "orderCanceledData",
value: function () {
var _orderCanceledData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7(_ref3) {
var id, order, subtotal, tax_total, discount_total, shipping_total, gift_card_total, total, taxRate, currencyCode, items, discounts, giftCards, locale;
return _regeneratorRuntime().wrap(function _callee7$(_context7) {
while (1) switch (_context7.prev = _context7.next) {
case 0:
id = _ref3.id;
_context7.next = 3;
return this.orderService_.retrieve(id, {
select: ["shipping_total", "discount_total", "tax_total", "refunded_total", "gift_card_total", "subtotal", "total"],
relations: ["customer", "billing_address", "shipping_address", "discounts", "discounts.rule", "shipping_methods", "shipping_methods.shipping_option", "payments", "fulfillments", "returns", "gift_cards", "gift_card_transactions"]
});
case 3:
order = _context7.sent;
subtotal = order.subtotal, tax_total = order.tax_total, discount_total = order.discount_total, shipping_total = order.shipping_total, gift_card_total = order.gift_card_total, total = order.total;
taxRate = order.tax_rate / 100;
currencyCode = order.currency_code.toUpperCase();
items = this.processItems_(order.items, taxRate, currencyCode);
discounts = [];
if (order.discounts) {
discounts = order.discounts.map(function (discount) {
return {
is_giftcard: false,
code: discount.code,
descriptor: "".concat(discount.rule.value).concat(discount.rule.type === "percentage" ? "%" : " ".concat(currencyCode))
};
});
}
giftCards = [];
if (order.gift_cards) {
giftCards = order.gift_cards.map(function (gc) {
return {
is_giftcard: true,
code: gc.code,
descriptor: "".concat(gc.value, " ").concat(currencyCode)
};
});
discounts.concat(giftCards);
}
_context7.next = 14;
return this.extractLocale(order);
case 14:
locale = _context7.sent;
return _context7.abrupt("return", _objectSpread(_objectSpread({}, order), {}, {
locale: locale,
has_discounts: order.discounts.length,
has_gift_cards: order.gift_cards.length,
date: order.created_at.toDateString(),
items: items,
discounts: discounts,
subtotal: "".concat(this.humanPrice_(subtotal * (1 + taxRate), currencyCode), " ").concat(currencyCode),
gift_card_total: "".concat(this.humanPrice_(gift_card_total * (1 + taxRate), currencyCode), " ").concat(currencyCode),
tax_total: "".concat(this.humanPrice_(tax_total, currencyCode), " ").concat(currencyCode),
discount_total: "".concat(this.humanPrice_(discount_total * (1 + taxRate), currencyCode), " ").concat(currencyCode),
shipping_total: "".concat(this.humanPrice_(shipping_total * (1 + taxRate), currencyCode), " ").concat(currencyCode),
total: "".concat(this.humanPrice_(total, currencyCode), " ").concat(currencyCode)
}));
case 16:
case "end":
return _context7.stop();
}
}, _callee7, this);
}));
function orderCanceledData(_x16) {
return _orderCanceledData.apply(this, arguments);
}
return orderCanceledData;
}()
}, {
key: "orderPlacedData",
value: function () {
var _orderPlacedData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9(_ref4) {
var _this3 = this;
var id, order, tax_total, shipping_total, gift_card_total, total, currencyCode, items, discounts, giftCards, locale, discountTotal, discounted_subtotal, subtotal, subtotal_ex_tax;
return _regeneratorRuntime().wrap(function _callee9$(_context9) {
while (1) switch (_context9.prev = _context9.next) {
case 0:
id = _ref4.id;
_context9.next = 3;
return this.orderService_.retrieve(id, {
select: ["shipping_total", "discount_total", "tax_total", "refunded_total", "gift_card_total", "subtotal", "total"],
relations: ["customer", "billing_address", "shipping_address", "discounts", "discounts.rule", "shipping_methods", "shipping_methods.shipping_option", "payments", "fulfillments", "returns", "gift_cards", "gift_card_transactions"]
});
case 3:
order = _context9.sent;
tax_total = order.tax_total, shipping_total = order.shipping_total, gift_card_total = order.gift_card_total, total = order.total;
currencyCode = order.currency_code.toUpperCase();
_context9.next = 8;
return Promise.all(order.items.map( /*#__PURE__*/function () {
var _ref5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8(i) {
return _regeneratorRuntime().wrap(function _callee8$(_context8) {
while (1) switch (_context8.prev = _context8.next) {
case 0:
_context8.next = 2;
return _this3.totalsService_.getLineItemTotals(i, order, {
include_tax: true,
use_tax_lines: true
});
case 2:
i.totals = _context8.sent;
i.thumbnail = _this3.normalizeThumbUrl_(i.thumbnail);
i.discounted_price = "".concat(_this3.humanPrice_(i.totals.total / i.quantity, currencyCode), " ").concat(currencyCode);
i.price = "".concat(_this3.humanPrice_(i.totals.original_total / i.quantity, currencyCode), " ").concat(currencyCode);
return _context8.abrupt("return", i);
case 7:
case "end":
return _context8.stop();
}
}, _callee8);
}));
return function (_x18) {
return _ref5.apply(this, arguments);
};
}()));
case 8:
items = _context9.sent;
discounts = [];
if (order.discounts) {
discounts = order.discounts.map(function (discount) {
return {
is_giftcard: false,
code: discount.code,
descriptor: "".concat(discount.rule.value).concat(discount.rule.type === "percentage" ? "%" : " ".concat(currencyCode))
};
});
}
giftCards = [];
if (order.gift_cards) {
giftCards = order.gift_cards.map(function (gc) {
return {
is_giftcard: true,
code: gc.code,
descriptor: "".concat(gc.value, " ").concat(currencyCode)
};
});
discounts.concat(giftCards);
}
_context9.next = 15;
return this.extractLocale(order);
case 15:
locale = _context9.sent;
// Includes taxes in discount amount
discountTotal = items.reduce(function (acc, i) {
return acc + i.totals.original_total - i.totals.total;
}, 0);
discounted_subtotal = items.reduce(function (acc, i) {
return acc + i.totals.total;
}, 0);
subtotal = items.reduce(function (acc, i) {
return acc + i.totals.original_total;
}, 0);
subtotal_ex_tax = items.reduce(function (total, i) {
return total + i.totals.subtotal;
}, 0);
return _context9.abrupt("return", _objectSpread(_objectSpread({}, order), {}, {
locale: locale,
has_discounts: order.discounts.length,
has_gift_cards: order.gift_cards.length,
date: order.created_at.toDateString(),
items: items,
discounts: discounts,
subtotal_ex_tax: "".concat(this.humanPrice_(subtotal_ex_tax, currencyCode), " ").concat(currencyCode),
subtotal: "".concat(this.humanPrice_(subtotal, currencyCode), " ").concat(currencyCode),
gift_card_total: "".concat(this.humanPrice_(gift_card_total, currencyCode), " ").concat(currencyCode),
tax_total: "".concat(this.humanPrice_(tax_total, currencyCode), " ").concat(currencyCode),
discount_total: "".concat(this.humanPrice_(discountTotal, currencyCode), " ").concat(currencyCode),
shipping_total: "".concat(this.humanPrice_(shipping_total, currencyCode), " ").concat(currencyCode),
total: "".concat(this.humanPrice_(total, currencyCode), " ").concat(currencyCode)
}));
case 21:
case "end":
return _context9.stop();
}
}, _callee9, this);
}));
function orderPlacedData(_x17) {
return _orderPlacedData.apply(this, arguments);
}
return orderPlacedData;
}()
}, {
key: "gcCreatedData",
value: function () {
var _gcCreatedData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee10(_ref6) {
var _giftCard$metadata, _giftCard$metadata2;
var id, giftCard, taxRate, locale, email;
return _regeneratorRuntime().wrap(function _callee10$(_context10) {
while (1) switch (_context10.prev = _context10.next) {
case 0:
id = _ref6.id;
_context10.next = 3;
return this.giftCardService_.retrieve(id, {
relations: ["region", "order"]
});
case 3:
giftCard = _context10.sent;
taxRate = giftCard.region.tax_rate / 100;
if (!giftCard.order) {
_context10.next = 11;
break;
}
_context10.next = 8;
return this.extractLocale(giftCard.order);
case 8:
_context10.t0 = _context10.sent;
_context10.next = 12;
break;
case 11:
_context10.t0 = null;
case 12:
locale = _context10.t0;
email = giftCard.order ? giftCard.order.email : giftCard.metadata.email;
return _context10.abrupt("return", _objectSpread(_objectSpread({}, giftCard), {}, {
locale: locale,
email: email,
display_value: "".concat(this.humanPrice_(giftCard.value * 1 + taxRate, giftCard.region.currency_code), " ").concat(giftCard.region.currency_code),
message: ((_giftCard$metadata = giftCard.metadata) === null || _giftCard$metadata === void 0 ? void 0 : _giftCard$metadata.message) || ((_giftCard$metadata2 = giftCard.metadata) === null || _giftCard$metadata2 === void 0 ? void 0 : _giftCard$metadata2.personal_message)
}));
case 15:
case "end":
return _context10.stop();
}
}, _callee10, this);
}));
function gcCreatedData(_x19) {
return _gcCreatedData.apply(this, arguments);
}
return gcCreatedData;
}()
}, {
key: "returnRequestedData",
value: function () {
var _returnRequestedData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee12(_ref7) {
var _this4 = this;
var id, return_id, returnRequest, items, order, currencyCode, returnItems, item_subtotal, shippingTotal, base, locale;
return _regeneratorRuntime().wrap(function _callee12$(_context12) {
while (1) switch (_context12.prev = _context12.next) {
case 0:
id = _ref7.id, return_id = _ref7.return_id;
_context12.next = 3;
return this.returnService_.retrieve(return_id, {
relations: ["items.item.tax_lines", "items.item.variant.product.profiles", "shipping_method", "shipping_method.tax_lines", "shipping_method.shipping_option"]
});
case 3:
returnRequest = _context12.sent;
_context12.next = 6;
return this.lineItemService_.list({
id: returnRequest.items.map(function (_ref8) {
var item_id = _ref8.item_id;
return item_id;
})
}, {
relations: ["tax_lines", "variant", "variant.product.profiles"]
});
case 6:
items = _context12.sent;
_context12.next = 9;
return this.orderService_.retrieve(id, {
select: ["total"],
relations: ["items", "items.variant", "items.tax_lines", "discounts", "discounts.rule", "shipping_address", "returns"]
});
case 9: