mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-30 00:46:15 -06:00
44 lines
1 KiB
Go
44 lines
1 KiB
Go
|
|
package bundb
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"database/sql"
|
||
|
|
|
||
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
||
|
|
"github.com/uptrace/bun"
|
||
|
|
)
|
||
|
|
|
||
|
|
type dbConn struct {
|
||
|
|
errProc func(error) db.Error // errProc is the SQL-type specific error processor
|
||
|
|
*bun.DB // DB is the underlying bun.DB connection
|
||
|
|
}
|
||
|
|
|
||
|
|
func (conn *dbConn) ProcessError(err error) db.Error {
|
||
|
|
switch {
|
||
|
|
case err == nil:
|
||
|
|
return nil
|
||
|
|
case err == sql.ErrNoRows:
|
||
|
|
return db.ErrNoEntries
|
||
|
|
default:
|
||
|
|
return conn.errProc(err)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (conn *dbConn) Exists(ctx context.Context, query *bun.SelectQuery) (bool, db.Error) {
|
||
|
|
// Get the select query result
|
||
|
|
count, err := query.Count(ctx)
|
||
|
|
|
||
|
|
// Process error as our own and check if it exists
|
||
|
|
switch err := conn.ProcessError(err); err {
|
||
|
|
case nil, db.ErrAlreadyExists:
|
||
|
|
return (count != 0), nil
|
||
|
|
default:
|
||
|
|
return false, err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (conn *dbConn) NotExists(ctx context.Context, query *bun.SelectQuery) (bool, db.Error) {
|
||
|
|
// Simply inverse of conn.exists()
|
||
|
|
exists, err := conn.Exists(ctx, query)
|
||
|
|
return !exists, err
|
||
|
|
}
|