mirror of
https://github.com/mattermost/mattermost.git
synced 2026-03-03 05:41:07 -05:00
* Starting migration * Migration finished * Fix i18n * Fix some tests * Fix typos * Remove overwite of http status * Add i18n string * Fix i18n * fix breakages * fix tests Co-authored-by: Rodrigo Villablanca <villa061004@gmail.com>
117 lines
2.8 KiB
Go
117 lines
2.8 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package store
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// ErrInvalidInput indicates an error that has occured due to an invalid input.
|
|
type ErrInvalidInput struct {
|
|
Entity string // The entity which was sent as the input.
|
|
Field string // The field of the entity which was invalid.
|
|
Value interface{} // The actual value of the field.
|
|
}
|
|
|
|
func NewErrInvalidInput(entity, field string, value interface{}) *ErrInvalidInput {
|
|
return &ErrInvalidInput{
|
|
Entity: entity,
|
|
Field: field,
|
|
Value: value,
|
|
}
|
|
}
|
|
|
|
func (e *ErrInvalidInput) Error() string {
|
|
return fmt.Sprintf("invalid input: entity: %s field: %s value: %s", e.Entity, e.Field, e.Value)
|
|
}
|
|
|
|
// ErrLimitExceeded indicates an error that has occured because some value exceeded a limit.
|
|
type ErrLimitExceeded struct {
|
|
What string // What was the object that exceeded.
|
|
Count int // The value of the object.
|
|
meta string // Any additional metadata.
|
|
}
|
|
|
|
func NewErrLimitExceeded(what string, count int, meta string) *ErrLimitExceeded {
|
|
return &ErrLimitExceeded{
|
|
What: what,
|
|
Count: count,
|
|
meta: meta,
|
|
}
|
|
}
|
|
|
|
func (e *ErrLimitExceeded) Error() string {
|
|
return fmt.Sprintf("limit exceeded: what: %s count: %d metadata: %s", e.What, e.Count, e.meta)
|
|
}
|
|
|
|
// ErrConflict indicates a conflict that occured.
|
|
type ErrConflict struct {
|
|
Resource string // The resource which created the conflict.
|
|
err error // Internal error.
|
|
meta string // Any additional metadata.
|
|
}
|
|
|
|
func NewErrConflict(resource string, err error, meta string) *ErrConflict {
|
|
return &ErrConflict{
|
|
Resource: resource,
|
|
err: err,
|
|
meta: meta,
|
|
}
|
|
}
|
|
|
|
func (e *ErrConflict) Error() string {
|
|
msg := e.Resource + "exists " + e.meta
|
|
if e.err != nil {
|
|
msg += " " + e.err.Error()
|
|
}
|
|
return msg
|
|
}
|
|
|
|
func (e *ErrConflict) Unwrap() error {
|
|
return e.err
|
|
}
|
|
|
|
// ErrNotFound indicates that a resource was not found
|
|
type ErrNotFound struct {
|
|
resource string
|
|
Id string
|
|
}
|
|
|
|
func NewErrNotFound(resource, id string) *ErrNotFound {
|
|
return &ErrNotFound{
|
|
resource: resource,
|
|
Id: id,
|
|
}
|
|
}
|
|
|
|
func (e *ErrNotFound) Error() string {
|
|
return "resource: " + e.resource + " id: " + e.Id
|
|
}
|
|
|
|
// ErrOutOfBounds indicates that the requested total numbers of rows
|
|
// was greater than the allowed limit.
|
|
type ErrOutOfBounds struct {
|
|
value int
|
|
}
|
|
|
|
func (e *ErrOutOfBounds) Error() string {
|
|
return fmt.Sprintf("invalid limit parameter: %d", e.value)
|
|
}
|
|
|
|
func NewErrOutOfBounds(value int) *ErrOutOfBounds {
|
|
return &ErrOutOfBounds{value: value}
|
|
}
|
|
|
|
// ErrNotImplemented indicates that some feature or requirement is not implemented yet.
|
|
type ErrNotImplemented struct {
|
|
detail string
|
|
}
|
|
|
|
func (e *ErrNotImplemented) Error() string {
|
|
return e.detail
|
|
}
|
|
|
|
func NewErrNotImplemented(detail string) *ErrNotImplemented {
|
|
return &ErrNotImplemented{detail: detail}
|
|
}
|