mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 09:46:28 +03:00
098dbe6ff4
* first commit Signed-off-by: kim <grufwub@gmail.com> * replace logging with our own log library Signed-off-by: kim <grufwub@gmail.com> * fix imports Signed-off-by: kim <grufwub@gmail.com> * fix log imports Signed-off-by: kim <grufwub@gmail.com> * add license text Signed-off-by: kim <grufwub@gmail.com> * fix package import cycle between config and log package Signed-off-by: kim <grufwub@gmail.com> * fix empty kv.Fields{} being passed to WithFields() Signed-off-by: kim <grufwub@gmail.com> * fix uses of log.WithFields() with whitespace issues and empty slices Signed-off-by: kim <grufwub@gmail.com> * *linter related grumbling* Signed-off-by: kim <grufwub@gmail.com> * gofmt the codebase! also fix more log.WithFields() formatting issues Signed-off-by: kim <grufwub@gmail.com> * update testrig code to match new changes Signed-off-by: kim <grufwub@gmail.com> * fix error wrapping in non fmt.Errorf function Signed-off-by: kim <grufwub@gmail.com> * add benchmarking of log.Caller() vs non-cached Signed-off-by: kim <grufwub@gmail.com> * fix syslog tests, add standard build tags to test runner to ensure consistency Signed-off-by: kim <grufwub@gmail.com> * make syslog tests more robust Signed-off-by: kim <grufwub@gmail.com> * fix caller depth arithmatic (is that how you spell it?) Signed-off-by: kim <grufwub@gmail.com> * update to use unkeyed fields in kv.Field{} instances Signed-off-by: kim <grufwub@gmail.com> * update go-kv library Signed-off-by: kim <grufwub@gmail.com> * update libraries list Signed-off-by: kim <grufwub@gmail.com> * fuck you linter get nerfed Signed-off-by: kim <grufwub@gmail.com> Co-authored-by: tobi <31960611+tsmethurst@users.noreply.github.com>
169 lines
4.1 KiB
Go
169 lines
4.1 KiB
Go
/*
|
|
GoToSocial
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
|
|
|
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/>.
|
|
*/
|
|
|
|
package bundb
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type basicDB struct {
|
|
conn *DBConn
|
|
}
|
|
|
|
func (b *basicDB) Put(ctx context.Context, i interface{}) db.Error {
|
|
_, err := b.conn.NewInsert().Model(i).Exec(ctx)
|
|
return b.conn.ProcessError(err)
|
|
}
|
|
|
|
func (b *basicDB) GetByID(ctx context.Context, id string, i interface{}) db.Error {
|
|
q := b.conn.
|
|
NewSelect().
|
|
Model(i).
|
|
Where("id = ?", id)
|
|
|
|
err := q.Scan(ctx)
|
|
return b.conn.ProcessError(err)
|
|
}
|
|
|
|
func (b *basicDB) GetWhere(ctx context.Context, where []db.Where, i interface{}) db.Error {
|
|
if len(where) == 0 {
|
|
return errors.New("no queries provided")
|
|
}
|
|
|
|
q := b.conn.NewSelect().Model(i)
|
|
|
|
selectWhere(q, where)
|
|
|
|
err := q.Scan(ctx)
|
|
return b.conn.ProcessError(err)
|
|
}
|
|
|
|
func (b *basicDB) GetAll(ctx context.Context, i interface{}) db.Error {
|
|
q := b.conn.
|
|
NewSelect().
|
|
Model(i)
|
|
|
|
err := q.Scan(ctx)
|
|
return b.conn.ProcessError(err)
|
|
}
|
|
|
|
func (b *basicDB) DeleteByID(ctx context.Context, id string, i interface{}) db.Error {
|
|
q := b.conn.
|
|
NewDelete().
|
|
Model(i).
|
|
Where("id = ?", id)
|
|
|
|
_, err := q.Exec(ctx)
|
|
return b.conn.ProcessError(err)
|
|
}
|
|
|
|
func (b *basicDB) DeleteWhere(ctx context.Context, where []db.Where, i interface{}) db.Error {
|
|
if len(where) == 0 {
|
|
return errors.New("no queries provided")
|
|
}
|
|
|
|
q := b.conn.
|
|
NewDelete().
|
|
Model(i)
|
|
|
|
deleteWhere(q, where)
|
|
|
|
_, err := q.Exec(ctx)
|
|
return b.conn.ProcessError(err)
|
|
}
|
|
|
|
func (b *basicDB) UpdateByPrimaryKey(ctx context.Context, i interface{}) db.Error {
|
|
q := b.conn.
|
|
NewUpdate().
|
|
Model(i).
|
|
WherePK()
|
|
|
|
_, err := q.Exec(ctx)
|
|
return b.conn.ProcessError(err)
|
|
}
|
|
|
|
func (b *basicDB) UpdateWhere(ctx context.Context, where []db.Where, key string, value interface{}, i interface{}) db.Error {
|
|
q := b.conn.NewUpdate().Model(i)
|
|
|
|
updateWhere(q, where)
|
|
|
|
q = q.Set("? = ?", bun.Safe(key), value)
|
|
|
|
_, err := q.Exec(ctx)
|
|
return b.conn.ProcessError(err)
|
|
}
|
|
|
|
func (b *basicDB) CreateTable(ctx context.Context, i interface{}) db.Error {
|
|
_, err := b.conn.NewCreateTable().Model(i).IfNotExists().Exec(ctx)
|
|
return err
|
|
}
|
|
|
|
func (b *basicDB) CreateAllTables(ctx context.Context) db.Error {
|
|
models := []interface{}{
|
|
>smodel.Account{},
|
|
>smodel.Application{},
|
|
>smodel.Block{},
|
|
>smodel.DomainBlock{},
|
|
>smodel.EmailDomainBlock{},
|
|
>smodel.Follow{},
|
|
>smodel.FollowRequest{},
|
|
>smodel.MediaAttachment{},
|
|
>smodel.Mention{},
|
|
>smodel.Status{},
|
|
>smodel.StatusToEmoji{},
|
|
>smodel.StatusToTag{},
|
|
>smodel.StatusFave{},
|
|
>smodel.StatusBookmark{},
|
|
>smodel.StatusMute{},
|
|
>smodel.Tag{},
|
|
>smodel.User{},
|
|
>smodel.Emoji{},
|
|
>smodel.Instance{},
|
|
>smodel.Notification{},
|
|
>smodel.RouterSession{},
|
|
>smodel.Token{},
|
|
>smodel.Client{},
|
|
}
|
|
for _, i := range models {
|
|
if err := b.CreateTable(ctx, i); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (b *basicDB) DropTable(ctx context.Context, i interface{}) db.Error {
|
|
_, err := b.conn.NewDropTable().Model(i).IfExists().Exec(ctx)
|
|
return b.conn.ProcessError(err)
|
|
}
|
|
|
|
func (b *basicDB) IsHealthy(ctx context.Context) db.Error {
|
|
return b.conn.Ping()
|
|
}
|
|
|
|
func (b *basicDB) Stop(ctx context.Context) db.Error {
|
|
log.Info("closing db connection")
|
|
return b.conn.Close()
|
|
}
|