westtrade/cleantalk

View on GitHub

Showing 13 of 17 total issues

Function constructor has 74 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    constructor({data, options, aliases, request} = {}) {
        if (request) {
            assert(request instanceof IncomingMessage, 'Request argument must be instance of http.ClientRequest.');
        }

Severity: Major
Found in src/CleantalkRequest.js - About 2 hrs to fix

    Function server has 55 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const server = http.createServer((request, res) => {
        const {pathname, query} = url.parse(request.url);
        log('PATH', pathname);
        switch (true) {
    
    
    Severity: Major
    Found in examples/http/index.js - About 2 hrs to fix

      Function constructor has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          constructor({data, options, aliases, request} = {}) {
              if (request) {
                  assert(request instanceof IncomingMessage, 'Request argument must be instance of http.ClientRequest.');
              }
      
      
      Severity: Minor
      Found in src/CleantalkRequest.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 requestMethod has 43 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          [requestMethod] (requestUrl, data) {
              return new Promise((resolve, reject) => {
      
                  const info = url.parse(requestUrl);
      
      
      Severity: Minor
      Found in src/Cleantalk.js - About 1 hr to fix

        Function constructor has 37 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            constructor(responseData = {}) {
        
                assert.equal(typeof responseData, 'object', 'Argument responseData must be an object');
        
                let {
        Severity: Minor
        Found in src/CleantalkResponse.js - About 1 hr to fix

          Function checkMessage has 36 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              checkMessage({sender_email, sender_ip, js_on, submit_time, all_headers, sender_nickname, message, sender_info, post_info, stoplist_check} = {}) {
          
                  assert(sender_email, 'Sender email argument (sender_email) is required.');
                  assert.equal(typeof sender_email, 'string', 'Sender email argument must be a string.');
          
          
          Severity: Minor
          Found in src/Cleantalk.js - About 1 hr to fix

            Function parseBody has 32 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                [parseBody](request, bodyType = QUERYSTRING_BODY_TYPE) {
            
                    return new Promise((resolve, reject) => {
            
                        if (request.method === 'GET') {
            Severity: Minor
            Found in src/CleantalkRequest.js - About 1 hr to fix

              Function checkNewUser has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  checkNewUser({sender_email, sender_ip, js_on, submit_time, all_headers, sender_nickname, sender_info, tz, phone} = {}) {
              
                      assert(sender_email, 'Sender email argument (sender_email) is required.');
                      assert.equal(typeof sender_email, 'string', 'Sender email argument must be a string.');
              
              
              Severity: Minor
              Found in src/Cleantalk.js - About 1 hr to fix

                Function formTemplate has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                Open

                const formTemplate = ({ errors, data }, auth_key) => {
                    const disabledBecauseNoKey = auth_key ? '' : 'disabled';
                
                    return `<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8">
                <title>Cleantalk demo - just try it!</title>
                Severity: Minor
                Found in examples/common/formTemplate.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 checkMessage has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    checkMessage({sender_email, sender_ip, js_on, submit_time, all_headers, sender_nickname, message, sender_info, post_info, stoplist_check} = {}) {
                
                        assert(sender_email, 'Sender email argument (sender_email) is required.');
                        assert.equal(typeof sender_email, 'string', 'Sender email argument must be a string.');
                
                
                Severity: Minor
                Found in src/Cleantalk.js - About 35 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

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

                    checkNewUser({sender_email, sender_ip, js_on, submit_time, all_headers, sender_nickname, sender_info, tz, phone} = {}) {
                
                        assert(sender_email, 'Sender email argument (sender_email) is required.');
                        assert.equal(typeof sender_email, 'string', 'Sender email argument must be a string.');
                
                
                Severity: Minor
                Found in src/Cleantalk.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

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

                const server = http.createServer((request, res) => {
                    const {pathname, query} = url.parse(request.url);
                    log('PATH', pathname);
                    switch (true) {
                
                
                Severity: Minor
                Found in examples/http/index.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

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

                const cleantalkMiddleware = (auth_key, type, aliases, options) =>  {
                
                    options = options || {};
                    const {server_url, language} = options;
                
                
                Severity: Minor
                Found in src/middlewares/express.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