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.
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/gochat/gochat/internal/model"
|
|
"github.com/gochat/gochat/internal/repository"
|
|
applogger "github.com/gochat/gochat/pkg/logger"
|
|
)
|
|
|
|
// WidgetTestService implements business logic for WidgetTest operations.
|
|
// Reference: Chatwoot resources :widget_tests, only: [:index] — read-only, not in production.
|
|
// Returns test data for widget/UI integration testing.
|
|
type WidgetTestService struct {
|
|
repo *repository.WidgetTestRepo
|
|
}
|
|
|
|
// NewWidgetTestService creates a new WidgetTestService.
|
|
func NewWidgetTestService(repo *repository.WidgetTestRepo) *WidgetTestService {
|
|
return &WidgetTestService{repo: repo}
|
|
}
|
|
|
|
// List retrieves all widget test scenarios.
|
|
func (s *WidgetTestService) List(ctx context.Context) ([]model.WidgetTest, error) {
|
|
tests, err := s.repo.ListAll(ctx)
|
|
if err != nil {
|
|
applogger.L().Errorf("WidgetTestService.List error: %v", err)
|
|
return nil, err
|
|
}
|
|
return tests, nil
|
|
}
|
|
|
|
// ListByType retrieves widget test scenarios filtered by type.
|
|
func (s *WidgetTestService) ListByType(ctx context.Context, typ string) ([]model.WidgetTest, error) {
|
|
if typ == "" {
|
|
return nil, errors.New("type is required")
|
|
}
|
|
tests, err := s.repo.ListByType(ctx, typ)
|
|
if err != nil {
|
|
applogger.L().Errorf("WidgetTestService.ListByType error: %v", err)
|
|
return nil, err
|
|
}
|
|
return tests, nil
|
|
} |