enricostara/telegram-mt-node

View on GitHub
lib/net/encrypted-rpc-channel.js

Summary

Maintainability
B
4 hrs
Test Coverage

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

EncryptedRpcChannel.prototype.callMethod = function (method, callback) {
    if (!this._open) {
        callback(new Error('Channel is closed'));
        return;
    }
Severity: Minor
Found in lib/net/encrypted-rpc-channel.js - About 1 hr to fix

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

    EncryptedRpcChannel.prototype.callMethod = function (method, callback) {
        if (!this._open) {
            callback(new Error('Channel is closed'));
            return;
        }
    Severity: Minor
    Found in lib/net/encrypted-rpc-channel.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

    Function _call has 30 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    EncryptedRpcChannel.prototype._call = function (reqMsg, directCallback) {
        var self = this;
        var callback = directCallback || this._callbackMap[reqMsg.messageId];
        try {
            this.constructor.super_.prototype._call.call(this, reqMsg, function (ex, result, duration) {
    Severity: Minor
    Found in lib/net/encrypted-rpc-channel.js - About 1 hr to fix

      There are no issues that match your filters.

      Category
      Status