private-dreamnet/dreamtime

View on GitHub

Showing 149 of 149 total issues

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

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

                      try {
                        fs.copySync(this.payload.folders.cli, newLocation)
                        fs.removeSync(this.payload.folders.cli)
                      } catch (err) {
                        logger.warn(err)
            Severity: Major
            Found in src/electron/src/modules/settings.js and 1 other location - About 1 hr to fix
            src/electron/src/modules/settings.js on lines 575..580

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

            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

                      try {
                        fs.copySync(this.payload.folders.models, newLocation)
                        fs.removeSync(this.payload.folders.models)
                      } catch (err) {
                        logger.warn(err)
            Severity: Major
            Found in src/electron/src/modules/settings.js and 1 other location - About 1 hr to fix
            src/electron/src/modules/settings.js on lines 589..594

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

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

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

                  async init() {
                    if (dreamtrack.enabled) {
                      this.data = dreamtrack.get('projects.dreampower', this.data)
                    }
                
                
                Severity: Major
                Found in src/modules/projects/dreampower.js and 1 other location - About 1 hr to fix
                src/modules/projects/checkpoints.js on lines 56..62

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

                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

                  async init() {
                    if (dreamtrack.enabled) {
                      this.data = dreamtrack.get('projects.checkpoints', this.data)
                    }
                
                
                Severity: Major
                Found in src/modules/projects/checkpoints.js and 1 other location - About 1 hr to fix
                src/modules/projects/dreampower.js on lines 46..52

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

                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

                    if (process.platform !== 'win32') {
                      try {
                        fs.chmodSync(getPowerPath('dreampower'), 0o775)
                      } catch (error) {
                        this.consola.warn(error)
                Severity: Major
                Found in src/modules/updater/dreampower.js and 1 other location - About 1 hr to fix
                src/modules/updater/waifu.js on lines 121..127

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

                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

                    if (process.platform !== 'win32') {
                      try {
                        fs.chmodSync(getWaifuPath('waifu2x'), 0o775)
                      } catch (error) {
                        this.consola.warn(error)
                Severity: Major
                Found in src/modules/updater/waifu.js and 1 other location - About 1 hr to fix
                src/modules/updater/dreampower.js on lines 125..131

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

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