KyperTech/matter

View on GitHub

Showing 25 of 41 total issues

File index.js has 463 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import config from './config'
import logger from './utils/logger'
import * as dom from './utils/dom'
import * as request from './utils/request'
import * as ProviderAuth from './utils/providerAuth'
Severity: Minor
Found in src/index.js - About 7 hrs to fix

    Function login has 59 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      login (loginData) {
        if (!loginData || (!isObject(loginData) && !isString(loginData))) {
          logger.error({
            description: 'Username/Email and Password are required to login',
            func: 'login', obj: 'Matter'
    Severity: Major
    Found in src/index.js - About 2 hrs to fix

      Function signup has 56 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        signup (signupData) {
          logger.debug({
            description: 'Signup called.', signupData,
            func: 'signup', obj: 'Matter'
          })
      Severity: Major
      Found in src/index.js - About 2 hrs to fix

        Function isInGroups has 41 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          isInGroups (checkGroups) {
            if (!this.isLoggedIn) {
              logger.log({
                description: 'No logged in user to check.',
                func: 'isInGroups', obj: 'Matter'
        Severity: Minor
        Found in src/index.js - About 1 hr to fix

          Function isInGroup has 38 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            isInGroup (checkGroups) {
              if (!this.isLoggedIn) {
                logger.error({
                  description: 'No logged in user to check for groups.',
                  func: 'isInGroup', obj: 'Matter'
          Severity: Minor
          Found in src/index.js - About 1 hr to fix

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

              getCurrentUser () {
                if (this.currentUser) {
                  logger.debug({
                    description: 'Current is already available. Returning user.',
                    func: 'currentUser', obj: 'Matter'
            Severity: Minor
            Found in src/index.js - About 1 hr to fix

              Function updateAccount has 34 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                updateAccount (updateData) {
                  if (!this.isLoggedIn) {
                    logger.error({
                      description: 'No current user profile to update.',
                      func: 'updateAccount', obj: 'Matter'
              Severity: Minor
              Found in src/index.js - About 1 hr to fix

                Function handleResponse has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function handleResponse (req) {
                  return new Promise((resolve, reject) => {
                    if (typeof req.end !== 'function') {
                      logger.warn({
                        description: 'req.end is not a function', func: 'handleResponse'
                Severity: Minor
                Found in src/utils/request.js - About 1 hr to fix

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

                  export function authWithServer (provider) {
                    initializeOAuth()
                    return get(`${config.serverUrl}/stateToken`).then(params => {
                      return new Promise((resolve, reject) => {
                        window.OAuth.popup(provider, { state: params.token }).done(result => {
                  Severity: Minor
                  Found in src/utils/providerAuth.js - About 1 hr to fix

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

                    export function getItem (itemName) {
                      if (data[itemName]) {
                        return data[itemName]
                      } else if (localExists()) {
                        let itemStr = window.sessionStorage.getItem(itemName)
                    Severity: Minor
                    Found in src/utils/envStorage.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 buildMessageArgs has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function buildMessageArgs (logData) {
                      let msgStr = ''
                      let msgObj = {}
                      // TODO: Attach time stamp
                      // Attach location information to the beginning of message
                    Severity: Minor
                    Found in src/utils/logger.js - About 1 hr to fix

                      Function logout has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                        logout () {
                          // TODO: Handle logging out of providers
                          if (!this.isLoggedIn) {
                            logger.warn({
                              description: 'No logged in account to log out.',
                      Severity: Minor
                      Found in src/index.js - About 1 hr to fix

                        Function authUsingProvider has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                          authUsingProvider (provider) {
                            if (!provider) {
                              logger.info({
                                description: 'Provider required to sign up.',
                                func: 'authUsingProvider', obj: 'Matter'
                        Severity: Minor
                        Found in src/index.js - About 1 hr to fix

                          Function getCookie has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                          Open

                          export function getCookie (cookieName) {
                            if (typeof window === 'undefined' || typeof document === 'undefined') {
                              return ''
                            }
                            let name = cookieName + '='
                          Severity: Minor
                          Found in src/utils/cookies.js - About 55 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 buildMessageArgs has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function buildMessageArgs (logData) {
                            let msgStr = ''
                            let msgObj = {}
                            // TODO: Attach time stamp
                            // Attach location information to the beginning of message
                          Severity: Minor
                          Found in src/utils/logger.js - About 55 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

                          Consider simplifying this complex logical expression.
                          Open

                              if (config.logLevel === 'trace' || config.logLevel === 'debug' || config.logLevel === 'info' || config.logLevel === 'warn' || config.logLevel === 'error' || config.logLevel === 'fatal') {
                                runConsoleMethod('error', msgArgs)
                              }
                          Severity: Major
                          Found in src/utils/logger.js - About 40 mins to fix

                            Function isInGroups has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                            Open

                              isInGroups (checkGroups) {
                                if (!this.isLoggedIn) {
                                  logger.log({
                                    description: 'No logged in user to check.',
                                    func: 'isInGroups', obj: 'Matter'
                            Severity: Minor
                            Found in src/index.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

                            Avoid too many return statements within this function.
                            Open

                                return request.put(`${this.endpoint}/login`, loginData)
                                .then(response => {
                                  if (response.data && response.data.status && response.data.status === 409) {
                                    logger.error({
                                      description: 'User not found.', response,
                            Severity: Major
                            Found in src/index.js - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                    return this.isInGroup(groupsArray[0])
                              Severity: Major
                              Found in src/index.js - About 30 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                      return this.isInGroups(checkGroups)
                                Severity: Major
                                Found in src/index.js - About 30 mins to fix
                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language