2020-03-11 18:31:33 +00:00
|
|
|
package tenant
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2020-04-03 17:39:20 +00:00
|
|
|
"github.com/influxdata/influxdb/v2"
|
2020-03-11 18:31:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrUserNotFound is used when the user is not found.
|
|
|
|
ErrUserNotFound = &influxdb.Error{
|
|
|
|
Msg: "user not found",
|
|
|
|
Code: influxdb.ENotFound,
|
|
|
|
}
|
2020-03-17 19:23:00 +00:00
|
|
|
|
|
|
|
// EIncorrectPassword is returned when any password operation fails in which
|
|
|
|
// we do not want to leak information.
|
|
|
|
EIncorrectPassword = &influxdb.Error{
|
|
|
|
Code: influxdb.EForbidden,
|
|
|
|
Msg: "your username or password is incorrect",
|
|
|
|
}
|
|
|
|
|
|
|
|
// EIncorrectUser is returned when any user is failed to be found which indicates
|
|
|
|
// the userID provided is for a user that does not exist.
|
|
|
|
EIncorrectUser = &influxdb.Error{
|
|
|
|
Code: influxdb.EForbidden,
|
|
|
|
Msg: "your userID is incorrect",
|
|
|
|
}
|
|
|
|
|
|
|
|
// EShortPassword is used when a password is less than the minimum
|
|
|
|
// acceptable password length.
|
|
|
|
EShortPassword = &influxdb.Error{
|
|
|
|
Code: influxdb.EInvalid,
|
|
|
|
Msg: "passwords must be at least 8 characters long",
|
|
|
|
}
|
2020-03-11 18:31:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// UserAlreadyExistsError is used when attempting to create a user with a name
|
|
|
|
// that already exists.
|
|
|
|
func UserAlreadyExistsError(n string) *influxdb.Error {
|
|
|
|
return &influxdb.Error{
|
|
|
|
Code: influxdb.EConflict,
|
|
|
|
Msg: fmt.Sprintf("user with name %s already exists", n),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnexpectedUserBucketError is used when the error comes from an internal system.
|
|
|
|
func UnexpectedUserBucketError(err error) *influxdb.Error {
|
|
|
|
return &influxdb.Error{
|
|
|
|
Code: influxdb.EInternal,
|
|
|
|
Msg: fmt.Sprintf("unexpected error retrieving user bucket; Err: %v", err),
|
|
|
|
Op: "kv/userBucket",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnexpectedUserIndexError is used when the error comes from an internal system.
|
|
|
|
func UnexpectedUserIndexError(err error) *influxdb.Error {
|
|
|
|
return &influxdb.Error{
|
|
|
|
Code: influxdb.EInternal,
|
|
|
|
Msg: fmt.Sprintf("unexpected error retrieving user index; Err: %v", err),
|
|
|
|
Op: "kv/userIndex",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// InvalidUserIDError is used when a service was provided an invalid ID.
|
|
|
|
// This is some sort of internal server error.
|
|
|
|
func InvalidUserIDError(err error) *influxdb.Error {
|
|
|
|
return &influxdb.Error{
|
|
|
|
Code: influxdb.EInvalid,
|
|
|
|
Msg: "user id provided is invalid",
|
|
|
|
Err: err,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrCorruptUser is used when the user cannot be unmarshalled from the bytes
|
|
|
|
// stored in the kv.
|
|
|
|
func ErrCorruptUser(err error) *influxdb.Error {
|
|
|
|
return &influxdb.Error{
|
|
|
|
Code: influxdb.EInternal,
|
|
|
|
Msg: "user could not be unmarshalled",
|
|
|
|
Err: err,
|
|
|
|
Op: "kv/UnmarshalUser",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrUnprocessableUser is used when a user is not able to be processed.
|
|
|
|
func ErrUnprocessableUser(err error) *influxdb.Error {
|
|
|
|
return &influxdb.Error{
|
|
|
|
Code: influxdb.EUnprocessableEntity,
|
|
|
|
Msg: "user could not be marshalled",
|
|
|
|
Err: err,
|
|
|
|
Op: "kv/MarshalUser",
|
|
|
|
}
|
|
|
|
}
|
2020-03-17 19:23:00 +00:00
|
|
|
|
|
|
|
// UnavailablePasswordServiceError is used if we aren't able to add the
|
|
|
|
// password to the store, it means the store is not available at the moment
|
|
|
|
// (e.g. network).
|
|
|
|
func UnavailablePasswordServiceError(err error) *influxdb.Error {
|
|
|
|
return &influxdb.Error{
|
|
|
|
Code: influxdb.EUnavailable,
|
|
|
|
Msg: fmt.Sprintf("Unable to connect to password service. Please try again; Err: %v", err),
|
|
|
|
Op: "kv/setPassword",
|
|
|
|
}
|
|
|
|
}
|