package sql import ( "context" "errors" "tercul/internal/domain" "gorm.io/gorm" ) type userProfileRepository struct { domain.BaseRepository[domain.UserProfile] db *gorm.DB } // NewUserProfileRepository creates a new UserProfileRepository. func NewUserProfileRepository(db *gorm.DB) domain.UserProfileRepository { return &userProfileRepository{ BaseRepository: NewBaseRepositoryImpl[domain.UserProfile](db), db: db, } } // GetByUserID finds a user profile by user ID func (r *userProfileRepository) GetByUserID(ctx context.Context, userID uint) (*domain.UserProfile, error) { var profile domain.UserProfile if err := r.db.WithContext(ctx).Where("user_id = ?", userID).First(&profile).Error; err != nil { if errors.Is(err, gorm.ErrRecordNotFound) { return nil, ErrEntityNotFound } return nil, err } return &profile, nil }