OSDN Git Service

Dev wallet sa (#1238)
[bytom/bytom-spv.git] / net / http / authn / authn.go
index 90d7521..8f5c3d3 100644 (file)
@@ -35,7 +35,6 @@ type API struct {
 }
 
 type tokenResult struct {
-       valid      bool
        lastLookup time.Time
 }
 
@@ -71,6 +70,10 @@ func (a *API) Authenticate(req *http.Request) (*http.Request, error) {
        if strings.HasPrefix(req.URL.Path, "/dashboard/") || req.URL.Path == "/dashboard" {
                return req.WithContext(ctx), nil
        }
+       // Adding this workaround for Equity Playground.
+       if strings.HasPrefix(req.URL.Path, "/equity/") || req.URL.Path == "/equity" {
+               return req.WithContext(ctx), nil
+       }
        if loopbackOn && local {
                return req.WithContext(ctx), nil
        }
@@ -137,11 +140,11 @@ func (a *API) cachedTokenAuthnCheck(ctx context.Context, user, pw string) error
        res, ok := a.tokenMap[user+pw]
        a.tokenMu.Unlock()
        if !ok || time.Now().After(res.lastLookup.Add(tokenExpiry)) {
-               valid, err := a.tokens.Check(ctx, user, pw)
-               if err != nil || !valid {
+               err := a.tokens.Check(user, pw)
+               if err != nil {
                        return ErrInvalidToken
                }
-               res = tokenResult{valid: valid, lastLookup: time.Now()}
+               res = tokenResult{lastLookup: time.Now()}
                a.tokenMu.Lock()
                a.tokenMap[user+pw] = res
                a.tokenMu.Unlock()