forked from ebhomengo/niki
33 lines
908 B
Go
33 lines
908 B
Go
package mysqladdress
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"errors"
|
|
|
|
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
)
|
|
|
|
func (d *DB) IsExistAddressByID(ctx context.Context, addressID uint, benefactorID uint) (bool, error) {
|
|
const op = "mysqladdress.IsExistAddressByID"
|
|
|
|
row := d.conn.Conn().QueryRowContext(ctx, `select * from addresses where id = ? and benefactor_id = ? and deleted_at is null `, addressID, benefactorID)
|
|
|
|
_, err := scanAddress(row)
|
|
if err != nil {
|
|
sErr := sql.ErrNoRows
|
|
//TODO-errorsas: second argument to errors.As should not be *error
|
|
//nolint
|
|
if errors.As(err, &sErr) {
|
|
return false, nil
|
|
}
|
|
|
|
// TODO - log unexpected error for better observability
|
|
return false, richerror.New(op).WithErr(err).
|
|
WithMessage(errmsg.ErrorMsgCantScanQueryResult).WithKind(richerror.KindUnexpected)
|
|
}
|
|
|
|
return true, nil
|
|
}
|