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>
31 lines
617 B
Go
31 lines
617 B
Go
package push
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/splitio/go-toolkit/v5/datautils"
|
|
)
|
|
|
|
type DataUtils interface {
|
|
Decode(data string) ([]byte, error)
|
|
Decompress(data []byte, compressType int) ([]byte, error)
|
|
}
|
|
|
|
type DataUtilsImpl struct {
|
|
}
|
|
|
|
func NewDataUtilsImpl() DataUtils {
|
|
return &DataUtilsImpl{}
|
|
}
|
|
|
|
func (d *DataUtilsImpl) Decode(data string) ([]byte, error) {
|
|
if data == "" {
|
|
return []byte{}, fmt.Errorf("data len is 0")
|
|
}
|
|
return datautils.Decode(data, datautils.Base64)
|
|
}
|
|
|
|
func (d *DataUtilsImpl) Decompress(data []byte, compressType int) ([]byte, error) {
|
|
return datautils.Decompress(data, compressType)
|
|
}
|