prey/prey-node-client

View on GitHub

Showing 551 of 551 total issues

Avoid too many return statements within this function.
Open

          if (!exports.currentTriggers) return;
Severity: Major
Found in lib/agent/actions/triggers/index.js - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                || (typeof exports.currentTriggers[triggerIndex].last_exec === 'number')) return;
    Severity: Major
    Found in lib/agent/actions/triggers/index.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

          return 1;
      Severity: Major
      Found in lib/agent/actions/triggers/index.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

              if (!checkRules(rule)) return 2;
        Severity: Major
        Found in lib/agent/actions/triggers/index.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

            return 0;
          Severity: Major
          Found in lib/agent/actions/triggers/index.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                if (!checkRepeatFormat(days, hour_from, hour_until, until)) return 4;
            Severity: Major
            Found in lib/agent/actions/triggers/index.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                } else return 2;
              Severity: Major
              Found in lib/agent/actions/triggers/index.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                        return True
                Severity: Major
                Found in lib/conf/gui/linux/prey-config3.py - About 30 mins to fix

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

                                          if (!Object.values(value)[0].persist) db_data.persist = 0;
                                          else db_data.persist = 1;
                  Severity: Minor
                  Found in lib/agent/utils/storage.js and 1 other location - About 30 mins to fix
                  lib/agent/utils/storage.js on lines 323..324

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

                  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

                  blue = NSColor.colorWithCalibratedRed_green_blue_alpha_(33/255.0, 104/255.0, 198/255.0, 1.0)
                  Severity: Minor
                  Found in lib/agent/actions/alert/darwin/flash.py and 1 other location - About 30 mins to fix
                  lib/agent/actions/alert/darwin/flash.py on lines 26..26

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

                  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 (!Object.values(value)[0].notified) db_data.notified = 0;
                                          else db_data.notified = 1;
                  Severity: Minor
                  Found in lib/agent/utils/storage.js and 1 other location - About 30 mins to fix
                  lib/agent/utils/storage.js on lines 318..319

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

                  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 3 locations. Consider refactoring.
                  Open

                    def open_privacy_url(self):
                      url = "https://www.preyproject.com/privacy"
                      res = NSWorkspace.sharedWorkspace().openURL_(NSURL.URLWithString_(url))
                  Severity: Minor
                  Found in lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py and 2 other locations - About 30 mins to fix
                  lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py on lines 456..458
                  lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py on lines 460..462

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

                  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 3 locations. Consider refactoring.
                  Open

                    def open_terms_url(self):
                      url = "https://www.preyproject.com/terms"
                      res = NSWorkspace.sharedWorkspace().openURL_(NSURL.URLWithString_(url))
                  Severity: Minor
                  Found in lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py and 2 other locations - About 30 mins to fix
                  lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py on lines 456..458
                  lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py on lines 464..466

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

                  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

                  Avoid too many return statements within this function.
                  Open

                      return True
                  Severity: Major
                  Found in lib/conf/gui/linux/prey-config.py - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                          return False
                    Severity: Major
                    Found in lib/conf/gui/linux/prey-config.py - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                          return True
                      Severity: Major
                      Found in lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py - About 30 mins to fix

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

                          def open_pass_recovery_url(self):
                            url = "https://panel.preyproject.com/forgot"
                            res = NSWorkspace.sharedWorkspace().openURL_(NSURL.URLWithString_(url))
                        Severity: Minor
                        Found in lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py and 2 other locations - About 30 mins to fix
                        lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py on lines 460..462
                        lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py on lines 464..466

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

                        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

                        Avoid too many return statements within this function.
                        Open

                              return False
                        Severity: Major
                        Found in lib/conf/gui/linux/prey-config.py - About 30 mins to fix

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

                          red = NSColor.colorWithCalibratedRed_green_blue_alpha_(178/255.0, 34/255.0, 34/255.0, 1.0)
                          Severity: Minor
                          Found in lib/agent/actions/alert/darwin/flash.py and 1 other location - About 30 mins to fix
                          lib/agent/actions/alert/darwin/flash.py on lines 25..25

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

                          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

                          Avoid too many return statements within this function.
                          Open

                                return False
                          Severity: Major
                          Found in lib/conf/gui/mac/PreyConfig.app/Contents/MacOS/prey-config.py - About 30 mins to fix
                            Severity
                            Category
                            Status
                            Source
                            Language