Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
53 lines
1.1 KiB
Go
53 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
|
|
}
|
|
}
|