HR/CryptoSync

View on GitHub
index.js

Summary

Maintainability
F
6 days
Test Coverage

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

'use strict'
const electron = require('electron')
const app = electron.app
const BrowserWindow = electron.BrowserWindow
const ipc = electron.ipcMain
Severity: Major
Found in index.js - About 1 day to fix

    Function Setup has 116 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function Setup (callback) {
      let win = new BrowserWindow({
        width: 640,
        height: 420,
        center: true,
    Severity: Major
    Found in index.js - About 4 hrs to fix

      Function Cryptobar has 90 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function Cryptobar (callback) {
        function click (e, bounds) {
          if (e.altKey || e.shiftKey || e.ctrlKey || e.metaKey) {
            return hideWindow()
          }
      Severity: Major
      Found in index.js - About 3 hrs to fix

        Function MasterPassPrompt has 75 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        exports.MasterPassPrompt = function (reset, callback) {
          let tries = 0
          let gotMP = false
          let error = null
          let win = new BrowserWindow({
        Severity: Major
        Found in index.js - About 3 hrs to fix

          Function Cryptobar has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
          Open

          function Cryptobar (callback) {
            function click (e, bounds) {
              if (e.altKey || e.shiftKey || e.ctrlKey || e.metaKey) {
                return hideWindow()
              }
          Severity: Minor
          Found in index.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 addAccountPrompt has 54 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function addAccountPrompt (callback) {
            let win = new BrowserWindow({
              width: 580,
              height: 420,
              center: true,
          Severity: Major
          Found in index.js - About 2 hrs to fix

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

            function ErrorPrompt (err, callback) {
              let win = new BrowserWindow({
                width: 240,
                height: 120,
                center: true,
            Severity: Minor
            Found in index.js - About 1 hr to fix

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

              function Settings (callback) {
                let win = new BrowserWindow({
                  width: 800,
                  height: 600,
                  center: true
              Severity: Minor
              Found in index.js - About 1 hr to fix

                TODO found
                Open

                // TODO: replace with dialog.showErrorBox(title, content) for native dialog?
                Severity: Minor
                Found in index.js by fixme

                TODO found
                Open

                  // TODO: close app after pass has been reset and vault has been re-encrypted
                Severity: Minor
                Found in index.js by fixme

                TODO found
                Open

                  // TODO: Change icon based on mode (dark || light) on OSX and set default to light
                Severity: Minor
                Found in index.js by fixme

                TODO found
                Open

                  // TODO: IMPLEMENT ACCOUNT REMOVAL ROUTINE
                Severity: Minor
                Found in index.js by fixme

                TODO found
                Open

                    // TODO: global.accounts[Object.keys(global.accounts)[0]].oauth.oauth2Client.credentials = global.gAuth.credentials
                Severity: Minor
                Found in index.js by fixme

                TODO found
                Open

                        // TODO: test this
                Severity: Minor
                Found in index.js by fixme

                TODO found
                Open

                        // TODO: start sync daemon
                Severity: Minor
                Found in index.js by fixme

                TODO found
                Open

                  // TODO: decide whether to do setup is all accounts removed
                Severity: Minor
                Found in index.js by fixme

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

                  ipc.on('initAuth', function (event, type) {
                    logger.verbose('IPCMAIN: initAuth emitted. Creating Auth...')
                    global.gAuth = new OAuth(type)
                    global.mdb.onlyGetValue('gdrive-token').then((token) => {
                      global.gAuth.authorize(token, function (authUrl) {
                Severity: Major
                Found in index.js and 1 other location - About 7 hrs to fix
                index.js on lines 372..388

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

                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

                  ipc.on('initAuth', function (event, type) {
                    logger.verbose('IPCMAIN: initAuth emitted. Creating Auth...')
                    global.gAuth = new OAuth(type)
                    global.mdb.onlyGetValue('gdrive-token').then((token) => {
                      global.gAuth.authorize(token, function (authUrl) {
                Severity: Major
                Found in index.js and 1 other location - About 7 hrs to fix
                index.js on lines 240..256

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

                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

                  sync.event.on('crypted', (file) => {
                    logger.verbose(`PUT EVENT RECEIVED for ${file.name}`)
                    webContents.send('synced', {
                      name: file.name,
                      fileType: file.fullFileExtension,
                Severity: Major
                Found in index.js and 1 other location - About 3 hrs to fix
                index.js on lines 154..163

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

                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

                  sync.event.on('put', (file) => {
                    logger.verbose(`PUT EVENT RECEIVED for ${file.name}`)
                    webContents.send('synced', {
                      name: file.name,
                      fileType: file.fullFileExtension,
                Severity: Major
                Found in index.js and 1 other location - About 3 hrs to fix
                index.js on lines 165..174

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

                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

                There are no issues that match your filters.

                Category
                Status