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>
41 lines
753 B
Go
41 lines
753 B
Go
package source
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strconv"
|
|
)
|
|
|
|
var (
|
|
ErrParse = fmt.Errorf("no match")
|
|
)
|
|
|
|
var (
|
|
DefaultParse = Parse
|
|
DefaultRegex = Regex
|
|
)
|
|
|
|
// Regex matches the following pattern:
|
|
//
|
|
// 123_name.up.ext
|
|
// 123_name.down.ext
|
|
var Regex = regexp.MustCompile(`^([0-9]+)_(.*)\.(` + string(Down) + `|` + string(Up) + `)\.(.*)$`)
|
|
|
|
// Parse returns Migration for matching Regex pattern.
|
|
func Parse(raw string) (*Migration, error) {
|
|
m := Regex.FindStringSubmatch(raw)
|
|
if len(m) == 5 {
|
|
versionUint64, err := strconv.ParseUint(m[1], 10, 64)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Migration{
|
|
Version: uint(versionUint64),
|
|
Identifier: m[2],
|
|
Direction: Direction(m[3]),
|
|
Raw: raw,
|
|
}, nil
|
|
}
|
|
return nil, ErrParse
|
|
}
|