forked from ebhomengo/niki
48 lines
1.6 KiB
Go
48 lines
1.6 KiB
Go
package mysqlkindboxreq
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"errors"
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
|
querier "git.gocasts.ir/ebhomengo/niki/pkg/query_transaction/sql"
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
)
|
|
|
|
func (d DB) GetByID(ctx context.Context, id uint) (entity.KindBoxReq, error) {
|
|
op := richerror.Op("mysqlkindboxreq.GetByID")
|
|
q, cErr := querier.GetQuerierFromContextOrNew(ctx).Continue(ctx, d.conn.Conn())
|
|
if cErr != nil {
|
|
return entity.KindBoxReq{}, richerror.New(op).WithErr(cErr).
|
|
WithMessage(errmsg.ErrorMsgCantScanQueryResult).WithKind(richerror.KindUnexpected)
|
|
}
|
|
row := q.Conn().QueryRowContext(ctx, `select * from kind_box_reqs where id = ? and deleted_at is null`, id)
|
|
k, sErr := scanKindBoxReq(row)
|
|
if sErr != nil {
|
|
return entity.KindBoxReq{}, richerror.New(op).WithErr(sErr).
|
|
WithMessage(errmsg.ErrorMsgCantScanQueryResult).WithKind(richerror.KindUnexpected)
|
|
}
|
|
|
|
return k, nil
|
|
}
|
|
|
|
func (d DB) GetKindBoxReqByID(ctx context.Context, kindBoxReqID uint) (entity.KindBoxReq, error) {
|
|
op := richerror.Op("mysqlkindboxreq.GetKindBoxReqByID")
|
|
row := d.conn.Conn().QueryRowContext(ctx,
|
|
"select * from kind_box_reqs where id = ? and deleted_at is null", kindBoxReqID)
|
|
k, err := scanKindBoxReq(row)
|
|
if err != nil {
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
return entity.KindBoxReq{}, richerror.New(op).WithErr(err).
|
|
WithMessage(errmsg.ErrorMsgNotFound).WithKind(richerror.KindNotFound)
|
|
}
|
|
|
|
return entity.KindBoxReq{}, richerror.New(op).WithErr(err).
|
|
WithMessage(errmsg.ErrorMsgCantScanQueryResult).WithKind(richerror.KindUnexpected)
|
|
}
|
|
|
|
return k, nil
|
|
}
|