janekolszak/idp

View on GitHub
challenge.go

Summary

Maintainability
A
3 hrs
Test Coverage

Method Challenge.GrantAccessToAll has 5 return statements (exceeds 4 allowed).
Open

func (c *Challenge) GrantAccessToAll(w http.ResponseWriter, r *http.Request) error {
    now := time.Now()

    token := jwt.New(jwt.SigningMethodRS256)

Severity: Major
Found in challenge.go - About 35 mins to fix

    2: cannot find package "github.com/dgrijalva/jwt-go" in any of:
    Open

        jwt "github.com/dgrijalva/jwt-go"
    Severity: Minor
    Found in challenge.go by govet

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

    func (c *Challenge) Update(w http.ResponseWriter, r *http.Request) error {
        session, err := c.idp.config.ChallengeStore.Get(r, SessionCookieName)
        if err != nil {
            return err
        }
    Severity: Major
    Found in challenge.go and 1 other location - About 1 hr to fix
    challenge.go on lines 46..56

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

    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 (c *Challenge) Save(w http.ResponseWriter, r *http.Request) error {
        session, err := c.idp.config.ChallengeStore.New(r, SessionCookieName)
        if err != nil {
            return err
        }
    Severity: Major
    Found in challenge.go and 1 other location - About 1 hr to fix
    challenge.go on lines 59..69

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

    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

    package comment should be of the form "Package idp ..."
    Open

    // Package for handling challenge requests from Hydra(https://github.com/ory/hydra).
    Severity: Minor
    Found in challenge.go by golint

    exported const SessionCookieName should have comment (or a comment on this block) or be unexported
    Open

        SessionCookieName = "challenge"
    Severity: Minor
    Found in challenge.go by golint

    comment on exported method Challenge.Save should be of the form "Save ..."
    Open

    // Saves the Challenge to it's session store
    Severity: Minor
    Found in challenge.go by golint

    comment on exported method Challenge.RefuseAccess should be of the form "RefuseAccess ..."
    Open

    // User refused access to requested scopes, forward the desicion to Hydra via redirection.
    Severity: Minor
    Found in challenge.go by golint

    exported type Challenge should have comment or be unexported
    Open

    type Challenge struct {
    Severity: Minor
    Found in challenge.go by golint

    comment on exported method Challenge.Delete should be of the form "Delete ..."
    Open

    // Deletes the challenge from the store
    Severity: Minor
    Found in challenge.go by golint

    comment on exported method Challenge.GrantAccessToAll should be of the form "GrantAccessToAll ..."
    Open

    // User granted access to requested scopes, forward the desicion to Hydra via redirection.
    Severity: Minor
    Found in challenge.go by golint

    There are no issues that match your filters.

    Category
    Status