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.
82 lines
2.6 KiB
Go
82 lines
2.6 KiB
Go
package v1
|
|
|
|
// ContactMergeHandler provides HTTP handler for merging two contacts.
|
|
// Reference: Chatwoot app/controllers/api/v1/accounts/actions/contact_merges_controller.rb
|
|
//
|
|
// Routes:
|
|
// POST /api/v1/accounts/:account_id/actions/contact_merges -> Create
|
|
//
|
|
// Request body:
|
|
// { "base_contact_id": 1, "mergee_contact_id": 2 }
|
|
//
|
|
// Chatwoot's response: returns the base contact after merge on success, 200 OK
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gochat/gochat/internal/model"
|
|
"github.com/gochat/gochat/internal/service"
|
|
"github.com/gochat/gochat/pkg/response"
|
|
)
|
|
|
|
// ContactMergeHandler handles HTTP requests for contact merge operations.
|
|
type ContactMergeHandler struct {
|
|
mergeService *service.ContactMergeService
|
|
}
|
|
|
|
// NewContactMergeHandler creates a new ContactMergeHandler.
|
|
func NewContactMergeHandler(mergeService *service.ContactMergeService) *ContactMergeHandler {
|
|
return &ContactMergeHandler{mergeService: mergeService}
|
|
}
|
|
|
|
// Create merges the mergee contact into the base contact.
|
|
// Reference: Chatwoot `def create`
|
|
//
|
|
// contact_merge_action = ContactMergeAction.new(
|
|
// account: Current.account,
|
|
// base_contact: @base_contact,
|
|
// mergee_contact: @mergee_contact
|
|
// )
|
|
// contact_merge_action.perform
|
|
//
|
|
// Chatwoot returns the base contact on success with 200 OK.
|
|
func (h *ContactMergeHandler) Create(c *gin.Context) {
|
|
accountID, err := strconv.ParseUint(c.Param("account_id"), 10, 64)
|
|
if err != nil {
|
|
response.AbortWithStatusError(c, 400, response.ErrBadRequest, "Invalid account ID")
|
|
return
|
|
}
|
|
|
|
var req model.ContactMergeRequest
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
response.AbortWithStatusError(c, 400, response.ErrBadRequest, "base_contact_id and mergee_contact_id are required")
|
|
return
|
|
}
|
|
|
|
contact, err := h.mergeService.Merge(uint(accountID), req.BaseContactID, req.MergeeContactID)
|
|
if err != nil {
|
|
if err == service.ErrMergeSameContact {
|
|
response.AbortWithStatusError(c, 400, response.ErrBadRequest, "Cannot merge the same contact")
|
|
return
|
|
}
|
|
if err == service.ErrMergeBaseNotFound {
|
|
response.AbortWithStatusError(c, 404, response.ErrContactNotFound, "Base contact not found")
|
|
return
|
|
}
|
|
if err == service.ErrMergeeNotFound {
|
|
response.AbortWithStatusError(c, 404, response.ErrContactNotFound, "Mergee contact not found")
|
|
return
|
|
}
|
|
if err == service.ErrMergeNotInAccount {
|
|
response.AbortWithStatusError(c, 403, response.ErrForbidden, "Contact does not belong to the account")
|
|
return
|
|
}
|
|
response.AbortWithStatusError(c, 500, response.ErrInternal, "Failed to merge contacts")
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, serializeCRMContact(c.Request.Context(), nil, contact, false))
|
|
}
|