notifme/notifme-sdk

View on GitHub

Showing 333 of 333 total issues

Function _callee has 102 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      var _send = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee(request) {
        var _ref, id, userId, from, replyTo, subject, html, text, headers, to, cc, bcc, attachments, response, responseBody, message;
        return _regenerator["default"].wrap(function _callee$(_context) {
          while (1) switch (_context.prev = _context.next) {
            case 0:
Severity: Major
Found in lib/providers/email/mandrill.js - About 4 hrs to fix

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

          if (responseBody.requestError && responseBody.requestError.serviceException) {
            const error = responseBody.requestError.serviceException
            const message = Object.keys(error).map((key) => `${key}: ${error[key]}`).join(', ')
            throw new Error(message)
          } else {
    Severity: Major
    Found in src/providers/whatsapp/infobip.js and 1 other location - About 4 hrs to fix
    src/providers/sms/infobip.js on lines 42..48

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 116.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

        } else if (responseBody.requestError && responseBody.requestError.serviceException) {
          const error = responseBody.requestError.serviceException
          const message = Object.keys(error).map((key) => `${key}: ${error[key]}`).join(', ')
          throw new Error(message)
        } else {
    Severity: Major
    Found in src/providers/sms/infobip.js and 1 other location - About 4 hrs to fix
    src/providers/whatsapp/infobip.js on lines 49..55

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 116.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

        value: function authorization(credentials, datetime) {
          var parts = [];
          var credString = this.credentialString(datetime);
          parts.push(algorithm + ' Credential=' + credentials.accessKeyId + '/' + credString);
          parts.push('SignedHeaders=' + this.signedHeaders());
    Severity: Major
    Found in lib/util/aws/v4.js and 1 other location - About 4 hrs to fix
    src/util/aws/v4.js on lines 36..43

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 115.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

      authorization (credentials, datetime) {
        const parts = []
        const credString = this.credentialString(datetime)
        parts.push(algorithm + ' Credential=' + credentials.accessKeyId + '/' + credString)
        parts.push('SignedHeaders=' + this.signedHeaders())
    Severity: Major
    Found in src/util/aws/v4.js and 1 other location - About 4 hrs to fix
    lib/util/aws/v4.js on lines 53..60

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 115.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function _callee$ has 99 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            return _regenerator["default"].wrap(function _callee$(_context) {
              while (1) switch (_context.prev = _context.next) {
                case 0:
                  if (!request.customize) {
                    _context.next = 6;
    Severity: Major
    Found in lib/providers/email/mandrill.js - About 3 hrs to fix

      Function value has 91 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          value: function () {
            var _send = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee(request) {
              var _ref, id, userId, from, replyTo, subject, html, text, headers, to, cc, bcc, attachments, form, response, responseBody;
              return _regenerator["default"].wrap(function _callee$(_context) {
                while (1) switch (_context.prev = _context.next) {
      Severity: Major
      Found in lib/providers/email/mailgun.js - About 3 hrs to fix

        Similar blocks of code found in 3 locations. Consider refactoring.
        Open

          function SmsInfobipProvider(_ref) {
            var username = _ref.username,
              password = _ref.password;
            (0, _classCallCheck2["default"])(this, SmsInfobipProvider);
            (0, _defineProperty2["default"])(this, "id", 'sms-infobip-provider');
        Severity: Major
        Found in lib/providers/sms/infobip.js and 2 other locations - About 3 hrs to fix
        lib/providers/sms/46elks.js on lines 18..24
        lib/providers/sms/callr.js on lines 26..32

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 106.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 3 locations. Consider refactoring.
        Open

          function Sms46elksProvider(_ref) {
            var apiUsername = _ref.apiUsername,
              apiPassword = _ref.apiPassword;
            (0, _classCallCheck2["default"])(this, Sms46elksProvider);
            (0, _defineProperty2["default"])(this, "id", 'sms-46elks-provider');
        Severity: Major
        Found in lib/providers/sms/46elks.js and 2 other locations - About 3 hrs to fix
        lib/providers/sms/callr.js on lines 26..32
        lib/providers/sms/infobip.js on lines 19..25

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 106.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 3 locations. Consider refactoring.
        Open

          function SmsCallrProvider(_ref) {
            var login = _ref.login,
              password = _ref.password;
            (0, _classCallCheck2["default"])(this, SmsCallrProvider);
            (0, _defineProperty2["default"])(this, "id", 'sms-callr-provider');
        Severity: Major
        Found in lib/providers/sms/callr.js and 2 other locations - About 3 hrs to fix
        lib/providers/sms/46elks.js on lines 18..24
        lib/providers/sms/infobip.js on lines 19..25

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 106.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 4 locations. Consider refactoring.
        Open

        export default function factory ({ type, ...config }: Object): SlackProviderType {
          switch (type) {
            // Development
            case 'logger':
              return new SlackLoggingProvider(config, 'slack')
        Severity: Major
        Found in src/providers/slack/index.js and 3 other locations - About 3 hrs to fix
        src/providers/voice/index.js on lines 13..33
        src/providers/webpush/index.js on lines 13..33
        src/providers/whatsapp/index.js on lines 13..33

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 105.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 4 locations. Consider refactoring.
        Open

        export default function factory ({ type, ...config }: Object): VoiceProviderType {
          switch (type) {
            // Development
            case 'logger':
              return new VoiceLoggerProvider(config, 'voice')
        Severity: Major
        Found in src/providers/voice/index.js and 3 other locations - About 3 hrs to fix
        src/providers/slack/index.js on lines 13..33
        src/providers/webpush/index.js on lines 13..33
        src/providers/whatsapp/index.js on lines 13..33

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 105.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 4 locations. Consider refactoring.
        Open

        export default function factory ({ type, ...config }: Object): WebpushProviderType {
          switch (type) {
            // Development
            case 'logger':
              return new WebpushLoggerProvider(config, 'webpush')
        Severity: Major
        Found in src/providers/webpush/index.js and 3 other locations - About 3 hrs to fix
        src/providers/slack/index.js on lines 13..33
        src/providers/voice/index.js on lines 13..33
        src/providers/whatsapp/index.js on lines 13..33

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 105.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 4 locations. Consider refactoring.
        Open

        export default function factory ({ type, ...config }: Object): WhatsappProviderType {
          switch (type) {
            // Development
            case 'logger':
              return new WhatsappLoggingProvider(config, 'whatsapp')
        Severity: Major
        Found in src/providers/whatsapp/index.js and 3 other locations - About 3 hrs to fix
        src/providers/slack/index.js on lines 13..33
        src/providers/voice/index.js on lines 13..33
        src/providers/webpush/index.js on lines 13..33

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 105.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Function _callee has 86 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              var _send = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee(request) {
                var _ref, id, userId, from, replyTo, subject, html, text, headers, to, cc, bcc, attachments, form, response, responseBody;
                return _regenerator["default"].wrap(function _callee$(_context) {
                  while (1) switch (_context.prev = _context.next) {
                    case 0:
        Severity: Major
        Found in lib/providers/email/mailgun.js - About 3 hrs to fix

          Function _callee$ has 83 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  return _regenerator["default"].wrap(function _callee$(_context) {
                    while (1) switch (_context.prev = _context.next) {
                      case 0:
                        if (!request.customize) {
                          _context.next = 6;
          Severity: Major
          Found in lib/providers/email/mailgun.js - About 3 hrs to fix

            Function value has 82 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                value: function () {
                  var _send = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee(request) {
                    var _ref2, from, to, type, messageId, text, mediaUrl, templateName, templateData, rest, payload, response, responseBody, _ref3, _ref4, message, error, _message;
                    return _regenerator["default"].wrap(function _callee$(_context) {
                      while (1) switch (_context.prev = _context.next) {
            Severity: Major
            Found in lib/providers/whatsapp/infobip.js - About 3 hrs to fix

              Function value has 81 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  value: (function () {
                    var _send = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee(request) {
                      var _ref2, from, to, text, response, responseBody, message, error, _error, _message;
                      return _regenerator["default"].wrap(function _callee$(_context) {
                        while (1) switch (_context.prev = _context.next) {
              Severity: Major
              Found in lib/providers/sms/infobip.js - About 3 hrs to fix

                Function value has 79 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    value: function () {
                      var _send = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee(request) {
                        var _ref2, from, to, url, method, fallbackUrl, fallbackMethod, statusCallback, statusCallbackEvent, sendDigits, machineDetection, machineDetectionTimeout, timeout, form, response, responseBody;
                        return _regenerator["default"].wrap(function _callee$(_context) {
                          while (1) switch (_context.prev = _context.next) {
                Severity: Major
                Found in lib/providers/voice/twilio.js - About 3 hrs to fix

                  Similar blocks of code found in 2 locations. Consider refactoring.
                  Open

                                  }, attachments && attachments.length > 0 ? {
                                    attachments: attachments.map(function (_ref2) {
                                      var contentType = _ref2.contentType,
                                        filename = _ref2.filename,
                                        content = _ref2.content;
                  Severity: Major
                  Found in lib/providers/email/sendgrid.js and 1 other location - About 3 hrs to fix
                  lib/providers/email/mandrill.js on lines 97..108

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 98.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  Severity
                  Category
                  Status
                  Source
                  Language