enricostara/telegram.link

View on GitHub

Showing 20 of 20 total issues

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

Messages.prototype.readHistory = function (peer, max_id, offset, read_contents, callback) {

    read_contents = read_contents === false ? new api.type.BoolFalse() :
        ( read_contents === true ? new api.type.BoolTrue() : read_contents);

Severity: Major
Found in lib/api/messages.js and 1 other location - About 2 hrs to fix
lib/api/account.js on lines 40..46

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 92.

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

Account.prototype.updateStatus = function (offline, callback) {

    offline = offline === false ? new api.type.BoolFalse() :
        ( offline === true ? new api.type.BoolTrue() : offline);

Severity: Major
Found in lib/api/account.js and 1 other location - About 2 hrs to fix
lib/api/messages.js on lines 85..91

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 92.

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 getDataCenters has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

Client.prototype.getDataCenters = function (callback) {
    if (callback) {
        this.once('dataCenter', callback);
    }
    if (this.isReady(true)) {
Severity: Minor
Found in lib/telegram.link.js - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function getDataCenters has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

Client.prototype.getDataCenters = function (callback) {
    if (callback) {
        this.once('dataCenter', callback);
    }
    if (this.isReady(true)) {
Severity: Minor
Found in lib/telegram.link.js - About 1 hr to fix

    Function httpPoll has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

    Client.prototype.httpPoll = function (callback, maxWait, waitAfter, maxDelay) {
        if (callback) {
            this.once('httpPoll', callback);
        }
        if (this.isReady(true) && this._connection instanceof mt.net.HttpConnection) {
    Severity: Minor
    Found in lib/telegram.link.js - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

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

    Messages.prototype.sendMessage = function (peer, message, random_id, callback) {
        return utility.callService(api.service.messages.sendMessage, this.client, this.client._channel, callback, arguments);
    };
    Severity: Major
    Found in lib/api/messages.js and 3 other locations - About 1 hr to fix
    lib/api/auth.js on lines 88..90
    lib/api/messages.js on lines 40..42
    lib/api/updates.js on lines 53..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 62.

    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

    Messages.prototype.getDialogs = function (offset, max_id, limit, callback) {
        return utility.callService(api.service.messages.getDialogs, this.client, this.client._channel, callback, arguments);
    };
    Severity: Major
    Found in lib/api/messages.js and 3 other locations - About 1 hr to fix
    lib/api/auth.js on lines 88..90
    lib/api/messages.js on lines 121..123
    lib/api/updates.js on lines 53..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 62.

    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

    Auth.prototype.signIn = function (phone_number, phone_code_hash, phone_code, callback) {
        return utility.callService(api.service.auth.signIn, this.client, this.client._channel, callback, arguments);
    };
    Severity: Major
    Found in lib/api/auth.js and 3 other locations - About 1 hr to fix
    lib/api/messages.js on lines 40..42
    lib/api/messages.js on lines 121..123
    lib/api/updates.js on lines 53..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 62.

    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

    Updates.prototype.getDifference = function (pts, date, qts, callback) {
        return utility.callService(api.service.updates.getDifference, this.client, this.client._channel, callback, arguments);
    };
    Severity: Major
    Found in lib/api/updates.js and 3 other locations - About 1 hr to fix
    lib/api/auth.js on lines 88..90
    lib/api/messages.js on lines 40..42
    lib/api/messages.js on lines 121..123

    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 62.

    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 callService has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function callService(service, emitter, channel, callback) {
        var argsValue = Array.prototype.slice.call(Array.prototype.slice.call(arguments)[4]);
        var callerFunc = arguments.callee.caller;
        var eventName = service.name || service._name;
        var callerArgNames = _retrieveArgumentNames(callerFunc);
    Severity: Minor
    Found in lib/utility.js - About 1 hr to fix

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

      Auth.prototype.checkPhone = function (phone_number, callback) {
          return utility.callService(api.service.auth.checkPhone, this.client, this.client._channel, callback, arguments);
      };
      Severity: Major
      Found in lib/api/auth.js and 1 other location - About 1 hr to fix
      lib/api/contacts.js on lines 40..42

      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 60.

      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

      Contacts.prototype.getContacts = function (hash, callback) {
          return utility.callService(api.service.contacts.getContacts, this.client, this.client._channel, callback, arguments);
      };
      Severity: Major
      Found in lib/api/contacts.js and 1 other location - About 1 hr to fix
      lib/api/auth.js on lines 113..115

      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 60.

      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 callback has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

                      callback: function (ex, config) {
                          if (ex) {
                              self.emit('error', ex);
                          } else {
                              var dcs = {
      Severity: Minor
      Found in lib/telegram.link.js - About 1 hr to fix

        Function httpPoll has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        Client.prototype.httpPoll = function (callback, maxWait, waitAfter, maxDelay) {
            if (callback) {
                this.once('httpPoll', callback);
            }
            if (this.isReady(true) && this._connection instanceof mt.net.HttpConnection) {
        Severity: Minor
        Found in lib/telegram.link.js - About 1 hr to fix

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

          gulp.task('test', function () {
              return gulp.src('./test/**/*test.js')
                  .pipe(mocha({reporter: 'mocha-better-spec-reporter', timeout: '20s'}));
          });
          Severity: Minor
          Found in gulpfile.js and 1 other location - About 50 mins to fix
          gulpfile.js on lines 24..27

          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 51.

          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

          gulp.task('cover', function () {
              return gulp.src('./test/**/*test.js')
                  .pipe(mocha({reporter: 'mocha-lcov-reporter', timeout: '120s'}));
          });
          Severity: Minor
          Found in gulpfile.js and 1 other location - About 50 mins to fix
          gulpfile.js on lines 19..22

          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 51.

          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 signUp has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          Auth.prototype.signUp = function (phone_number, phone_code_hash, phone_code, first_name, last_name, callback) {
          Severity: Minor
          Found in lib/api/auth.js - About 45 mins to fix

            Function getHistory has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            Messages.prototype.getHistory = function (peer, offset, max_id, limit, callback) {
            Severity: Minor
            Found in lib/api/messages.js - About 35 mins to fix

              Function readHistory has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              Messages.prototype.readHistory = function (peer, max_id, offset, read_contents, callback) {
              Severity: Minor
              Found in lib/api/messages.js - About 35 mins to fix

                Function callService has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                function callService(service, emitter, channel, callback) {
                    var argsValue = Array.prototype.slice.call(Array.prototype.slice.call(arguments)[4]);
                    var callerFunc = arguments.callee.caller;
                    var eventName = service.name || service._name;
                    var callerArgNames = _retrieveArgumentNames(callerFunc);
                Severity: Minor
                Found in lib/utility.js - About 25 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Severity
                Category
                Status
                Source
                Language