2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2021-08-25 13:34:33 +00:00
|
|
|
|
|
|
|
package bundb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
2021-11-13 16:30:01 +00:00
|
|
|
|
2021-08-25 13:34:33 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2022-07-19 08:47:55 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
2021-08-25 13:34:33 +00:00
|
|
|
"github.com/uptrace/bun"
|
|
|
|
)
|
|
|
|
|
|
|
|
type basicDB struct {
|
2024-02-07 14:43:27 +00:00
|
|
|
db *bun.DB
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) Put(ctx context.Context, i interface{}) error {
|
|
|
|
_, err := b.db.NewInsert().Model(i).Exec(ctx)
|
2023-08-17 16:26:21 +00:00
|
|
|
return err
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) GetByID(ctx context.Context, id string, i interface{}) error {
|
|
|
|
q := b.db.
|
2021-08-25 13:34:33 +00:00
|
|
|
NewSelect().
|
|
|
|
Model(i).
|
|
|
|
Where("id = ?", id)
|
|
|
|
|
2021-08-29 14:41:41 +00:00
|
|
|
err := q.Scan(ctx)
|
2023-08-17 16:26:21 +00:00
|
|
|
return err
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) GetWhere(ctx context.Context, where []db.Where, i interface{}) error {
|
2021-08-25 13:34:33 +00:00
|
|
|
if len(where) == 0 {
|
|
|
|
return errors.New("no queries provided")
|
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
q := b.db.NewSelect().Model(i)
|
2021-09-09 14:15:25 +00:00
|
|
|
|
|
|
|
selectWhere(q, where)
|
2021-08-25 13:34:33 +00:00
|
|
|
|
2021-08-29 14:41:41 +00:00
|
|
|
err := q.Scan(ctx)
|
2023-08-17 16:26:21 +00:00
|
|
|
return err
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) GetAll(ctx context.Context, i interface{}) error {
|
|
|
|
q := b.db.
|
2021-08-25 13:34:33 +00:00
|
|
|
NewSelect().
|
|
|
|
Model(i)
|
|
|
|
|
2021-08-29 14:41:41 +00:00
|
|
|
err := q.Scan(ctx)
|
2023-08-17 16:26:21 +00:00
|
|
|
return err
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) DeleteByID(ctx context.Context, id string, i interface{}) error {
|
|
|
|
q := b.db.
|
2021-08-25 13:34:33 +00:00
|
|
|
NewDelete().
|
|
|
|
Model(i).
|
|
|
|
Where("id = ?", id)
|
|
|
|
|
|
|
|
_, err := q.Exec(ctx)
|
2023-08-17 16:26:21 +00:00
|
|
|
return err
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) DeleteWhere(ctx context.Context, where []db.Where, i interface{}) error {
|
2021-08-25 13:34:33 +00:00
|
|
|
if len(where) == 0 {
|
|
|
|
return errors.New("no queries provided")
|
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
q := b.db.
|
2021-08-25 13:34:33 +00:00
|
|
|
NewDelete().
|
|
|
|
Model(i)
|
|
|
|
|
2021-09-09 14:15:25 +00:00
|
|
|
deleteWhere(q, where)
|
2021-08-25 13:34:33 +00:00
|
|
|
|
|
|
|
_, err := q.Exec(ctx)
|
2023-08-17 16:26:21 +00:00
|
|
|
return err
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) UpdateByID(ctx context.Context, i interface{}, id string, columns ...string) error {
|
|
|
|
q := b.db.
|
2021-08-25 13:34:33 +00:00
|
|
|
NewUpdate().
|
|
|
|
Model(i).
|
2022-08-15 10:35:05 +00:00
|
|
|
Column(columns...).
|
2022-10-08 11:50:48 +00:00
|
|
|
Where("? = ?", bun.Ident("id"), id)
|
2021-08-25 13:34:33 +00:00
|
|
|
|
|
|
|
_, err := q.Exec(ctx)
|
2023-08-17 16:26:21 +00:00
|
|
|
return err
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) UpdateWhere(ctx context.Context, where []db.Where, key string, value interface{}, i interface{}) error {
|
|
|
|
q := b.db.NewUpdate().Model(i)
|
2021-08-25 13:34:33 +00:00
|
|
|
|
2021-09-09 14:15:25 +00:00
|
|
|
updateWhere(q, where)
|
2021-08-25 13:34:33 +00:00
|
|
|
|
2022-10-08 11:50:48 +00:00
|
|
|
q = q.Set("? = ?", bun.Ident(key), value)
|
2021-08-25 13:34:33 +00:00
|
|
|
|
|
|
|
_, err := q.Exec(ctx)
|
2023-08-17 16:26:21 +00:00
|
|
|
return err
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) CreateTable(ctx context.Context, i interface{}) error {
|
|
|
|
_, err := b.db.NewCreateTable().Model(i).IfNotExists().Exec(ctx)
|
2021-08-25 13:34:33 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) DropTable(ctx context.Context, i interface{}) error {
|
|
|
|
_, err := b.db.NewDropTable().Model(i).IfExists().Exec(ctx)
|
2023-08-17 16:26:21 +00:00
|
|
|
return err
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 08:34:05 +00:00
|
|
|
func (b *basicDB) IsHealthy(ctx context.Context) error {
|
2023-08-17 16:26:21 +00:00
|
|
|
return b.db.PingContext(ctx)
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|
|
|
|
|
2023-08-17 16:26:21 +00:00
|
|
|
func (b *basicDB) Close() error {
|
|
|
|
log.Info(nil, "closing db connection")
|
|
|
|
return b.db.Close()
|
2021-08-25 13:34:33 +00:00
|
|
|
}
|