68 lines
1.7 KiB
Go
68 lines
1.7 KiB
Go
package authorization
|
|
|
|
import (
|
|
errors2 "errors"
|
|
"fmt"
|
|
|
|
"github.com/influxdata/influxdb/v2/kit/platform/errors"
|
|
)
|
|
|
|
var (
|
|
// ErrInvalidAuthID is used when the Authorization's ID cannot be encoded
|
|
ErrInvalidAuthID = &errors.Error{
|
|
Code: errors.EInvalid,
|
|
Msg: "authorization ID is invalid",
|
|
}
|
|
|
|
// ErrAuthNotFound is used when the specified auth cannot be found
|
|
ErrAuthNotFound = &errors.Error{
|
|
Code: errors.ENotFound,
|
|
Msg: "authorization not found",
|
|
}
|
|
|
|
// NotUniqueIDError occurs when attempting to create an Authorization with an ID that already belongs to another one
|
|
NotUniqueIDError = &errors.Error{
|
|
Code: errors.EConflict,
|
|
Msg: "ID already exists",
|
|
}
|
|
|
|
// ErrFailureGeneratingID occurs ony when the random number generator
|
|
// cannot generate an ID in MaxIDGenerationN times.
|
|
ErrFailureGeneratingID = &errors.Error{
|
|
Code: errors.EInternal,
|
|
Msg: "unable to generate valid id",
|
|
}
|
|
|
|
// ErrTokenAlreadyExistsError is used when attempting to create an authorization
|
|
// with a token that already exists
|
|
ErrTokenAlreadyExistsError = &errors.Error{
|
|
Code: errors.EConflict,
|
|
Msg: "token already exists",
|
|
}
|
|
)
|
|
|
|
// ErrInvalidAuthIDError is used when a service was provided an invalid ID.
|
|
func ErrInvalidAuthIDError(err error) *errors.Error {
|
|
return &errors.Error{
|
|
Code: errors.EInvalid,
|
|
Msg: "auth id provided is invalid",
|
|
Err: err,
|
|
}
|
|
}
|
|
|
|
// UnexpectedAuthIndexError is used when the error comes from an internal system.
|
|
func UnexpectedAuthIndexError(err error) *errors.Error {
|
|
var e *errors.Error
|
|
if !errors2.As(err, &e) {
|
|
e = &errors.Error{
|
|
Msg: fmt.Sprintf("unexpected error retrieving auth index; Err: %v", err),
|
|
Code: errors.EInternal,
|
|
Err: err,
|
|
}
|
|
}
|
|
if e.Code == "" {
|
|
e.Code = errors.EInternal
|
|
}
|
|
return e
|
|
}
|