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>
90 lines
2.3 KiB
Go
90 lines
2.3 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package localcachelayer
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/v8/channels/store"
|
|
)
|
|
|
|
type LocalCacheWebhookStore struct {
|
|
store.WebhookStore
|
|
rootStore *LocalCacheStore
|
|
}
|
|
|
|
func (s *LocalCacheWebhookStore) handleClusterInvalidateWebhook(msg *model.ClusterMessage) {
|
|
if bytes.Equal(msg.Data, clearCacheMessageData) {
|
|
s.rootStore.webhookCache.Purge()
|
|
} else {
|
|
s.rootStore.webhookCache.Remove(string(msg.Data))
|
|
}
|
|
}
|
|
|
|
func (s LocalCacheWebhookStore) ClearCaches() {
|
|
s.rootStore.doClearCacheCluster(s.rootStore.webhookCache)
|
|
|
|
if s.rootStore.metrics != nil {
|
|
s.rootStore.metrics.IncrementMemCacheInvalidationCounter(s.rootStore.webhookCache.Name())
|
|
}
|
|
}
|
|
|
|
func (s LocalCacheWebhookStore) InvalidateWebhookCache(webhookId string) {
|
|
s.rootStore.doInvalidateCacheCluster(s.rootStore.webhookCache, webhookId, nil)
|
|
if s.rootStore.metrics != nil {
|
|
s.rootStore.metrics.IncrementMemCacheInvalidationCounter(s.rootStore.webhookCache.Name())
|
|
}
|
|
}
|
|
|
|
func (s LocalCacheWebhookStore) GetIncoming(id string, allowFromCache bool) (*model.IncomingWebhook, error) {
|
|
if !allowFromCache {
|
|
return s.WebhookStore.GetIncoming(id, allowFromCache)
|
|
}
|
|
|
|
var incomingWebhook *model.IncomingWebhook
|
|
if err := s.rootStore.doStandardReadCache(s.rootStore.webhookCache, id, &incomingWebhook); err == nil {
|
|
return incomingWebhook, nil
|
|
}
|
|
|
|
incomingWebhook, err := s.WebhookStore.GetIncoming(id, allowFromCache)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
s.rootStore.doStandardAddToCache(s.rootStore.webhookCache, id, incomingWebhook)
|
|
|
|
return incomingWebhook, nil
|
|
}
|
|
|
|
func (s LocalCacheWebhookStore) DeleteIncoming(webhookId string, time int64) error {
|
|
err := s.WebhookStore.DeleteIncoming(webhookId, time)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
s.InvalidateWebhookCache(webhookId)
|
|
return nil
|
|
}
|
|
|
|
func (s LocalCacheWebhookStore) PermanentDeleteIncomingByUser(userId string) error {
|
|
err := s.WebhookStore.PermanentDeleteIncomingByUser(userId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
s.ClearCaches()
|
|
return nil
|
|
}
|
|
|
|
func (s LocalCacheWebhookStore) PermanentDeleteIncomingByChannel(channelId string) error {
|
|
err := s.WebhookStore.PermanentDeleteIncomingByChannel(channelId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
s.ClearCaches()
|
|
return nil
|
|
}
|