Showing 93 of 93 total issues

Avoid deeply nested control flow statements.
Open

        } else if _, ok := field.Addr().Interface().(*time.Time); ok {
            meta.Setter = commonSetter(func(field reflect.Value, metaValue *MetaValue, context *qor.Context, record interface{}) {
                if str := utils.ToString(metaValue.Value); str != "" {
                    if newTime, err := utils.ParseTime(str, context); err == nil {
                        field.Set(reflect.ValueOf(newTime))
Severity: Major
Found in resource/meta.go - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                        if metaor != nil {
                            metaors = metaor.GetMetas()
                        }
    Severity: Major
    Found in resource/schema.go - About 45 mins to fix

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

      func ParamsMatch(source string, pth string) (url.Values, string, bool) {
          var (
              i, j int
              p    = make(url.Values)
              ext  = path.Ext(pth)
      Severity: Major
      Found in utils/params.go - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                if err := scanner.Scan(utils.ToString(metaValue.Value)); err != nil {
                                    context.AddError(err)
                                    return
                                }
        Severity: Major
        Found in resource/meta.go - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                              if children, err := ConvertFormToMetaValues(request, metaors, prefix+name+"."); err == nil {
                                  nestedName := prefix + matches[2]
                                  if _, ok := nestedStructIndex[nestedName]; ok {
                                      nestedStructIndex[nestedName]++
                                  } else {
          Severity: Major
          Found in resource/schema.go - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                            } else if source[len(source)-1] == ']' {
                                index = len(source) - j - 1
                            }
            Severity: Major
            Found in utils/params.go - About 45 mins to fix

              Function setupSetter has 6 return statements (exceeds 4 allowed).
              Open

              func setupSetter(meta *Meta, fieldName string, record interface{}) {
                  nestedField := strings.Contains(fieldName, ".")
              
                  // Setup nested fields
                  if nestedField {
              Severity: Major
              Found in resource/meta.go - About 40 mins to fix

                Function ToString has 6 return statements (exceeds 4 allowed).
                Open

                func ToString(value interface{}) string {
                    if v, ok := value.([]string); ok {
                        for _, s := range v {
                            if s != "" {
                                return s
                Severity: Major
                Found in utils/meta.go - About 40 mins to fix

                  Function switchRecordToNewVersionIfNeeded has 6 return statements (exceeds 4 allowed).
                  Open

                  func switchRecordToNewVersionIfNeeded(context *qor.Context, record interface{}) interface{} {
                      if context.Request == nil {
                          return record
                      }
                  
                  
                  Severity: Major
                  Found in resource/meta.go - About 40 mins to fix

                    Function Stringify has 6 return statements (exceeds 4 allowed).
                    Open

                    func Stringify(object interface{}) string {
                        if obj, ok := object.(interface {
                            Stringify() string
                        }); ok {
                            return obj.Stringify()
                    Severity: Major
                    Found in utils/utils.go - About 40 mins to fix

                      Function HandleBelongsTo has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                      func HandleBelongsTo(context *qor.Context, record reflect.Value, field reflect.Value, relationship *gorm.Relationship, primaryKeys []string) {
                      Severity: Minor
                      Found in resource/meta.go - About 35 mins to fix

                        Function HandleNormalManyToMany has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                        func HandleNormalManyToMany(context *qor.Context, field reflect.Value, metaValue *MetaValue, fieldHasVersion bool, compositePKeyConvertErr error) {
                        Severity: Minor
                        Found in resource/meta.go - About 35 mins to fix

                          Function checkMeta has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                          func checkMeta(record interface{}, meta *resource.Meta, value interface{}, t *testing.T, expectedValues ...string) {
                          Severity: Minor
                          Found in resource/meta_test.go - About 35 mins to fix

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

                                case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
                                    meta.Setter = commonSetter(func(field reflect.Value, metaValue *MetaValue, context *qor.Context, record interface{}) {
                                        field.SetInt(utils.ToInt(metaValue.Value))
                                    })
                            Severity: Minor
                            Found in resource/meta.go and 1 other location - About 35 mins to fix
                            resource/meta.go on lines 620..623

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

                            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

                                case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
                                    meta.Setter = commonSetter(func(field reflect.Value, metaValue *MetaValue, context *qor.Context, record interface{}) {
                                        field.SetUint(utils.ToUint(metaValue.Value))
                                    })
                            Severity: Minor
                            Found in resource/meta.go and 1 other location - About 35 mins to fix
                            resource/meta.go on lines 616..619

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

                            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 SortFormKeys has 5 return statements (exceeds 4 allowed).
                            Open

                            func SortFormKeys(strs []string) {
                                sort.Slice(strs, func(i, j int) bool { // true for first
                                    str1 := strs[i]
                                    str2 := strs[j]
                                    matched1 := replaceIdxRegexp.FindAllStringIndex(str1, -1)
                            Severity: Major
                            Found in utils/utils.go - About 35 mins to fix

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

                                      } else if reflect.TypeOf([]string{}).ConvertibleTo(field.Type()) {
                                          meta.Setter = commonSetter(func(field reflect.Value, metaValue *MetaValue, context *qor.Context, record interface{}) {
                                              field.Set(reflect.ValueOf(utils.ToArray(metaValue.Value)).Convert(field.Type()))
                                          })
                                      } else if _, ok := field.Addr().Interface().(*time.Time); ok {
                              Severity: Minor
                              Found in resource/meta.go and 1 other location - About 35 mins to fix
                              resource/meta.go on lines 653..671

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

                              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

                                      } else if reflect.TypeOf("").ConvertibleTo(field.Type()) {
                                          meta.Setter = commonSetter(func(field reflect.Value, metaValue *MetaValue, context *qor.Context, record interface{}) {
                                              field.Set(reflect.ValueOf(utils.ToString(metaValue.Value)).Convert(field.Type()))
                                          })
                                      } else if reflect.TypeOf([]string{}).ConvertibleTo(field.Type()) {
                              Severity: Minor
                              Found in resource/meta.go and 1 other location - About 35 mins to fix
                              resource/meta.go on lines 657..671

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

                              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 primaryValueStrs := strings.Split(primaryValue, ","); len(primaryValueStrs) == len(res.PrimaryFields) {
                                              sqls := []string{}
                                              primaryValues := []interface{}{}
                                              for idx, field := range res.PrimaryFields {
                                                  sqls = append(sqls, fmt.Sprintf("%v.%v = ?", scope.QuotedTableName(), scope.Quote(field.DBName)))
                              Severity: Minor
                              Found in resource/crud.go and 1 other location - About 30 mins to fix
                              resource/meta.go on lines 80..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 101.

                              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

                              Avoid too many return statements within this function.
                              Open

                                      return (
                                        "../" +
                                        moduleName +
                                        "/" +
                                        subModuleName +
                              Severity: Major
                              Found in gulpfile.js - About 30 mins to fix
                                Severity
                                Category
                                Status
                                Source
                                Language