encapsulate ErrNotFound

This commit is contained in:
Sebastian Frank 2022-02-09 15:49:15 +01:00
parent 702a05f405
commit 115c288a0b
Signed by: apairon
GPG Key ID: A0E05A8199CE3F57

View File

@ -109,7 +109,11 @@ func (q *Query) Select(selector interface{}) *Query {
} }
func (q *Query) One(result interface{}) error { func (q *Query) One(result interface{}) error {
return q.query.One(result) err := q.query.One(result)
if err == mgo.ErrNotFound {
err = &ErrNotFound{msg: err.Error()}
}
return err
} }
func (q *Query) Sort(fields ...string) *Query { func (q *Query) Sort(fields ...string) *Query {
@ -128,11 +132,19 @@ func (q *Query) Limit(n int) *Query {
} }
func (q *Query) All(result interface{}) error { func (q *Query) All(result interface{}) error {
return q.query.All(result) err := q.query.All(result)
if err == mgo.ErrNotFound {
err = &ErrNotFound{msg: err.Error()}
}
return err
} }
func (q *Query) Count() (int, error) { func (q *Query) Count() (int, error) {
return q.query.Count() c, err := q.query.Count()
if err == mgo.ErrNotFound {
err = &ErrNotFound{msg: err.Error()}
}
return c, err
} }
type Index struct { type Index struct {
@ -155,9 +167,24 @@ type Pipe struct {
} }
func (p *Pipe) All(result interface{}) error { func (p *Pipe) All(result interface{}) error {
return p.pipe.All(result) err := p.pipe.All(result)
if err == mgo.ErrNotFound {
err = &ErrNotFound{msg: err.Error()}
}
return err
} }
func (c *Collection) Pipe(pipeline interface{}) *Pipe { func (c *Collection) Pipe(pipeline interface{}) *Pipe {
return &Pipe{pipe: c.collection.Pipe(pipeline).AllowDiskUse()} return &Pipe{pipe: c.collection.Pipe(pipeline).AllowDiskUse()}
} }
type ErrNotFound struct {
msg string
}
func (e *ErrNotFound) Error() string {
if e.msg == "" {
return "not found"
}
return e.msg
}