HR/CryptoSync

View on GitHub

Showing 598 of 598 total issues

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

    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

    File sync.js has 362 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    'use strict'
    /**
     * sync.js
     * Main cloud sync functionality
     ******************************/
    Severity: Minor
    Found in src/sync.js - About 4 hrs 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

          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

          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

            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

            Function resolveFileType has 70 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function resolveFileType (fileType) {
              switch (fileType) {
                case 'png':
                case 'jpg':
                case 'jpeg':
            Severity: Major
            Found in static/js/menubar.js - About 2 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 getAllFiles has 55 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              exports.getAllFiles = function (email) {
                // get all drive files and start downloading them
                logger.verbose(`PROMISE for retrieving all of ${email} files`)
                return new Promise(
                  function (resolve, reject) {
              Severity: Major
              Found in src/sync.js - About 2 hrs to fix

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

                  exports.init = function () {
                    return new Promise(function (resolve, reject) {
                      // Set drain (callback) handlers
                      exports.initDrains()
                  
                  
                  Severity: Major
                  Found in src/synker.js - About 2 hrs to fix

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

                    exports.decrypt = function (origpath, destpath, key, iv, authTag, callback) {
                      // encrypts any arbitrary data passed with the pass
                      // const pass = (Array.isArray(key)) ? shares2pass(key) : key
                      if (!authTag || !iv) {
                        // extract from last line of file
                    Severity: Minor
                    Found in src/crypto.js - About 1 hr to fix

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

                      exports.encrypt = function (origpath, destpath, mpkey, callback) {
                        // decrypts any arbitrary data passed with the pass
                        let pass = (Array.isArray(mpkey)) ? exports.shares2pass(mpkey) : mpkey
                        // pass = password
                        const salt = crypto.randomBytes(defaults.keyLength) // generate pseudorandom salt
                      Severity: Minor
                      Found in src/crypto.js - About 1 hr to fix

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

                            handleSubmit: function(e) {
                                e.preventDefault();
                                var masterpass = this.state.masterpass;
                                var sendMasterPass = function() {
                                    ipc.send('masterpass-submitted', masterpass);
                        Severity: Major
                        Found in src/elements/react/masterpassprompt.js and 1 other location - About 1 hr to fix
                        src/elements/react/masterpassprompt.jsx on lines 33..40

                        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

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

                            handleSubmit: function(e) {
                                e.preventDefault();
                                var masterpass = this.state.masterpass;
                                var sendMasterPass = function() {
                                    ipc.send('masterpass-submitted', masterpass);
                        Severity: Major
                        Found in src/elements/react/masterpassprompt.jsx and 1 other location - About 1 hr to fix
                        src/elements/react/masterpassprompt.js on lines 32..39

                        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 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
                            Severity
                            Category
                            Status
                            Source
                            Language