67b5b07730
Implemented account management api key authentication. Extended IsAuthenticated service method to include both cookie and api key authorization. Change-Id: I6f2d01fdc6115cb860f2e49c74980a39155afe7e
16 lines
433 B
Go
16 lines
433 B
Go
// Copyright (C) 2022 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package api
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
)
|
|
|
|
// Auth exposes methods to control authentication process for each endpoint.
|
|
type Auth interface {
|
|
// IsAuthenticated checks if request is performed with all needed authorization credentials.
|
|
IsAuthenticated(ctx context.Context, r *http.Request, isCookieAuth, isKeyAuth bool) (context.Context, error)
|
|
}
|