Files
gochat/backend/internal/service/notification_setting_service.go
T
rogee aeddedf2a3 Reorganize repo: backend/, deploy/, docs/ layout + AGENTS.md
Restructure the monorepo into clear top-level directories:
- backend/: Go module root (cmd, internal, pkg, configs, migrations,
  docs/swagger, scripts, tests, go.mod, Makefile, .air.toml)
- deploy/: Docker (Dockerfile, docker-compose*), quickstart, fluentd
- docs/: project documentation + reports/ (moved from repo root)
- AGENTS.md: new AI coding-agent guide at repo root

Update all references to the new layout:
- Dockerfile: COPY backend/go.mod, COPY backend/ (context = repo root)
- docker-compose files: context ../.., dockerfile deploy/docker/Dockerfile,
  env_file ../../.env, volume mounts ../../backend:/app
- deploy/quickstart/compose.yaml: dockerfile deploy/docker/Dockerfile
- CI: working-directory: backend for go commands, file deploy/docker/Dockerfile,
  coverage path backend/coverage.out, health_check backend/scripts/
- backend/Makefile: docker target uses -f ../deploy/docker/Dockerfile ../
- README: architecture tree, quickstart, config paths updated

Move root stray scripts (rename_models.*, run_m11_tests.sh, verify_build.sh,
gorm_bool_main.go) to backend/scripts/legacy/. All moves via git mv to
preserve history. Build, vet, SQLite tests, and docker compose config verified.
2026-07-07 14:44:12 +08:00

67 lines
2.4 KiB
Go

package service
// NotificationSettingService provides business logic for notification settings.
// Reference: Chatwoot NotificationSettingsController — show + update
import (
"context"
"github.com/gochat/gochat/internal/model"
"github.com/gochat/gochat/internal/repository"
)
// NotificationSettingService handles notification setting operations.
type NotificationSettingService struct {
repo *repository.NotificationSettingRepo
}
// NewNotificationSettingService creates a new service instance.
func NewNotificationSettingService(repo *repository.NotificationSettingRepo) *NotificationSettingService {
return &NotificationSettingService{repo: repo}
}
// UpdateNotificationSettingRequest is the DTO for updating notification settings.
// Reference: Chatwoot `params.require(:notification_settings).permit(selected_email_flags: [], selected_push_flags: [])`
type UpdateNotificationSettingRequest struct {
SelectedEmailFlags []string `json:"selected_email_flags"`
SelectedPushFlags []string `json:"selected_push_flags"`
}
// Get retrieves the notification setting for a user in an account.
// Reference: Chatwoot show action — loads setting via find_by(account_id, user_id)
func (s *NotificationSettingService) Get(ctx context.Context, accountID, userID uint) (*model.NotificationSetting, error) {
ns, err := s.repo.FindByAccountAndUser(accountID, userID)
if err != nil {
// If no setting exists, return default (all flags enabled)
return &model.NotificationSetting{
AccountID: accountID,
UserID: userID,
EmailFlags: model.AllEmailFlags(),
PushFlags: model.AllPushFlags(),
}, nil
}
return ns, nil
}
// Update modifies notification settings for a user in an account.
// Reference: Chatwoot update action — updates email_flags and push_flags bitmask from selected flags
func (s *NotificationSettingService) Update(ctx context.Context, accountID, userID uint, req UpdateNotificationSettingRequest) (*model.NotificationSetting, error) {
// Find existing or create default
ns, err := s.repo.FindByAccountAndUser(accountID, userID)
if err != nil {
// Create new setting
ns = &model.NotificationSetting{
AccountID: accountID,
UserID: userID,
}
}
// Update flags from request
ns.SetEmailFlagsFromNames(req.SelectedEmailFlags)
ns.SetPushFlagsFromNames(req.SelectedPushFlags)
if ns.ID == 0 {
return s.repo.Create(ns)
}
return s.repo.Update(ns)
}