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>
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package pluginapi
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
// ErrNotFound is returned by the plugin API when an object is not found.
|
|
var ErrNotFound = errors.New("not found")
|
|
|
|
// normalizeAppErr returns a truly nil error if appErr is nil as well as normalizing a class
|
|
// of non-nil AppErrors to simplify use within plugins.
|
|
//
|
|
// This doesn't happen automatically when a *model.AppError is cast to an error, since the
|
|
// resulting error interface has a concrete type with a nil value. This leads to the seemingly
|
|
// impossible:
|
|
//
|
|
// var err error
|
|
// err = func() *model.AppError { return nil }()
|
|
// if err != nil {
|
|
// panic("err != nil, which surprises most")
|
|
// }
|
|
//
|
|
// Fix this problem for all plugin authors by normalizing to special case the handling of a nil
|
|
// *model.AppError. See https://golang.org/doc/faq#nil_error for more details.
|
|
func normalizeAppErr(appErr *model.AppError) error {
|
|
if appErr == nil {
|
|
return nil
|
|
}
|
|
|
|
if appErr.StatusCode == http.StatusNotFound {
|
|
return ErrNotFound
|
|
}
|
|
|
|
return appErr
|
|
}
|