65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
package tenant
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/influxdata/influxdb/v2"
|
|
"github.com/influxdata/influxdb/v2/kit/platform/errors"
|
|
)
|
|
|
|
var (
|
|
// ErrOrgNotFound is used when the user is not found.
|
|
ErrOrgNotFound = &errors.Error{
|
|
Msg: "organization not found",
|
|
Code: errors.ENotFound,
|
|
}
|
|
)
|
|
|
|
// OrgAlreadyExistsError is used when creating a new organization with
|
|
// a name that has already been used. Organization names must be unique.
|
|
func OrgAlreadyExistsError(name string) error {
|
|
return &errors.Error{
|
|
Code: errors.EConflict,
|
|
Msg: fmt.Sprintf("organization with name %s already exists", name),
|
|
}
|
|
}
|
|
|
|
func OrgNotFoundByName(name string) error {
|
|
return &errors.Error{
|
|
Code: errors.ENotFound,
|
|
Op: influxdb.OpFindOrganizations,
|
|
Msg: fmt.Sprintf("organization name \"%s\" not found", name),
|
|
}
|
|
}
|
|
|
|
// ErrCorruptOrg is used when the user cannot be unmarshalled from the bytes
|
|
// stored in the kv.
|
|
func ErrCorruptOrg(err error) *errors.Error {
|
|
return &errors.Error{
|
|
Code: errors.EInternal,
|
|
Msg: "user could not be unmarshalled",
|
|
Err: err,
|
|
Op: "kv/UnmarshalOrg",
|
|
}
|
|
}
|
|
|
|
// ErrUnprocessableOrg is used when a org is not able to be processed.
|
|
func ErrUnprocessableOrg(err error) *errors.Error {
|
|
return &errors.Error{
|
|
Code: errors.EUnprocessableEntity,
|
|
Msg: "user could not be marshalled",
|
|
Err: err,
|
|
Op: "kv/MarshalOrg",
|
|
}
|
|
}
|
|
|
|
// InvalidOrgIDError is used when a service was provided an invalid ID.
|
|
// This is some sort of internal server error.
|
|
func InvalidOrgIDError(err error) *errors.Error {
|
|
return &errors.Error{
|
|
Code: errors.EInvalid,
|
|
Msg: "org id provided is invalid",
|
|
Err: err,
|
|
}
|
|
}
|