prey/prey-node-client

View on GitHub

Showing 323 of 551 total issues

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

exports.get_access_points_list = function(callback, attempt) {

  get_first_wireless_interface(function(err, wifi_device) {
    if (err || !wifi_device)
      return callback(new Error(err || 'No wireless adapter found.'));
Severity: Minor
Found in lib/agent/providers/network/linux.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 get_battery_status has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

exports.get_battery_status = function(cb) {

  var keys = 'Availability,BatteryStatus,EstimatedChargeRemaining,EstimatedRunTime';

  var get_state = function(num) {
Severity: Minor
Found in lib/agent/providers/indicators/windows.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 get_active_access_point has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

exports.get_active_access_point = function(callback) {
  // There's not enough information using the command related to the current AP, so we need to consult the AP list.
  // TODO: Optimize the AP list command usage.
  exports.get_active_access_point_mac((err, ap_mac) => {
    if (err || !ap_mac) return callback(err || new Error('No active access point found.'));
Severity: Minor
Found in lib/agent/providers/network/linux.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 toUnix has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

const toUnix = (dateData) => {
  let date = dateData;
  let newDate;
  try {
    if (/^\d+$/.test(date)) {
Severity: Minor
Found in lib/agent/actions/triggers/index.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 read has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

exports.read = function(file, cb) {

  fs.stat(file, function(err, stat){
    if (err) // not there probably
      return cb(err);
Severity: Minor
Found in lib/agent/utils/pidfile.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 preyConfReconf has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

const preyConfReconf = () => {
  getDataFromShouldPreyCFile((_err, shouldPreyCFile) => {
    if (shouldPreyCFile && shouldPreyCFile.localeCompare('true') === 0) {
      setTimeout(correctDataTimedOut, 1000 * 60 * 5);
      setInterval(correctDataTimedOut, 1000 * 60 * 30);
Severity: Minor
Found in lib/agent/index.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 LatLon has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

var LatLon = function(lat, lon, rad) {
  if (typeof(rad) == 'undefined') rad = 6371;  // earth's mean radius in km
  // only accept numbers or valid numeric strings
  this._lat = typeof(lat)=='number' ? lat : typeof(lat)=='string' && lat.trim()!='' ? +lat : NaN;
  this._lon = typeof(lon)=='number' ? lon : typeof(lon)=='string' && lon.trim()!='' ? +lon : NaN;
Severity: Minor
Found in lib/agent/triggers/location/lib/latlng.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 eachFileOrDirectory has 35 lines of code (exceeds 25 allowed). Consider refactoring.
Open

var eachFileOrDirectory = function(directory, fileHandler, completeHandler) {
  var filesToCheck = 0;
  // var checkedFiles = [];
  // var checkedStats = [];

Severity: Minor
Found in lib/agent/providers/files/finder.js - About 1 hr to fix

    Function get_active_access_point has 35 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    exports.get_active_access_point = (callback) => {
      if (release >= 6.0) {
        // eslint-disable-next-line consistent-return
        exec('netsh wlan show interfaces', { timeout: 5000 }, (error, stdout) => {
          if (error) return callback(error);
    Severity: Minor
    Found in lib/agent/providers/network/windows.js - About 1 hr to fix

      Function dataToSavePreyConf has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const dataToSavePreyConf = () => {
        let allFileContents = '';
        try {
          allFileContents = getFileContent(exports.preyConfPath);
          if (allFileContents === '') {
      Severity: Minor
      Found in lib/agent/utils/prey-configuration/preyconf.js - About 1 hr to fix

        Function verificationPreyConfiguration has 35 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        const verificationPreyConfiguration = (callback) => {
          try {
            clearIntervalDbPreyConf();
            saveDataVerify(() => {});
            dbPreyConfInterval = setIntervalDbPreyConf();
        Severity: Minor
        Found in lib/agent/utils/prey-configuration/validationpreyconf.js - About 1 hr to fix

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

          exports.parse = function (body) {
            let c;
            let matches;
          
            if ((matches = body.match(/^help\s?(\w+)?/))) c = ['help', matches[1]];
          Severity: Minor
          Found in lib/agent/commands.js - About 1 hr to fix

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

            exports.get_active_nodes_list = function(callback){
            
              var nodes = [], skip = ['WORKGROUP', '..__MSBROWSE__.'];
            
              network.get_active_network_interface(function(err, nic) {
            Severity: Minor
            Found in lib/agent/providers/lan/linux.js - About 1 hr to fix

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

              module.exports = function(cmd, args, opts, cb) {
              
                var opts = opts || {};
              
                // set detached so that when running from an already-detached process we don't
              Severity: Minor
              Found in lib/conf/utils/run_synced.js - About 1 hr to fix

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

                const preyConfReconf = () => {
                  getDataFromShouldPreyCFile((_err, shouldPreyCFile) => {
                    if (shouldPreyCFile && shouldPreyCFile.localeCompare('true') === 0) {
                      setTimeout(correctDataTimedOut, 1000 * 60 * 5);
                      setInterval(correctDataTimedOut, 1000 * 60 * 30);
                Severity: Minor
                Found in lib/agent/index.js - About 1 hr to fix

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

                  const verifyPreyConf = () => {
                    resetDefaultValues();
                    let allFileContents = '';
                    try {
                      allFileContents = getFileContent(exports.preyConfPath);
                  Severity: Minor
                  Found in lib/agent/utils/prey-configuration/preyconf.js - About 1 hr to fix

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

                    const queryTriggers = () => {
                      storage.do(
                        'all',
                        { type: 'triggers' },
                        (err, stored) => {
                    Severity: Minor
                    Found in lib/agent/control-panel/websockets/index.js - About 1 hr to fix

                      Function sendAction has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      const sendAction = (values, cb) => {
                        const { key } = values;
                        let postData;
                        if (key.localeCompare('native_location') === 0) {
                          postData = postDataNativeLocation;
                      Severity: Minor
                      Found in lib/conf/action.js - About 1 hr to fix

                        Function open has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        function open(id, password, message, cb) {
                          if (!message) message = "";
                        
                          var args = [password, message];
                          if (is_mac && common.os_release >= '11.0')
                        Severity: Minor
                        Found in lib/agent/actions/lock/index.js - About 1 hr to fix

                          Function correctPreyConfCallback has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                          const correctPreyConfCallback = (callback) => {
                            // eslint-disable-next-line consistent-return
                            getDataDb('preyconf', (err, data) => {
                              if (err || !data) {
                                // eslint-disable-next-line consistent-return
                          Severity: Minor
                          Found in lib/agent/utils/prey-configuration/validationpreyconf.js - About 1 hr to fix
                            Severity
                            Category
                            Status
                            Source
                            Language