mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
package sql
|
|
|
|
import (
|
|
"context"
|
|
"gorm.io/gorm"
|
|
"tercul/internal/domain"
|
|
)
|
|
|
|
type bookmarkRepository struct {
|
|
domain.BaseRepository[domain.Bookmark]
|
|
db *gorm.DB
|
|
}
|
|
|
|
// NewBookmarkRepository creates a new BookmarkRepository.
|
|
func NewBookmarkRepository(db *gorm.DB) domain.BookmarkRepository {
|
|
return &bookmarkRepository{
|
|
BaseRepository: NewBaseRepositoryImpl[domain.Bookmark](db),
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
// ListByUserID finds bookmarks by user ID
|
|
func (r *bookmarkRepository) ListByUserID(ctx context.Context, userID uint) ([]domain.Bookmark, error) {
|
|
var bookmarks []domain.Bookmark
|
|
if err := r.db.WithContext(ctx).Where("user_id = ?", userID).Find(&bookmarks).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return bookmarks, nil
|
|
}
|
|
|
|
// ListByWorkID finds bookmarks by work ID
|
|
func (r *bookmarkRepository) ListByWorkID(ctx context.Context, workID uint) ([]domain.Bookmark, error) {
|
|
var bookmarks []domain.Bookmark
|
|
if err := r.db.WithContext(ctx).Where("work_id = ?", workID).Find(&bookmarks).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return bookmarks, nil
|
|
}
|