2023-06-05 06:42:55 -04:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
|
// See LICENSE.txt for license information.
|
|
|
|
|
|
|
|
|
|
package commands
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"net/http"
|
|
|
|
|
|
2023-06-11 01:24:35 -04:00
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
2023-06-05 06:42:55 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
}
|
|
|
|
|
}
|