TryGhost/Ghost

View on GitHub
ghost/core/core/server/web/api/endpoints/admin/routes.js

Summary

Maintainability
D
2 days
Test Coverage

Function apiRoutes has 246 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function apiRoutes() {
    const router = express.Router('admin api');

    // alias delete with del
    router.del = router.delete;
Severity: Major
Found in ghost/core/core/server/web/api/endpoints/admin/routes.js - About 1 day to fix

    File routes.js has 255 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    const express = require('../../../../../shared/express');
    const api = require('../../../../api').endpoints;
    const {http} = require('@tryghost/api-framework');
    const apiMw = require('../../middleware');
    const mw = require('./middleware');
    Severity: Minor
    Found in ghost/core/core/server/web/api/endpoints/admin/routes.js - About 2 hrs to fix

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

          router.post('/redirects/upload',
              mw.authAdminApi,
              apiMw.upload.single('redirects'),
              apiMw.upload.validation({type: 'redirects'}),
              http(api.redirects.upload)
      Severity: Major
      Found in ghost/core/core/server/web/api/endpoints/admin/routes.js and 1 other location - About 1 hr to fix
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 279..284

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

      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

          router.put('/media/thumbnail/upload',
              mw.authAdminApi,
              apiMw.upload.single('file'),
              apiMw.upload.validation({type: 'images'}),
              http(api.media.uploadThumbnail)
      Severity: Major
      Found in ghost/core/core/server/web/api/endpoints/admin/routes.js and 1 other location - About 1 hr to fix
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 301..306

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

      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

          router.post('/members/upload',
              mw.authAdminApi,
              apiMw.upload.single('membersfile'),
              apiMw.upload.validation({type: 'members'}),
              http(api.members.importCSV)
      Severity: Major
      Found in ghost/core/core/server/web/api/endpoints/admin/routes.js and 3 other locations - About 1 hr to fix
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 81..86
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 191..196
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 217..222

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

      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

          router.post('/db',
              mw.authAdminApi,
              apiMw.upload.single('importfile'),
              apiMw.upload.validation({type: 'db'}),
              http(api.db.importContent)
      Severity: Major
      Found in ghost/core/core/server/web/api/endpoints/admin/routes.js and 3 other locations - About 1 hr to fix
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 81..86
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 138..143
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 191..196

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

      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

          router.post('/settings/routes/yaml',
              mw.authAdminApi,
              apiMw.upload.single('routes'),
              apiMw.upload.validation({type: 'routes'}),
              http(api.settings.upload)
      Severity: Major
      Found in ghost/core/core/server/web/api/endpoints/admin/routes.js and 3 other locations - About 1 hr to fix
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 138..143
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 191..196
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 217..222

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

      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

          router.post('/themes/upload',
              mw.authAdminApi,
              apiMw.upload.single('file'),
              apiMw.upload.validation({type: 'themes'}),
              http(api.themes.upload)
      Severity: Major
      Found in ghost/core/core/server/web/api/endpoints/admin/routes.js and 3 other locations - About 1 hr to fix
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 81..86
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 138..143
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 217..222

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

      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

          router.post('/session',
              shared.middleware.brute.globalBlock,
              shared.middleware.brute.userLogin,
              http(api.session.add)
          );
      Severity: Minor
      Found in ghost/core/core/server/web/api/endpoints/admin/routes.js and 1 other location - About 50 mins to fix
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 251..255

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

      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

          router.post('/authentication/password_reset',
              shared.middleware.brute.globalReset,
              shared.middleware.brute.userReset,
              http(api.authentication.generateResetToken)
          );
      Severity: Minor
      Found in ghost/core/core/server/web/api/endpoints/admin/routes.js and 1 other location - About 50 mins to fix
      ghost/core/core/server/web/api/endpoints/admin/routes.js on lines 240..244

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

      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