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
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) {
- Read upRead up
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
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) {
- Read upRead up
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
File sync.js
has 362 lines of code (exceeds 250 allowed). Consider refactoring. Open
'use strict'
/**
* sync.js
* Main cloud sync functionality
******************************/
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,
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()
}
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,
- Read upRead up
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
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({
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,
- Read upRead up
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
Function resolveFileType
has 70 lines of code (exceeds 25 allowed). Consider refactoring. Open
function resolveFileType (fileType) {
switch (fileType) {
case 'png':
case 'jpg':
case 'jpeg':
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()
}
- Read upRead up
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) {
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,
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()
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
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
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);
- Read upRead up
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
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);
- Read upRead up
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
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,
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