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.
83 lines
2.9 KiB
Go
83 lines
2.9 KiB
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gorm.io/gorm"
|
|
|
|
channelmodel "github.com/gochat/gochat/internal/model/channel"
|
|
)
|
|
|
|
// ChannelFacebookRepo implements GORM repository for ChannelFacebook.
|
|
// Reference: Chatwoot app/models/channel/facebook_page.rb
|
|
type ChannelFacebookRepo struct {
|
|
db *gorm.DB
|
|
}
|
|
|
|
// NewChannelFacebookRepo creates a new ChannelFacebook repository.
|
|
func NewChannelFacebookRepo(db *gorm.DB) *ChannelFacebookRepo {
|
|
return &ChannelFacebookRepo{db: db}
|
|
}
|
|
|
|
// FindByID retrieves a ChannelFacebook by primary key.
|
|
func (r *ChannelFacebookRepo) FindByID(ctx context.Context, id uint) (*channelmodel.ChannelFacebook, error) {
|
|
var ch channelmodel.ChannelFacebook
|
|
err := r.db.WithContext(ctx).First(&ch, id).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &ch, nil
|
|
}
|
|
|
|
// FindByInboxID retrieves a ChannelFacebook by inbox ID.
|
|
func (r *ChannelFacebookRepo) FindByInboxID(ctx context.Context, inboxID uint) (*channelmodel.ChannelFacebook, error) {
|
|
var ch channelmodel.ChannelFacebook
|
|
err := r.db.WithContext(ctx).Where("inbox_id = ?", inboxID).First(&ch).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &ch, nil
|
|
}
|
|
|
|
// FindByAccountAndInboxID retrieves a ChannelFacebook scoped to an account and inbox.
|
|
func (r *ChannelFacebookRepo) FindByAccountAndInboxID(ctx context.Context, accountID, inboxID uint) (*channelmodel.ChannelFacebook, error) {
|
|
var ch channelmodel.ChannelFacebook
|
|
err := r.db.WithContext(ctx).Where("account_id = ? AND inbox_id = ?", accountID, inboxID).First(&ch).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &ch, nil
|
|
}
|
|
|
|
// FindByPageID retrieves a ChannelFacebook by Facebook Page ID.
|
|
// Used by the webhook handler to route incoming Facebook messages to the correct inbox.
|
|
func (r *ChannelFacebookRepo) FindByPageID(ctx context.Context, pageID string) (*channelmodel.ChannelFacebook, error) {
|
|
var ch channelmodel.ChannelFacebook
|
|
err := r.db.WithContext(ctx).Where("page_id = ?", pageID).First(&ch).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &ch, nil
|
|
}
|
|
|
|
// Create inserts a new ChannelFacebook record.
|
|
func (r *ChannelFacebookRepo) Create(ctx context.Context, ch *channelmodel.ChannelFacebook) error {
|
|
return r.db.WithContext(ctx).Create(ch).Error
|
|
}
|
|
|
|
// Update modifies an existing ChannelFacebook.
|
|
func (r *ChannelFacebookRepo) Update(ctx context.Context, ch *channelmodel.ChannelFacebook) error {
|
|
return r.db.WithContext(ctx).Save(ch).Error
|
|
}
|
|
|
|
// Delete soft-deletes a ChannelFacebook.
|
|
func (r *ChannelFacebookRepo) Delete(ctx context.Context, id uint) error {
|
|
return r.db.WithContext(ctx).Delete(&channelmodel.ChannelFacebook{}, id).Error
|
|
}
|
|
|
|
// ListByAccount retrieves all Facebook channels for an account.
|
|
func (r *ChannelFacebookRepo) ListByAccount(ctx context.Context, accountID uint) ([]channelmodel.ChannelFacebook, error) {
|
|
var channels []channelmodel.ChannelFacebook
|
|
err := r.db.WithContext(ctx).Where("account_id = ?", accountID).Order("id DESC").Find(&channels).Error
|
|
return channels, err
|
|
} |