mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
36 lines
908 B
Go
36 lines
908 B
Go
package sql
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"tercul/internal/domain"
|
|
"tercul/internal/domain/user_profile"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type userProfileRepository struct {
|
|
domain.BaseRepository[domain.UserProfile]
|
|
db *gorm.DB
|
|
}
|
|
|
|
// NewUserProfileRepository creates a new UserProfileRepository.
|
|
func NewUserProfileRepository(db *gorm.DB) user_profile.User_profileRepository {
|
|
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
|
|
}
|