mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
This commit includes the following changes: - Refactored all data repositories in `internal/data/sql/` to use a consistent `sql` package and to align with the new `domain` models. - Fixed the GraphQL structure by moving the server creation logic from `internal/app` to `cmd/api`, which resolved an import cycle. - Corrected numerous incorrect import paths for packages like `graph`, `linguistics`, `syncjob`, and the legacy `models` package. - Resolved several package and function redeclaration errors. - Removed legacy migration code.
48 lines
1.5 KiB
Go
48 lines
1.5 KiB
Go
package sql
|
|
|
|
import (
|
|
"context"
|
|
"gorm.io/gorm"
|
|
"tercul/internal/domain/monetization"
|
|
)
|
|
|
|
type monetizationRepository struct {
|
|
domain.BaseRepository[domain.Monetization]
|
|
db *gorm.DB
|
|
}
|
|
|
|
// NewMonetizationRepository creates a new MonetizationRepository.
|
|
func NewMonetizationRepository(db *gorm.DB) monetization.MonetizationRepository {
|
|
return &monetizationRepository{
|
|
BaseRepository: NewBaseRepositoryImpl[domain.Monetization](db),
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
// ListByWorkID finds monetizations by work ID
|
|
func (r *monetizationRepository) ListByWorkID(ctx context.Context, workID uint) ([]domain.Monetization, error) {
|
|
var monetizations []domain.Monetization
|
|
if err := r.db.WithContext(ctx).Where("work_id = ?", workID).Find(&monetizations).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return monetizations, nil
|
|
}
|
|
|
|
// ListByTranslationID finds monetizations by translation ID
|
|
func (r *monetizationRepository) ListByTranslationID(ctx context.Context, translationID uint) ([]domain.Monetization, error) {
|
|
var monetizations []domain.Monetization
|
|
if err := r.db.WithContext(ctx).Where("translation_id = ?", translationID).Find(&monetizations).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return monetizations, nil
|
|
}
|
|
|
|
// ListByBookID finds monetizations by book ID
|
|
func (r *monetizationRepository) ListByBookID(ctx context.Context, bookID uint) ([]domain.Monetization, error) {
|
|
var monetizations []domain.Monetization
|
|
if err := r.db.WithContext(ctx).Where("book_id = ?", bookID).Find(&monetizations).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return monetizations, nil
|
|
}
|