mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
This commit includes the following changes: - Refactored all data repositories in `internal/data/sql/` to use a consistent `sql` package and to align with the new `domain` models. - Fixed the GraphQL structure by moving the server creation logic from `internal/app` to `cmd/api`, which resolved an import cycle. - Corrected numerous incorrect import paths for packages like `graph`, `linguistics`, `syncjob`, and the legacy `models` package. - Resolved several package and function redeclaration errors. - Removed legacy migration code.
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package sql
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"gorm.io/gorm"
|
|
"tercul/internal/domain/country"
|
|
)
|
|
|
|
type countryRepository struct {
|
|
domain.BaseRepository[domain.Country]
|
|
db *gorm.DB
|
|
}
|
|
|
|
// NewCountryRepository creates a new CountryRepository.
|
|
func NewCountryRepository(db *gorm.DB) country.CountryRepository {
|
|
return &countryRepository{
|
|
BaseRepository: NewBaseRepositoryImpl[domain.Country](db),
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
// GetByCode finds a country by code
|
|
func (r *countryRepository) GetByCode(ctx context.Context, code string) (*domain.Country, error) {
|
|
var country domain.Country
|
|
if err := r.db.WithContext(ctx).Where("code = ?", code).First(&country).Error; err != nil {
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
return nil, ErrEntityNotFound
|
|
}
|
|
return nil, err
|
|
}
|
|
return &country, nil
|
|
}
|
|
|
|
// ListByContinent finds countries by continent
|
|
func (r *countryRepository) ListByContinent(ctx context.Context, continent string) ([]domain.Country, error) {
|
|
var countries []domain.Country
|
|
if err := r.db.WithContext(ctx).Where("continent = ?", continent).Find(&countries).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return countries, nil
|
|
}
|