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>
44 lines
888 B
Go
44 lines
888 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"fmt"
|
|
"sort"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
type ChannelCounts struct {
|
|
Counts map[string]int64 `json:"counts"`
|
|
CountsRoot map[string]int64 `json:"counts_root"`
|
|
UpdateTimes map[string]int64 `json:"update_times"`
|
|
}
|
|
|
|
func (o *ChannelCounts) Etag() string {
|
|
// we don't include CountsRoot in ETag calculation, since it's a derivative
|
|
ids := []string{}
|
|
for id := range o.Counts {
|
|
ids = append(ids, id)
|
|
}
|
|
sort.Strings(ids)
|
|
|
|
var str strings.Builder
|
|
for _, id := range ids {
|
|
str.WriteString(id + strconv.FormatInt(o.Counts[id], 10))
|
|
}
|
|
|
|
md5Counts := fmt.Sprintf("%x", md5.Sum([]byte(str.String())))
|
|
|
|
var update int64
|
|
for _, u := range o.UpdateTimes {
|
|
if u > update {
|
|
update = u
|
|
}
|
|
}
|
|
|
|
return Etag(md5Counts, update)
|
|
}
|