| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    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" | 
					
						
							| 
									
										
										
										
											2021-11-13 17:30:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 	"github.com/sirupsen/logrus" | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2021-09-09 16:15:25 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	"github.com/uptrace/bun" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type basicDB struct { | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	conn *DBConn | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (b *basicDB) Put(ctx context.Context, i interface{}) db.Error { | 
					
						
							|  |  |  | 	_, err := b.conn.NewInsert().Model(i).Exec(ctx) | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	return b.conn.ProcessError(err) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (b *basicDB) GetByID(ctx context.Context, id string, i interface{}) db.Error { | 
					
						
							|  |  |  | 	q := b.conn. | 
					
						
							|  |  |  | 		NewSelect(). | 
					
						
							|  |  |  | 		Model(i). | 
					
						
							|  |  |  | 		Where("id = ?", id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	err := q.Scan(ctx) | 
					
						
							|  |  |  | 	return b.conn.ProcessError(err) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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) | 
					
						
							| 
									
										
										
										
											2021-09-09 16:15:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	selectWhere(q, where) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	err := q.Scan(ctx) | 
					
						
							|  |  |  | 	return b.conn.ProcessError(err) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (b *basicDB) GetAll(ctx context.Context, i interface{}) db.Error { | 
					
						
							|  |  |  | 	q := b.conn. | 
					
						
							|  |  |  | 		NewSelect(). | 
					
						
							|  |  |  | 		Model(i) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	err := q.Scan(ctx) | 
					
						
							|  |  |  | 	return b.conn.ProcessError(err) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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) | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	return b.conn.ProcessError(err) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 16:15:25 +02:00
										 |  |  | 	deleteWhere(q, where) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_, err := q.Exec(ctx) | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	return b.conn.ProcessError(err) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-10 14:36:10 +02:00
										 |  |  | func (b *basicDB) UpdateByPrimaryKey(ctx context.Context, i interface{}) db.Error { | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	q := b.conn. | 
					
						
							|  |  |  | 		NewUpdate(). | 
					
						
							|  |  |  | 		Model(i). | 
					
						
							|  |  |  | 		WherePK() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_, err := q.Exec(ctx) | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	return b.conn.ProcessError(err) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (b *basicDB) UpdateWhere(ctx context.Context, where []db.Where, key string, value interface{}, i interface{}) db.Error { | 
					
						
							|  |  |  | 	q := b.conn.NewUpdate().Model(i) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 16:15:25 +02:00
										 |  |  | 	updateWhere(q, where) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	q = q.Set("? = ?", bun.Safe(key), value) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_, err := q.Exec(ctx) | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	return b.conn.ProcessError(err) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (b *basicDB) CreateTable(ctx context.Context, i interface{}) db.Error { | 
					
						
							|  |  |  | 	_, err := b.conn.NewCreateTable().Model(i).IfNotExists().Exec(ctx) | 
					
						
							|  |  |  | 	return err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 16:15:25 +02:00
										 |  |  | 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 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | func (b *basicDB) DropTable(ctx context.Context, i interface{}) db.Error { | 
					
						
							|  |  |  | 	_, err := b.conn.NewDropTable().Model(i).IfExists().Exec(ctx) | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	return b.conn.ProcessError(err) | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (b *basicDB) IsHealthy(ctx context.Context) db.Error { | 
					
						
							|  |  |  | 	return b.conn.Ping() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (b *basicDB) Stop(ctx context.Context) db.Error { | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 	logrus.Info("closing db connection") | 
					
						
							| 
									
										
										
										
											2021-08-29 15:41:41 +01:00
										 |  |  | 	return b.conn.Close() | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | } |