resource-watch/widget

View on GitHub
app/src/services/widget.service.js

Summary

Maintainability
F
4 days
Test Coverage
B
84%

File widget.service.js has 432 lines of code (exceeds 250 allowed). Consider refactoring.
Open

const logger = require('logger');
const Widget = require('models/widget.model');
const DatasetService = require('services/dataset.service');
const WidgetNotFound = require('errors/widgetNotFound.error');
const WidgetProtected = require('errors/widgetProtected.error');
Severity: Minor
Found in app/src/services/widget.service.js - About 6 hrs to fix

    Function getFilteredQuery has 64 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        static getFilteredQuery(query, ids = []) {
            const { collection, favourite } = query;
            if (!query.application && query.app) {
                query.application = query.app;
                if (favourite) {
    Severity: Major
    Found in app/src/services/widget.service.js - About 2 hrs to fix

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

          static async update(id, widget, apiKey) {
              logger.debug(`[WidgetService]: Updating widget with id:  ${id}`);
              const currentWidget = await Widget.findById(id).exec() || await Widget.findOne({
                  slug: id
              }).exec();
      Severity: Major
      Found in app/src/services/widget.service.js - About 2 hrs to fix

        Function update has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            static async update(id, widget, apiKey) {
                logger.debug(`[WidgetService]: Updating widget with id:  ${id}`);
                const currentWidget = await Widget.findById(id).exec() || await Widget.findOne({
                    slug: id
                }).exec();
        Severity: Minor
        Found in app/src/services/widget.service.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 create has 35 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            static async create(widget, datasetId, dataset, userId, apiKey) {
                logger.debug(`[WidgetService]: Creating widget with name: ${widget.name}`);
                const tempSlug = await WidgetService.getSlug(widget.name);
        
                const newWidget = await new Widget({
        Severity: Minor
        Found in app/src/services/widget.service.js - About 1 hr to fix

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

              static async clone(id, widget, userId, apiKey) {
                  logger.debug(`[WidgetService]: Getting widget with id: ${id}`);
                  logger.debug(`[WidgetService]: New user id: ${userId}`);
                  const currentWidget = await Widget.findById(id).exec() || await Widget.findOne({
                      slug: id
          Severity: Minor
          Found in app/src/services/widget.service.js - About 1 hr to fix

            Function getAll has 28 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                static async getAll(user, apiKey, query = {}, dataset = null) {
                    const sort = query.sort || '';
                    const page = query['page[number]'] ? parseInt(query['page[number]'], 10) : 1;
                    logger.debug(`pageNumber param: ${page}`);
                    const limit = query['page[size]'] ? parseInt(query['page[size]'], 10) : 10;
            Severity: Minor
            Found in app/src/services/widget.service.js - About 1 hr to fix

              Function get has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                  static async get(id, dataset, apiKey, includes = [], user = null) {
                      logger.debug(`[WidgetService]: Getting widget with id: ${id}`);
                      const widget = await Widget.findById(id).exec();
                      if (widget) {
                          if (dataset && dataset !== widget.dataset) {
              Severity: Minor
              Found in app/src/services/widget.service.js - About 55 mins 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 getFilteredQuery has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  static getFilteredQuery(query, ids = []) {
                      const { collection, favourite } = query;
                      if (!query.application && query.app) {
                          query.application = query.app;
                          if (favourite) {
              Severity: Minor
              Found in app/src/services/widget.service.js - About 35 mins 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 getAll has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  static async getAll(user, apiKey, query = {}, dataset = null) {
                      const sort = query.sort || '';
                      const page = query['page[number]'] ? parseInt(query['page[number]'], 10) : 1;
                      logger.debug(`pageNumber param: ${page}`);
                      const limit = query['page[size]'] ? parseInt(query['page[size]'], 10) : 10;
              Severity: Minor
              Found in app/src/services/widget.service.js - About 25 mins 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 getByDataset has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  static async getByDataset(resource) {
                      logger.debug(`[WidgetService] Getting widgets for datasets with ids ${resource.ids}`);
                      if (resource.app) {
                          if (resource.app.indexOf('@') >= 0) {
                              resource.app = {
              Severity: Minor
              Found in app/src/services/widget.service.js - About 25 mins 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

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

                          if (resource.app.indexOf('@') >= 0) {
                              resource.app = {
                                  $all: resource.app.split('@').map((elem) => elem.trim())
                              };
                          } else {
              Severity: Major
              Found in app/src/services/widget.service.js and 1 other location - About 4 hrs to fix
              app/src/services/widget.service.js on lines 369..377

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

              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 (query[param].indexOf('@') >= 0) {
                                          query[param] = {
                                              $all: query[param].split('@').map((elem) => elem.trim())
                                          };
                                      } else {
              Severity: Major
              Found in app/src/services/widget.service.js and 1 other location - About 4 hrs to fix
              app/src/services/widget.service.js on lines 447..455

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

              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

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

                      const currentWidget = await Widget.findById(id).exec() || await Widget.findOne({
                          slug: id
                      }).exec();
              Severity: Minor
              Found in app/src/services/widget.service.js and 1 other location - About 50 mins to fix
              app/src/services/widget.service.js on lines 38..40

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

              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

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

                      const currentWidget = await Widget.findById(id).exec() || await Widget.findOne({
                          slug: id
                      }).exec();
              Severity: Minor
              Found in app/src/services/widget.service.js and 1 other location - About 50 mins to fix
              app/src/services/widget.service.js on lines 146..148

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

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

                      const ids = query.ids ? query.ids.split(',').map((el) => el.trim()) : [];
              Severity: Major
              Found in app/src/services/widget.service.js and 3 other locations - About 40 mins to fix
              app/src/routes/api/v1/widget.router.js on lines 46..46
              app/src/routes/api/v1/widget.router.js on lines 289..289
              app/src/services/widget.service.js on lines 314..314

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

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

                      const includes = query.includes ? query.includes.split(',').map((elem) => elem.trim()) : [];
              Severity: Major
              Found in app/src/services/widget.service.js and 3 other locations - About 40 mins to fix
              app/src/routes/api/v1/widget.router.js on lines 46..46
              app/src/routes/api/v1/widget.router.js on lines 289..289
              app/src/services/widget.service.js on lines 313..313

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

              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

                      if (!currentWidget) {
                          logger.info(`[WidgetService]: Widget with id ${id} doesn't exist`);
                          throw new WidgetNotFound(`Widget with id '${id}' doesn't exist`);
                      }
              Severity: Minor
              Found in app/src/services/widget.service.js and 2 other locations - About 30 mins to fix
              app/src/services/widget.service.js on lines 149..152
              app/src/services/widget.service.js on lines 231..234

              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

                      if (!currentWidget) {
                          logger.info(`[WidgetService]: Widget with id ${id} doesn't exist`);
                          throw new WidgetNotFound(`Widget with id '${id}' doesn't exist`);
                      }
              Severity: Minor
              Found in app/src/services/widget.service.js and 2 other locations - About 30 mins to fix
              app/src/services/widget.service.js on lines 48..51
              app/src/services/widget.service.js on lines 231..234

              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

                      if (!widget) {
                          logger.error(`[WidgetService]: Widget not found with the id ${id}`);
                          throw new WidgetNotFound(`Widget not found with the id ${id}`);
                      }
              Severity: Minor
              Found in app/src/services/widget.service.js and 2 other locations - About 30 mins to fix
              app/src/services/widget.service.js on lines 48..51
              app/src/services/widget.service.js on lines 149..152

              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

              There are no issues that match your filters.

              Category
              Status