ace-teknologi/abra

View on GitHub

Showing 12 of 19 total issues

Method Client.SearchByNameAdvancedSimpleProtocol2017 has 76 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func (c *Client) SearchByNameAdvancedSimpleProtocol2017(name string, params *NameSearchParams) (*ResponseSearchResultsList, error) {
    // Strip whitespace
    name = strings.Trim(name, " ")

    if len(name) == 0 {
Severity: Major
Found in abra-lib/client.go - About 2 hrs to fix

    Method Client.SearchByNameAdvancedSimpleProtocol2017 has a Cognitive Complexity of 29 (exceeds 20 allowed). Consider refactoring.
    Open

    func (c *Client) SearchByNameAdvancedSimpleProtocol2017(name string, params *NameSearchParams) (*ResponseSearchResultsList, error) {
        // Strip whitespace
        name = strings.Trim(name, " ")
    
        if len(name) == 0 {
    Severity: Minor
    Found in abra-lib/client.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 findABN has 9 return statements (exceeds 4 allowed).
    Open

    func findABN() error {
        // Ensure we have a GUID
        err := setGUID()
        if err != nil {
            return err
    Severity: Major
    Found in cmd/find_abn.go - About 55 mins to fix

      Function searchByName has 9 return statements (exceeds 4 allowed).
      Open

      func searchByName() error {
          // Ensure we have a GUID
          err := setGUID()
          if err != nil {
              return err
      Severity: Major
      Found in cmd/search.go - About 55 mins to fix

        Function findACN has 9 return statements (exceeds 4 allowed).
        Open

        func findACN() error {
            // Ensure we have a GUID
            err := setGUID()
            if err != nil {
                return err
        Severity: Major
        Found in cmd/find_acn.go - About 55 mins to fix

          Method SearchResultsRecord.IsCurrentIndicator has 6 return statements (exceeds 4 allowed).
          Open

          func (r *SearchResultsRecord) IsCurrentIndicator() string {
              if r.MainName != nil {
                  return r.MainName.IsCurrentIndicator
              }
              if r.MainTradingName != nil {
          Severity: Major
          Found in abra-lib/client.go - About 40 mins to fix

            Method BusinessEntity.Name has 6 return statements (exceeds 4 allowed).
            Open

            func (b *BusinessEntity) Name() string {
                for _, name := range b.MainNames {
                    return name.OrganisationName
                }
            
            
            Severity: Major
            Found in abra-lib/abr.go - About 40 mins to fix

              Method SearchResultsRecord.Score has 6 return statements (exceeds 4 allowed).
              Open

              func (r *SearchResultsRecord) Score() int32 {
                  if r.MainName != nil {
                      return r.MainName.Score
                  }
                  if r.MainTradingName != nil {
              Severity: Major
              Found in abra-lib/client.go - About 40 mins to fix

                Method SearchResultsRecord.Name has 6 return statements (exceeds 4 allowed).
                Open

                func (r *SearchResultsRecord) Name() string {
                    if r.MainName != nil {
                        return r.MainName.OrganisationName
                    }
                    if r.MainTradingName != nil {
                Severity: Major
                Found in abra-lib/client.go - About 40 mins to fix

                  Method Client.SearchByNameAdvancedSimpleProtocol2017 has 5 return statements (exceeds 4 allowed).
                  Open

                  func (c *Client) SearchByNameAdvancedSimpleProtocol2017(name string, params *NameSearchParams) (*ResponseSearchResultsList, error) {
                      // Strip whitespace
                      name = strings.Trim(name, " ")
                  
                      if len(name) == 0 {
                  Severity: Major
                  Found in abra-lib/client.go - About 35 mins to fix

                    Method Client.SearchByABNv201408 has 5 return statements (exceeds 4 allowed).
                    Open

                    func (c *Client) SearchByABNv201408(abn string, hist bool) (*BusinessEntity, error) {
                        if ok, err := ValidateABN(abn); !ok {
                            return nil, err
                        }
                    
                    
                    Severity: Major
                    Found in abra-lib/client.go - About 35 mins to fix

                      Method Client.SearchByASICv201408 has 5 return statements (exceeds 4 allowed).
                      Open

                      func (c *Client) SearchByASICv201408(acn string, hist bool) (*BusinessEntity, error) {
                          if ok, err := ValidateACN(acn); !ok {
                              return nil, err
                          }
                      
                      
                      Severity: Major
                      Found in abra-lib/client.go - About 35 mins to fix
                        Severity
                        Category
                        Status
                        Source
                        Language