mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
Some checks failed
- Updated database models and repositories to replace uint IDs with UUIDs. - Modified test fixtures to generate and use UUIDs for authors, translations, users, and works. - Adjusted mock implementations to align with the new UUID structure. - Ensured all relevant functions and methods are updated to handle UUIDs correctly. - Added necessary imports for UUID handling in various files.
114 lines
4.9 KiB
Go
114 lines
4.9 KiB
Go
package copyright
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"tercul/internal/domain"
|
|
"tercul/internal/platform/log"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// CopyrightQueries contains the query handlers for copyright.
|
|
type CopyrightQueries struct {
|
|
repo domain.CopyrightRepository
|
|
workRepo domain.WorkRepository
|
|
authorRepo domain.AuthorRepository
|
|
bookRepo domain.BookRepository
|
|
publisherRepo domain.PublisherRepository
|
|
sourceRepo domain.SourceRepository
|
|
}
|
|
|
|
// NewCopyrightQueries creates a new CopyrightQueries handler.
|
|
func NewCopyrightQueries(repo domain.CopyrightRepository, workRepo domain.WorkRepository, authorRepo domain.AuthorRepository, bookRepo domain.BookRepository, publisherRepo domain.PublisherRepository, sourceRepo domain.SourceRepository) *CopyrightQueries {
|
|
return &CopyrightQueries{repo: repo, workRepo: workRepo, authorRepo: authorRepo, bookRepo: bookRepo, publisherRepo: publisherRepo, sourceRepo: sourceRepo}
|
|
}
|
|
|
|
// GetCopyrightByID retrieves a copyright by ID.
|
|
func (q *CopyrightQueries) GetCopyrightByID(ctx context.Context, id uuid.UUID) (*domain.Copyright, error) {
|
|
if id == uuid.Nil {
|
|
return nil, errors.New("invalid copyright ID")
|
|
}
|
|
log.FromContext(ctx).With("id", id).Debug("Getting copyright by ID")
|
|
return q.repo.GetByID(ctx, id)
|
|
}
|
|
|
|
// ListCopyrights retrieves all copyrights.
|
|
func (q *CopyrightQueries) ListCopyrights(ctx context.Context) ([]domain.Copyright, error) {
|
|
log.FromContext(ctx).Debug("Listing all copyrights")
|
|
// Note: This might need pagination in the future.
|
|
// For now, it mirrors the old service's behavior.
|
|
return q.repo.ListAll(ctx)
|
|
}
|
|
|
|
// GetCopyrightsForWork gets all copyrights for a specific work.
|
|
func (q *CopyrightQueries) GetCopyrightsForWork(ctx context.Context, workID uuid.UUID) ([]*domain.Copyright, error) {
|
|
log.FromContext(ctx).With("work_id", workID).Debug("Getting copyrights for work")
|
|
workRecord, err := q.workRepo.GetByIDWithOptions(ctx, workID, &domain.QueryOptions{Preloads: []string{"Copyrights"}})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return workRecord.Copyrights, nil
|
|
}
|
|
|
|
// GetCopyrightsForAuthor gets all copyrights for a specific author.
|
|
func (q *CopyrightQueries) GetCopyrightsForAuthor(ctx context.Context, authorID uuid.UUID) ([]*domain.Copyright, error) {
|
|
log.FromContext(ctx).With("author_id", authorID).Debug("Getting copyrights for author")
|
|
author, err := q.authorRepo.GetByIDWithOptions(ctx, authorID, &domain.QueryOptions{Preloads: []string{"Copyrights"}})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return author.Copyrights, nil
|
|
}
|
|
|
|
// GetCopyrightsForBook gets all copyrights for a specific book.
|
|
func (q *CopyrightQueries) GetCopyrightsForBook(ctx context.Context, bookID uuid.UUID) ([]*domain.Copyright, error) {
|
|
log.FromContext(ctx).With("book_id", bookID).Debug("Getting copyrights for book")
|
|
book, err := q.bookRepo.GetByIDWithOptions(ctx, bookID, &domain.QueryOptions{Preloads: []string{"Copyrights"}})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return book.Copyrights, nil
|
|
}
|
|
|
|
// GetCopyrightsForPublisher gets all copyrights for a specific publisher.
|
|
func (q *CopyrightQueries) GetCopyrightsForPublisher(ctx context.Context, publisherID uuid.UUID) ([]*domain.Copyright, error) {
|
|
log.FromContext(ctx).With("publisher_id", publisherID).Debug("Getting copyrights for publisher")
|
|
publisher, err := q.publisherRepo.GetByIDWithOptions(ctx, publisherID, &domain.QueryOptions{Preloads: []string{"Copyrights"}})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return publisher.Copyrights, nil
|
|
}
|
|
|
|
// GetCopyrightsForSource gets all copyrights for a specific source.
|
|
func (q *CopyrightQueries) GetCopyrightsForSource(ctx context.Context, sourceID uuid.UUID) ([]*domain.Copyright, error) {
|
|
log.FromContext(ctx).With("source_id", sourceID).Debug("Getting copyrights for source")
|
|
source, err := q.sourceRepo.GetByIDWithOptions(ctx, sourceID, &domain.QueryOptions{Preloads: []string{"Copyrights"}})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return source.Copyrights, nil
|
|
}
|
|
|
|
// GetTranslations gets all translations for a copyright.
|
|
func (q *CopyrightQueries) GetTranslations(ctx context.Context, copyrightID uuid.UUID) ([]domain.CopyrightTranslation, error) {
|
|
if copyrightID == uuid.Nil {
|
|
return nil, errors.New("invalid copyright ID")
|
|
}
|
|
log.FromContext(ctx).With("copyright_id", copyrightID).Debug("Getting translations for copyright")
|
|
return q.repo.GetTranslations(ctx, copyrightID)
|
|
}
|
|
|
|
// GetTranslationByLanguage gets a specific translation by language code.
|
|
func (q *CopyrightQueries) GetTranslationByLanguage(ctx context.Context, copyrightID uuid.UUID, languageCode string) (*domain.CopyrightTranslation, error) {
|
|
if copyrightID == uuid.Nil {
|
|
return nil, errors.New("invalid copyright ID")
|
|
}
|
|
if languageCode == "" {
|
|
return nil, errors.New("language code cannot be empty")
|
|
}
|
|
log.FromContext(ctx).With("copyright_id", copyrightID).With("language", languageCode).Debug("Getting translation by language for copyright")
|
|
return q.repo.GetTranslationByLanguage(ctx, copyrightID, languageCode)
|
|
}
|