Bnei-Baruch/mdb

View on GitHub
importer/kmedia/kmodels/labels.go

Summary

Maintainability
F
6 days
Test Coverage

File labels.go has 904 lines of code (exceeds 500 allowed). Consider refactoring.
Open

// Code generated by SQLBoiler (https://github.com/volatiletech/sqlboiler). DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.

package kmodels

Severity: Major
Found in importer/kmedia/kmodels/labels.go - About 1 day to fix

    Label has 34 methods (exceeds 20 allowed). Consider refactoring.
    Open

    type Label struct {
        ID           int         `boil:"id" json:"id" toml:"id" yaml:"id"`
        DictionaryID null.Int    `boil:"dictionary_id" json:"dictionary_id,omitempty" toml:"dictionary_id" yaml:"dictionary_id,omitempty"`
        Suid         null.String `boil:"suid" json:"suid,omitempty" toml:"suid" yaml:"suid,omitempty"`
        CreatedAt    time.Time   `boil:"created_at" json:"created_at" toml:"created_at" yaml:"created_at"`
    Severity: Minor
    Found in importer/kmedia/kmodels/labels.go - About 4 hrs to fix

      Method Label.Upsert has 97 lines of code (exceeds 50 allowed). Consider refactoring.
      Open

      func (o *Label) Upsert(exec boil.Executor, updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) error {
          if o == nil {
              return errors.New("kmodels: no labels provided for upsert")
          }
          currTime := time.Now().In(boil.GetLocation())
      Severity: Major
      Found in importer/kmedia/kmodels/labels.go - About 2 hrs to fix

        Method Label.Insert has 65 lines of code (exceeds 50 allowed). Consider refactoring.
        Open

        func (o *Label) Insert(exec boil.Executor, whitelist ...string) error {
            if o == nil {
                return errors.New("kmodels: no labels provided for insertion")
            }
        
        
        Severity: Minor
        Found in importer/kmedia/kmodels/labels.go - About 1 hr to fix

          Method Label.Upsert has a Cognitive Complexity of 28 (exceeds 20 allowed). Consider refactoring.
          Open

          func (o *Label) Upsert(exec boil.Executor, updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) error {
              if o == nil {
                  return errors.New("kmodels: no labels provided for upsert")
              }
              currTime := time.Now().In(boil.GetLocation())
          Severity: Minor
          Found in importer/kmedia/kmodels/labels.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

          Method labelL.LoadContainers has 64 lines of code (exceeds 50 allowed). Consider refactoring.
          Open

          func (labelL) LoadContainers(e boil.Executor, singular bool, maybeLabel interface{}) error {
              var slice []*Label
              var object *Label
          
              count := 1
          Severity: Minor
          Found in importer/kmedia/kmodels/labels.go - About 1 hr to fix

            Method labelL.LoadContainers has a Cognitive Complexity of 24 (exceeds 20 allowed). Consider refactoring.
            Open

            func (labelL) LoadContainers(e boil.Executor, singular bool, maybeLabel interface{}) error {
                var slice []*Label
                var object *Label
            
                count := 1
            Severity: Minor
            Found in importer/kmedia/kmodels/labels.go - 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

            Method Label.Upsert has 6 return statements (exceeds 4 allowed).
            Open

            func (o *Label) Upsert(exec boil.Executor, updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) error {
                if o == nil {
                    return errors.New("kmodels: no labels provided for upsert")
                }
                currTime := time.Now().In(boil.GetLocation())
            Severity: Major
            Found in importer/kmedia/kmodels/labels.go - About 40 mins to fix

              Method Label.Upsert has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              func (o *Label) Upsert(exec boil.Executor, updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) error {
              Severity: Minor
              Found in importer/kmedia/kmodels/labels.go - About 35 mins to fix

                Method Label.UpsertP has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                func (o *Label) UpsertP(exec boil.Executor, updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) {
                Severity: Minor
                Found in importer/kmedia/kmodels/labels.go - About 35 mins to fix

                  Method labelL.LoadContainers has 5 return statements (exceeds 4 allowed).
                  Open

                  func (labelL) LoadContainers(e boil.Executor, singular bool, maybeLabel interface{}) error {
                      var slice []*Label
                      var object *Label
                  
                      count := 1
                  Severity: Major
                  Found in importer/kmedia/kmodels/labels.go - About 35 mins to fix

                    Method Label.Insert has 5 return statements (exceeds 4 allowed).
                    Open

                    func (o *Label) Insert(exec boil.Executor, whitelist ...string) error {
                        if o == nil {
                            return errors.New("kmodels: no labels provided for insertion")
                        }
                    
                    
                    Severity: Major
                    Found in importer/kmedia/kmodels/labels.go - About 35 mins to fix

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

                      func (labelL) LoadContainers(e boil.Executor, singular bool, maybeLabel interface{}) error {
                          var slice []*Label
                          var object *Label
                      
                          count := 1
                      Severity: Major
                      Found in importer/kmedia/kmodels/labels.go and 2 other locations - About 1 day to fix
                      importer/kmedia/kmodels/catalogs.go on lines 719..796
                      importer/kmedia/kmodels/file_assets.go on lines 552..629

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

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

                      func (o *Label) RemoveContainers(exec boil.Executor, related ...*Container) error {
                          var err error
                          query := fmt.Sprintf(
                              "delete from \"containers_labels\" where \"label_id\" = $1 and \"container_id\" in (%s)",
                              strmangle.Placeholders(dialect.IndexPlaceholders, len(related), 2, 1),
                      Severity: Major
                      Found in importer/kmedia/kmodels/labels.go and 7 other locations - About 5 hrs to fix
                      importer/kmedia/kmodels/catalogs.go on lines 1550..1591
                      importer/kmedia/kmodels/catalogs.go on lines 1786..1827
                      importer/kmedia/kmodels/container_description_patterns.go on lines 480..521
                      importer/kmedia/kmodels/containers.go on lines 1510..1551
                      importer/kmedia/kmodels/containers.go on lines 1830..1871
                      importer/kmedia/kmodels/containers.go on lines 2066..2107
                      importer/kmedia/kmodels/file_assets.go on lines 1280..1321

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

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

                      func (o *Label) AddContainers(exec boil.Executor, insert bool, related ...*Container) error {
                          var err error
                          for _, rel := range related {
                              if insert {
                                  if err = rel.Insert(exec); err != nil {
                      Severity: Major
                      Found in importer/kmedia/kmodels/labels.go and 7 other locations - About 5 hrs to fix
                      importer/kmedia/kmodels/catalogs.go on lines 1412..1454
                      importer/kmedia/kmodels/catalogs.go on lines 1648..1690
                      importer/kmedia/kmodels/container_description_patterns.go on lines 342..384
                      importer/kmedia/kmodels/containers.go on lines 1372..1414
                      importer/kmedia/kmodels/containers.go on lines 1692..1734
                      importer/kmedia/kmodels/containers.go on lines 1928..1970
                      importer/kmedia/kmodels/file_assets.go on lines 1142..1184

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

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

                      func (o *Label) SetContainers(exec boil.Executor, insert bool, related ...*Container) error {
                          query := "delete from \"containers_labels\" where \"label_id\" = $1"
                          values := []interface{}{o.ID}
                          if boil.DebugMode {
                              fmt.Fprintln(boil.DebugWriter, query)
                      Severity: Major
                      Found in importer/kmedia/kmodels/labels.go and 7 other locations - About 2 hrs to fix
                      importer/kmedia/kmodels/catalogs.go on lines 1499..1517
                      importer/kmedia/kmodels/catalogs.go on lines 1735..1753
                      importer/kmedia/kmodels/container_description_patterns.go on lines 429..447
                      importer/kmedia/kmodels/containers.go on lines 1459..1477
                      importer/kmedia/kmodels/containers.go on lines 1779..1797
                      importer/kmedia/kmodels/containers.go on lines 2015..2033
                      importer/kmedia/kmodels/file_assets.go on lines 1229..1247

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

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

                      func (o *Label) Containers(exec boil.Executor, mods ...qm.QueryMod) containerQuery {
                          var queryMods []qm.QueryMod
                          if len(mods) != 0 {
                              queryMods = append(queryMods, mods...)
                          }
                      Severity: Major
                      Found in importer/kmedia/kmodels/labels.go and 7 other locations - About 2 hrs to fix
                      importer/kmedia/kmodels/catalogs.go on lines 318..337
                      importer/kmedia/kmodels/catalogs.go on lines 345..364
                      importer/kmedia/kmodels/container_description_patterns.go on lines 205..224
                      importer/kmedia/kmodels/containers.go on lines 307..326
                      importer/kmedia/kmodels/containers.go on lines 360..379
                      importer/kmedia/kmodels/containers.go on lines 387..406
                      importer/kmedia/kmodels/file_assets.go on lines 293..312

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

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

                      func removeContainersFromLabelsSlice(o *Label, related []*Container) {
                          for _, rel := range related {
                              if rel.R == nil {
                                  continue
                              }
                      Severity: Major
                      Found in importer/kmedia/kmodels/labels.go and 7 other locations - About 2 hrs to fix
                      importer/kmedia/kmodels/catalogs.go on lines 1593..1611
                      importer/kmedia/kmodels/catalogs.go on lines 1829..1847
                      importer/kmedia/kmodels/container_description_patterns.go on lines 523..541
                      importer/kmedia/kmodels/containers.go on lines 1553..1571
                      importer/kmedia/kmodels/containers.go on lines 1873..1891
                      importer/kmedia/kmodels/containers.go on lines 2109..2127
                      importer/kmedia/kmodels/file_assets.go on lines 1323..1341

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

                      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