tercul-backend/internal/app/bookmark/commands.go
google-labs-jules[bot] 52101fbeda Refactor: Expose Analytics Service via GraphQL
This commit refactors the analytics service to align with the new DDD architecture and exposes it through the GraphQL API.

Key changes:
- A new `AnalyticsService` has been created in `internal/application/services` to encapsulate analytics-related business logic.
- The GraphQL resolver has been updated to use the new `AnalyticsService`, providing a clean and maintainable API.
- The old analytics service and its related files have been removed, reducing code duplication and confusion.
- The `bookmark`, `like`, and `work` services have been refactored to remove their dependencies on the old analytics repository.
- Unit tests have been added for the new `AnalyticsService`, and existing tests have been updated to reflect the refactoring.
2025-10-03 04:10:16 +00:00

70 lines
1.6 KiB
Go

package bookmark
import (
"context"
"tercul/internal/domain"
)
// BookmarkCommands contains the command handlers for the bookmark aggregate.
type BookmarkCommands struct {
repo domain.BookmarkRepository
}
// NewBookmarkCommands creates a new BookmarkCommands handler.
func NewBookmarkCommands(repo domain.BookmarkRepository) *BookmarkCommands {
return &BookmarkCommands{
repo: repo,
}
}
// CreateBookmarkInput represents the input for creating a new bookmark.
type CreateBookmarkInput struct {
Name string
UserID uint
WorkID uint
Notes string
}
// CreateBookmark creates a new bookmark.
func (c *BookmarkCommands) CreateBookmark(ctx context.Context, input CreateBookmarkInput) (*domain.Bookmark, error) {
bookmark := &domain.Bookmark{
Name: input.Name,
UserID: input.UserID,
WorkID: input.WorkID,
Notes: input.Notes,
}
err := c.repo.Create(ctx, bookmark)
if err != nil {
return nil, err
}
return bookmark, nil
}
// UpdateBookmarkInput represents the input for updating an existing bookmark.
type UpdateBookmarkInput struct {
ID uint
Name string
Notes string
}
// UpdateBookmark updates an existing bookmark.
func (c *BookmarkCommands) UpdateBookmark(ctx context.Context, input UpdateBookmarkInput) (*domain.Bookmark, error) {
bookmark, err := c.repo.GetByID(ctx, input.ID)
if err != nil {
return nil, err
}
bookmark.Name = input.Name
bookmark.Notes = input.Notes
err = c.repo.Update(ctx, bookmark)
if err != nil {
return nil, err
}
return bookmark, nil
}
// DeleteBookmark deletes a bookmark by ID.
func (c *BookmarkCommands) DeleteBookmark(ctx context.Context, id uint) error {
return c.repo.Delete(ctx, id)
}