You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/errors/is.go

97 lines
1.8 KiB

package errors
import (
"errors"
"github.com/jackc/pgconn"
)
// IsUniqueError returns a boolean indicating whether the error is known to
// report a unique constraint violation.
func IsUniqueError(err error) bool {
if err == nil {
return false
}
if Match(T(NotUnique), err) {
return true
}
var pgxError *pgconn.PgError
if errors.As(err, &pgxError) {
if pgxError.Code == "23505" { // unique_violation
return true
}
}
return false
}
// IsCheckConstraintError returns a boolean indicating whether the error is
// known to report a check constraint violation.
func IsCheckConstraintError(err error) bool {
if err == nil {
return false
}
if Match(T(CheckConstraint), err) {
return true
}
var pgxError *pgconn.PgError
if errors.As(err, &pgxError) {
if pgxError.Code == "23514" { // check_violation
return true
}
}
return false
}
// IsNotNullError returns a boolean indicating whether the error is known
// to report a not-null constraint violation.
func IsNotNullError(err error) bool {
if err == nil {
return false
}
if Match(T(NotNull), err) {
return true
}
var pgxError *pgconn.PgError
if errors.As(err, &pgxError) {
if pgxError.Code == "23502" { // not_null_violation
return true
}
}
return false
}
// IsMissingTableError returns a boolean indicating whether the error is known
// to report a undefined/missing table violation.
func IsMissingTableError(err error) bool {
var pgxError *pgconn.PgError
if errors.As(err, &pgxError) {
if pgxError.Code == "42P01" {
return true
}
}
return false
}
// IsNotFoundError returns a boolean indicating whether the error is known to
// report a not found violation.
func IsNotFoundError(err error) bool {
if err == nil {
return false
}
if Match(T(RecordNotFound), err) {
return true
}
return false
}