package repository
import "github.com/go-arrower/arrower/contexts/auth/internal/interfaces/repository"
Index ¶
- Variables
- type MemoryRepository
- func NewUserMemoryRepository() *MemoryRepository
- func (repo *MemoryRepository) All(ctx context.Context, filter domain.Filter) ([]domain.User, error)
- func (repo *MemoryRepository) CreateVerificationToken( _ context.Context, token domain.VerificationToken, ) error
- func (repo *MemoryRepository) ExistsByLogin(ctx context.Context, login domain.Login) (bool, error)
- func (repo *MemoryRepository) FindByLogin(ctx context.Context, login domain.Login) (domain.User, error)
- func (repo *MemoryRepository) VerificationTokenByToken( _ context.Context, tokenID uuid.UUID, ) (domain.VerificationToken, error)
- type PostgresRepository
- func NewUserPostgresRepository(pg *pgxpool.Pool) (*PostgresRepository, error)
- func (repo *PostgresRepository) All(ctx context.Context, filter domain.Filter) ([]domain.User, error)
- func (repo *PostgresRepository) Count(ctx context.Context) (int, error)
- func (repo *PostgresRepository) CreateVerificationToken( ctx context.Context, token domain.VerificationToken, ) error
- func (repo *PostgresRepository) Delete(ctx context.Context, usr domain.User) error
- func (repo *PostgresRepository) DeleteAll(ctx context.Context) error
- func (repo *PostgresRepository) DeleteByID(ctx context.Context, userID domain.ID) error
- func (repo *PostgresRepository) DeleteByIDs(ctx context.Context, ids []domain.ID) error
- func (repo *PostgresRepository) ExistsByID(ctx context.Context, id domain.ID) (bool, error)
- func (repo *PostgresRepository) ExistsByLogin(ctx context.Context, login domain.Login) (bool, error)
- func (repo *PostgresRepository) FindByID(ctx context.Context, id domain.ID) (domain.User, error)
- func (repo *PostgresRepository) FindByLogin(ctx context.Context, login domain.Login) (domain.User, error)
- func (repo *PostgresRepository) Save(ctx context.Context, usr domain.User) error
- func (repo *PostgresRepository) SaveAll(ctx context.Context, users []domain.User) error
- func (repo *PostgresRepository) VerificationTokenByToken( ctx context.Context, tokenID uuid.UUID, ) (domain.VerificationToken, error)
Variables ¶
Types ¶
type MemoryRepository ¶
type MemoryRepository struct { *repository.MemoryRepository[domain.User, domain.ID] // contains filtered or unexported fields }
func NewUserMemoryRepository ¶
func NewUserMemoryRepository() *MemoryRepository
func (*MemoryRepository) All ¶
func (*MemoryRepository) CreateVerificationToken ¶
func (repo *MemoryRepository) CreateVerificationToken( _ context.Context, token domain.VerificationToken, ) error
func (*MemoryRepository) ExistsByLogin ¶
func (*MemoryRepository) FindByLogin ¶
func (repo *MemoryRepository) FindByLogin(ctx context.Context, login domain.Login) (domain.User, error)
func (*MemoryRepository) VerificationTokenByToken ¶
func (repo *MemoryRepository) VerificationTokenByToken( _ context.Context, tokenID uuid.UUID, ) (domain.VerificationToken, error)
type PostgresRepository ¶
type PostgresRepository struct {
// contains filtered or unexported fields
}
func NewUserPostgresRepository ¶
func NewUserPostgresRepository(pg *pgxpool.Pool) (*PostgresRepository, error)
func (*PostgresRepository) All ¶
func (repo *PostgresRepository) All(ctx context.Context, filter domain.Filter) ([]domain.User, error)
func (*PostgresRepository) Count ¶
func (repo *PostgresRepository) Count(ctx context.Context) (int, error)
func (*PostgresRepository) CreateVerificationToken ¶
func (repo *PostgresRepository) CreateVerificationToken( ctx context.Context, token domain.VerificationToken, ) error
func (*PostgresRepository) Delete ¶
func (*PostgresRepository) DeleteAll ¶
func (repo *PostgresRepository) DeleteAll(ctx context.Context) error
func (*PostgresRepository) DeleteByID ¶
func (*PostgresRepository) DeleteByIDs ¶
func (*PostgresRepository) ExistsByID ¶
func (*PostgresRepository) ExistsByLogin ¶
func (repo *PostgresRepository) ExistsByLogin(ctx context.Context, login domain.Login) (bool, error)
func (*PostgresRepository) FindByID ¶
func (*PostgresRepository) FindByLogin ¶
func (repo *PostgresRepository) FindByLogin(ctx context.Context, login domain.Login) (domain.User, error)
func (*PostgresRepository) Save ¶
func (*PostgresRepository) SaveAll ¶
func (*PostgresRepository) VerificationTokenByToken ¶
func (repo *PostgresRepository) VerificationTokenByToken( ctx context.Context, tokenID uuid.UUID, ) (domain.VerificationToken, error)
Source Files ¶
mapping.go user.inmemory.repository.go user.postgres.repository.go
Directories ¶
Path | Synopsis |
---|---|
contexts/auth/internal/interfaces/repository/models |
- Version
- v0.0.0-20250311203644-ab26c1152cb4 (latest)
- Published
- Mar 11, 2025
- Platform
- linux/amd64
- Imports
- 13 packages
- Last checked
- 1 week ago –
Tools for package owners.