mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
It was a good decision in hindsight to keep the public module as 0.x because this would have been a breaking change again. https://mattermost.atlassian.net/browse/MM-53032 ```release-note Changed the Go module path from github.com/mattermost/mattermost-server/server/v8 to github.com/mattermost/mattermost/server/v8. For the public facing module, it's path is also changed from github.com/mattermost/mattermost-server/server/public to github.com/mattermost/mattermost/server/public ```
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
// ErrEntityNotFound is thrown when an entity (user, team, etc.)
|
|
// is not found, returning the id sent by arguments
|
|
type ErrEntityNotFound struct {
|
|
Type string
|
|
ID string
|
|
}
|
|
|
|
func (e ErrEntityNotFound) Error() string {
|
|
return fmt.Sprintf("%s %s not found", e.Type, e.ID)
|
|
}
|
|
|
|
type NotFoundError struct {
|
|
Msg string
|
|
}
|
|
|
|
func (e *NotFoundError) Error() string {
|
|
return e.Msg
|
|
}
|
|
|
|
type BadRequestError struct {
|
|
Msg string
|
|
}
|
|
|
|
func (e *BadRequestError) Error() string {
|
|
return e.Msg
|
|
}
|
|
|
|
// ExtractErrorFromResponse extracts the error from the response,
|
|
// encapsulating it if matches the common cases, such as when it's
|
|
// not found, and when we've made a bad request
|
|
func ExtractErrorFromResponse(r *model.Response, err error) error {
|
|
switch r.StatusCode {
|
|
case http.StatusNotFound:
|
|
return &NotFoundError{Msg: err.Error()}
|
|
case http.StatusBadRequest:
|
|
return &BadRequestError{Msg: err.Error()}
|
|
default:
|
|
return err
|
|
}
|
|
}
|