28 lines
737 B
Go
28 lines
737 B
Go
|
package storage
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
"git.sch9.ru/new_gate/ms-auth/internal/lib"
|
||
|
"git.sch9.ru/new_gate/ms-auth/internal/models"
|
||
|
"github.com/jackc/pgerrcode"
|
||
|
"github.com/jackc/pgx/v5/pgconn"
|
||
|
"github.com/jmoiron/sqlx"
|
||
|
"go.uber.org/zap"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func (storage *UserStorage) HandlePgErr(err error) error {
|
||
|
var pgErr *pgconn.PgError
|
||
|
if !errors.As(err, &pgErr) {
|
||
|
storage.logger.DPanic("unexpected error from postgres", zap.String("err", err.Error()))
|
||
|
return lib.ErrUnexpected
|
||
|
}
|
||
|
if pgerrcode.IsIntegrityConstraintViolation(pgErr.Code) {
|
||
|
return errors.New("unique key violation") // FIXME
|
||
|
}
|
||
|
storage.logger.DPanic("unexpected internal error from postgres", zap.String("err", err.Error()))
|
||
|
return lib.ErrInternal
|
||
|
}
|
||
|
|