private-dreamnet/dreamtime

View on GitHub

Showing 75 of 149 total issues

Function download has 60 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function download(url, options = {}) {
  const events = new EventEmitter()

  let cancelled = false

Severity: Major
Found in src/electron/src/modules/tools/fs.js - About 2 hrs to fix

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

      static async setup() {
        if (process.platform === 'darwin') {
          if (!process.env.BUILD_PORTABLE && !process.env.DISABLE_ENFORCE_APP_LOCATION) {
            const { enforceMacOSAppLocation } = require('electron-util')
    
    
    Severity: Major
    Found in src/electron/src/index.js - About 2 hrs to fix

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

      // DreamTime.
      // Copyright (C) DreamNet. All rights reserved.
      //
      // This program is free software: you can redistribute it and/or modify
      // it under the terms of the GNU General Public License 3.0 as published by
      Severity: Minor
      Found in src/electron/src/index.js - About 2 hrs to fix

        Function createWindow has 52 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          static createWindow() {
            logger.info('Creating window...')
        
            const options = {
              width: settings.get('app.window.width', 1200),
        Severity: Major
        Found in src/electron/src/index.js - About 2 hrs to fix

          Function getVersion has 49 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          export const getVersion = () => new Promise((resolve) => {
            if (version) {
              resolve({
                status: true,
                version,
          Severity: Minor
          Found in src/electron/src/modules/tools/waifu.js - About 1 hr to fix

            Function downloadFromTorrent has 48 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            export function downloadFromTorrent(magnetURI, options, events, writeStream) {
              let client
              let torrent
            
              // Error handler
            Severity: Minor
            Found in src/electron/src/modules/tools/fs.js - About 1 hr to fix

              Function setupPreferences has 47 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                setupPreferences() {
                  this.preferences = cloneDeep(this.photo.preferences)
              
                  const { mode } = this.preferences
              
              
              Severity: Minor
              Found in src/modules/nudify/photo-run.js - About 1 hr to fix

                Function _downloadFrom has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  _downloadFrom(url) {
                    this.consola.info(`Downloading update from: ${url}`)
                
                    if (this.downloadMethod === DMETHOD.IPFS) {
                      consola.track('DOWNLOAD_IPFS', url)
                Severity: Minor
                Found in src/modules/updater/base.js - About 1 hr to fix

                  Function report has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    async report() {
                      if (this.reported) {
                        return this
                      }
                  
                  
                  Severity: Minor
                  Found in src/modules/consola/log.js - About 1 hr to fix

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

                      static async boot() {
                        const logDir = getPath('userData', 'logs', new Date().toJSON().slice(0, 10))
                        fs.ensureDirSync(logDir)
                    
                        // logger setup
                    Severity: Minor
                    Found in src/electron/src/index.js - About 1 hr to fix

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

                        async observeInternal(device, ms, events) {
                          let stop = false
                          events.on('stop', () => { stop = true })
                      
                          let previous = {}
                      Severity: Minor
                      Found in src/electron/src/modules/tools/system.js - About 1 hr to fix

                        Function makeServiceProxy has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                        Open

                        export function makeServiceProxy(item) {
                          return new Proxy(item, {
                            get: (obj, prop) => {
                              if (prop in obj) {
                                return obj[prop]
                        Severity: Minor
                        Found in src/electron/src/modules/services/base.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 scaleMode has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                        Open

                          get scaleMode() {
                            const { mode } = this.preferences
                            const { scaleMode } = this.preferences.advanced
                        
                            if (mode === PMODE.MINIMAL) {
                        Severity: Minor
                        Found in src/modules/nudify/photo.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 start has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                        Open

                          async start() {
                            if (this.mask === STEP.PADDING) {
                              await this.runColorPaddingRemoval()
                            } else if (this.mask === STEP.SCALE) {
                              await this.runUpscale()
                        Severity: Minor
                        Found in src/modules/nudify/photo-run.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 downloadFromHttp has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        export async function downloadFromHttp(url, options, events, writeStream) {
                          let readStream
                          let headers
                        
                          try {
                        Severity: Minor
                        Found in src/electron/src/modules/tools/fs.js - About 1 hr to fix

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

                            setupQueue() {
                              this.queue = new Queue(this.worker)
                          
                              this.queue.on('finished', () => {
                                if (this.runs.length === 0) {
                          Severity: Minor
                          Found in src/modules/nudify/photo.js - About 1 hr to fix

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

                              save(defaultPath) {
                                if (!fs.existsSync(this.path)) {
                                  throw new Warning(
                                    'The photo no longer exists.',
                                    'Could not save the photo because it has been deleted, this could be caused due to cleaning or antivirus programs.',
                            Severity: Minor
                            Found in src/modules/file.js - About 1 hr to fix

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

                              async function getMetadata(filepath) {
                                const exists = existsSync(filepath)
                              
                                const workload = [
                                  Promise.resolve(mime.lookup(filepath)),
                              Severity: Minor
                              Found in src/workers/fs/worker.js - About 1 hr to fix

                                Function run has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                export async function run(args, events) {
                                  const process = exec(args)
                                  let cancelled = false
                                
                                  process.on('error', (error) => {
                                Severity: Minor
                                Found in src/electron/src/modules/tools/waifu.js - About 1 hr to fix

                                  Function canShowGenerate has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                    get canShowGenerate() {
                                      const { scaleMode, useColorPaddingRemoval } = this.photo
                                  
                                      switch (this.id) {
                                        case STEP.CORRECT:
                                  Severity: Minor
                                  Found in src/modules/nudify/photo-mask.js - About 1 hr to fix
                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language