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.
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package sql
|
|
|
|
import (
|
|
"context"
|
|
"gorm.io/gorm"
|
|
"tercul/internal/domain/copyright_claim"
|
|
)
|
|
|
|
type copyrightClaimRepository struct {
|
|
domain.BaseRepository[domain.CopyrightClaim]
|
|
db *gorm.DB
|
|
}
|
|
|
|
// NewCopyrightClaimRepository creates a new CopyrightClaimRepository.
|
|
func NewCopyrightClaimRepository(db *gorm.DB) domain.CopyrightClaimRepository {
|
|
return ©rightClaimRepository{
|
|
BaseRepository: NewBaseRepositoryImpl[domain.CopyrightClaim](db),
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
// ListByWorkID finds claims by work ID
|
|
func (r *copyrightClaimRepository) ListByWorkID(ctx context.Context, workID uint) ([]domain.CopyrightClaim, error) {
|
|
var claims []domain.CopyrightClaim
|
|
if err := r.db.WithContext(ctx).Where("work_id = ?", workID).Find(&claims).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return claims, nil
|
|
}
|
|
|
|
// ListByUserID finds claims by user ID
|
|
func (r *copyrightClaimRepository) ListByUserID(ctx context.Context, userID uint) ([]domain.CopyrightClaim, error) {
|
|
var claims []domain.CopyrightClaim
|
|
if err := r.db.WithContext(ctx).Where("user_id = ?", userID).Find(&claims).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return claims, nil
|
|
}
|