devrelcollective/xela

View on GitHub

Showing 62 of 62 total issues

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

package actions

import (
    "github.com/devrelcollective/xela/models"
    "github.com/gobuffalo/buffalo"
Severity: Major
Found in actions/abstracts.go and 1 other location - About 2 days to fix
actions/links.go on lines 1..214

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

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

package actions

import (
    "github.com/devrelcollective/xela/models"
    "github.com/gobuffalo/buffalo"
Severity: Major
Found in actions/links.go and 1 other location - About 2 days to fix
actions/abstracts.go on lines 1..214

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

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

func (d *Dutonian) AfterCreate(tx *pop.Connection) error {
    if !d.Photo.Valid() {
        return nil
    }

Severity: Major
Found in models/dutonian.go and 1 other location - About 4 hrs to fix
models/dutonian.go on lines 94..122

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

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

func (d *Dutonian) AfterUpdate(tx *pop.Connection) error {
    if !d.Photo.Valid() {
        return nil
    }

Severity: Major
Found in models/dutonian.go and 1 other location - About 4 hrs to fix
models/dutonian.go on lines 64..92

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

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

func (e *Event) AfterCreate(tx *pop.Connection) error {
    if !e.Logo.Valid() {
        return nil
    }

Severity: Major
Found in models/event.go and 1 other location - About 4 hrs to fix
models/event.go on lines 102..130

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

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

func (e *Event) AfterUpdate(tx *pop.Connection) error {
    if !e.Logo.Valid() {
        return nil
    }

Severity: Major
Found in models/event.go and 1 other location - About 4 hrs to fix
models/event.go on lines 71..100

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

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 init has 83 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func init() {
    r = render.New(render.Options{
        // HTML layout to be used for all HTML requests:
        HTMLLayout: "application.html",

Severity: Major
Found in actions/render.go - About 2 hrs to fix

    Function init has 18 return statements (exceeds 4 allowed).
    Open

    func init() {
        r = render.New(render.Options{
            // HTML layout to be used for all HTML requests:
            HTMLLayout: "application.html",
    
    
    Severity: Major
    Found in actions/render.go - About 1 hr to fix

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

                  "getAbstractName": func(abstractID uuid.UUID, c plush.HelperContext) (string, error) {
                      // Get the DB connection from the context
                      tx, ok := c.Value("tx").(*pop.Connection)
                      if !ok {
                          return "", errors.WithStack(errors.New("no transaction found"))
      Severity: Major
      Found in actions/render.go and 1 other location - About 1 hr to fix
      actions/render.go on lines 92..107

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

      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

                  "getEventName": func(eventID uuid.UUID, c plush.HelperContext) (string, error) {
                      // Get the DB connection from the context
                      tx, ok := c.Value("tx").(*pop.Connection)
                      if !ok {
                          return "", errors.WithStack(errors.New("no transaction found"))
      Severity: Major
      Found in actions/render.go and 1 other location - About 1 hr to fix
      actions/render.go on lines 75..91

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

      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 init has a Cognitive Complexity of 27 (exceeds 20 allowed). Consider refactoring.
      Open

      func init() {
          r = render.New(render.Options{
              // HTML layout to be used for all HTML requests:
              HTMLLayout: "application.html",
      
      
      Severity: Minor
      Found in actions/render.go - 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 moduleOptions has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        moduleOptions: function() {
          return {
            rules: [
              {
                test: /\.css$/,
      Severity: Minor
      Found in webpack.config.js - About 1 hr to fix

        Function buildConfig has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          buildConfig: function(){
            const env = process.env.NODE_ENV || "development";
        
            var config = {
              mode: env,
        Severity: Minor
        Found in webpack.config.js - About 1 hr to fix

          Function AuthCallback has 7 return statements (exceeds 4 allowed).
          Open

          func AuthCallback(c buffalo.Context) error {
              gu, err := gothic.CompleteUserAuth(c.Response(), c.Request())
              if err != nil {
                  return c.Error(401, err)
              }
          Severity: Major
          Found in actions/auth.go - About 45 mins to fix

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

            func (a *Abstract) Validate(tx *pop.Connection) (*validate.Errors, error) {
                return validate.Validate(
                    &validators.StringIsPresent{Field: a.Title, Name: "Title"},
                    &validators.StringIsPresent{Field: a.Abstract, Name: "Abstract"},
                ), nil
            Severity: Major
            Found in models/abstract.go and 2 other locations - About 40 mins to fix
            models/dutonian.go on lines 126..131
            models/link.go on lines 42..47

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

            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

            func (l *Link) Validate(tx *pop.Connection) (*validate.Errors, error) {
                return validate.Validate(
                    &validators.StringIsPresent{Field: l.Name, Name: "Name"},
                    &validators.StringIsPresent{Field: l.Url, Name: "Url"},
                ), nil
            Severity: Major
            Found in models/link.go and 2 other locations - About 40 mins to fix
            models/abstract.go on lines 54..59
            models/dutonian.go on lines 126..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 111.

            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

            func (d *Dutonian) Validate(tx *pop.Connection) (*validate.Errors, error) {
                return validate.Validate(
                    &validators.StringIsPresent{Field: d.Firstname, Name: "Firstname"},
                    &validators.StringIsPresent{Field: d.Lastname, Name: "Lastname"},
                ), nil
            Severity: Major
            Found in models/dutonian.go and 2 other locations - About 40 mins to fix
            models/abstract.go on lines 54..59
            models/link.go on lines 42..47

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

            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

            Method DutoniansResource.Update has 6 return statements (exceeds 4 allowed).
            Open

            func (v DutoniansResource) Update(c buffalo.Context) error {
                // Get the DB connection from the context
                tx, ok := c.Value("tx").(*pop.Connection)
                if !ok {
                    return errors.WithStack(errors.New("no transaction found"))
            Severity: Major
            Found in actions/dutonians.go - About 40 mins to fix

              Method ProposalsResource.Update has 6 return statements (exceeds 4 allowed).
              Open

              func (v ProposalsResource) Update(c buffalo.Context) error {
                  // Get the DB connection from the context
                  tx, ok := c.Value("tx").(*pop.Connection)
                  if !ok {
                      return errors.WithStack(errors.New("no transaction found"))
              Severity: Major
              Found in actions/proposals.go - About 40 mins to fix

                Method ProposalsResource.Edit has 6 return statements (exceeds 4 allowed).
                Open

                func (v ProposalsResource) Edit(c buffalo.Context) error {
                    // Get the DB connection from the context
                    //     tx, ok := c.Value("tx").(*pop.Connection)
                    //     if !ok {
                    //         return errors.WithStack(errors.New("no transaction found"))
                Severity: Major
                Found in actions/proposals.go - About 40 mins to fix
                  Severity
                  Category
                  Status
                  Source
                  Language