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>
117 lines
2.5 KiB
Go
117 lines
2.5 KiB
Go
package settings
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
type boolSetting struct {
|
|
baseSetting
|
|
store SettingStore
|
|
}
|
|
|
|
// NewBoolSetting creates a new setting input for boolean values
|
|
func NewBoolSetting(id, title, description, dependsOn string, store SettingStore) Setting {
|
|
return &boolSetting{
|
|
baseSetting: baseSetting{
|
|
title: title,
|
|
description: description,
|
|
id: id,
|
|
dependsOn: dependsOn,
|
|
},
|
|
store: store,
|
|
}
|
|
}
|
|
|
|
func (s *boolSetting) Set(userID string, value any) error {
|
|
boolValue := false
|
|
if value == TrueString {
|
|
boolValue = true
|
|
}
|
|
|
|
err := s.store.SetSetting(userID, s.id, boolValue)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *boolSetting) Get(userID string) (any, error) {
|
|
value, err := s.store.GetSetting(userID, s.id)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
boolValue, ok := value.(bool)
|
|
if !ok {
|
|
return "", errors.New("current value is not a bool")
|
|
}
|
|
|
|
stringValue := FalseString
|
|
if boolValue {
|
|
stringValue = TrueString
|
|
}
|
|
|
|
return stringValue, nil
|
|
}
|
|
|
|
func (s *boolSetting) GetSlackAttachments(userID, settingHandler string, disabled bool) (*model.SlackAttachment, error) {
|
|
title := fmt.Sprintf("Setting: %s", s.title)
|
|
currentValueMessage := DisabledString
|
|
|
|
actions := []*model.PostAction{}
|
|
if !disabled {
|
|
currentValue, err := s.Get(userID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
currentTextValue := "No"
|
|
if currentValue == TrueString {
|
|
currentTextValue = "Yes"
|
|
}
|
|
currentValueMessage = fmt.Sprintf("Current value: %s", currentTextValue)
|
|
|
|
actionTrue := model.PostAction{
|
|
Type: model.PostActionTypeButton,
|
|
Name: "Yes",
|
|
Integration: &model.PostActionIntegration{
|
|
URL: settingHandler,
|
|
Context: map[string]any{
|
|
ContextIDKey: s.id,
|
|
ContextButtonValueKey: TrueString,
|
|
},
|
|
},
|
|
}
|
|
|
|
actionFalse := model.PostAction{
|
|
Type: model.PostActionTypeButton,
|
|
Name: "No",
|
|
Integration: &model.PostActionIntegration{
|
|
URL: settingHandler,
|
|
Context: map[string]any{
|
|
ContextIDKey: s.id,
|
|
ContextButtonValueKey: FalseString,
|
|
},
|
|
},
|
|
}
|
|
actions = []*model.PostAction{&actionTrue, &actionFalse}
|
|
}
|
|
|
|
text := fmt.Sprintf("%s\n%s", s.description, currentValueMessage)
|
|
sa := model.SlackAttachment{
|
|
Title: title,
|
|
Text: text,
|
|
Fallback: fmt.Sprintf("%s: %s", title, text),
|
|
Actions: actions,
|
|
}
|
|
|
|
return &sa, nil
|
|
}
|
|
|
|
func (s *boolSetting) IsDisabled(foreignValue any) bool {
|
|
return foreignValue == FalseString
|
|
}
|